diff --git a/internal/models/getservers.go b/internal/models/getservers.go index f4410594..fed8efb3 100644 --- a/internal/models/getservers.go +++ b/internal/models/getservers.go @@ -108,7 +108,6 @@ func (a *AllServers) GetMullvad() (servers []MullvadServer) { for i, serverToCopy := range a.Mullvad.Servers { servers[i] = serverToCopy servers[i].IPs = copyIPs(serverToCopy.IPs) - servers[i].IPsV6 = copyIPs(serverToCopy.IPsV6) } return servers } @@ -120,7 +119,7 @@ func (a *AllServers) GetNordvpn() (servers []NordvpnServer) { servers = make([]NordvpnServer, len(a.Nordvpn.Servers)) for i, serverToCopy := range a.Nordvpn.Servers { servers[i] = serverToCopy - servers[i].IP = copyIP(serverToCopy.IP) + servers[i].IPs = copyIPs(serverToCopy.IPs) } return servers } @@ -156,7 +155,7 @@ func (a *AllServers) GetPrivado() (servers []PrivadoServer) { servers = make([]PrivadoServer, len(a.Privado.Servers)) for i, serverToCopy := range a.Privado.Servers { servers[i] = serverToCopy - servers[i].IP = copyIP(serverToCopy.IP) + servers[i].IPs = copyIPs(serverToCopy.IPs) } return servers } @@ -180,7 +179,7 @@ func (a *AllServers) GetProtonvpn() (servers []ProtonvpnServer) { servers = make([]ProtonvpnServer, len(a.Protonvpn.Servers)) for i, serverToCopy := range a.Protonvpn.Servers { servers[i] = serverToCopy - servers[i].EntryIP = copyIP(serverToCopy.EntryIP) + servers[i].IPs = copyIPs(serverToCopy.IPs) } return servers } diff --git a/internal/models/getservers_test.go b/internal/models/getservers_test.go index 90c92122..3d1aec76 100644 --- a/internal/models/getservers_test.go +++ b/internal/models/getservers_test.go @@ -48,7 +48,7 @@ func Test_AllServers_GetCopy(t *testing.T) { }, Nordvpn: NordvpnServers{ Servers: []NordvpnServer{{ - IP: net.IP{1, 2, 3, 4}, + IPs: []net.IP{{1, 2, 3, 4}}, }}, }, Perfectprivacy: PerfectprivacyServers{ @@ -58,7 +58,7 @@ func Test_AllServers_GetCopy(t *testing.T) { }, Privado: PrivadoServers{ Servers: []PrivadoServer{{ - IP: net.IP{1, 2, 3, 4}, + IPs: []net.IP{{1, 2, 3, 4}}, }}, }, Pia: PiaServers{ @@ -73,7 +73,7 @@ func Test_AllServers_GetCopy(t *testing.T) { }, Protonvpn: ProtonvpnServers{ Servers: []ProtonvpnServer{{ - EntryIP: net.IP{1, 2, 3, 4}, + IPs: []net.IP{{1, 2, 3, 4}}, }}, }, Purevpn: PurevpnServers{ diff --git a/internal/models/server.go b/internal/models/server.go index c9684379..8ecd506a 100644 --- a/internal/models/server.go +++ b/internal/models/server.go @@ -63,7 +63,6 @@ type IvpnServer struct { type MullvadServer struct { VPN string `json:"vpn,omitempty"` IPs []net.IP `json:"ips,omitempty"` - IPsV6 []net.IP `json:"ipsv6,omitempty"` Country string `json:"country,omitempty"` City string `json:"city,omitempty"` Hostname string `json:"hostname,omitempty"` @@ -73,12 +72,12 @@ type MullvadServer struct { } type NordvpnServer struct { //nolint:maligned - Region string `json:"region,omitempty"` - Hostname string `json:"hostname,omitempty"` - Number uint16 `json:"number,omitempty"` - IP net.IP `json:"ip,omitempty"` - TCP bool `json:"tcp,omitempty"` - UDP bool `json:"udp,omitempty"` + Region string `json:"region,omitempty"` + Hostname string `json:"hostname,omitempty"` + Number uint16 `json:"number,omitempty"` + IPs []net.IP `json:"ips,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` } type PerfectprivacyServer struct { @@ -89,11 +88,11 @@ type PerfectprivacyServer struct { } type PrivadoServer struct { - Country string `json:"country,omitempty"` - Region string `json:"region,omitempty"` - City string `json:"city,omitempty"` - Hostname string `json:"hostname,omitempty"` - IP net.IP `json:"ip,omitempty"` + Country string `json:"country,omitempty"` + Region string `json:"region,omitempty"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type PIAServer struct { @@ -110,16 +109,16 @@ type PrivatevpnServer struct { Country string `json:"country,omitempty"` City string `json:"city,omitempty"` Hostname string `json:"hostname,omitempty"` - IPs []net.IP `json:"ip,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type ProtonvpnServer struct { - Country string `json:"country,omitempty"` - Region string `json:"region,omitempty"` - City string `json:"city,omitempty"` - Name string `json:"server_name,omitempty"` - Hostname string `json:"hostname,omitempty"` - EntryIP net.IP `json:"entry_ip,omitempty"` + Country string `json:"country,omitempty"` + Region string `json:"region,omitempty"` + City string `json:"city,omitempty"` + Name string `json:"server_name,omitempty"` + Hostname string `json:"hostname,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type PurevpnServer struct { diff --git a/internal/provider/mullvad/connection.go b/internal/provider/mullvad/connection.go index 6ad251bd..43be4241 100644 --- a/internal/provider/mullvad/connection.go +++ b/internal/provider/mullvad/connection.go @@ -16,9 +16,13 @@ func (m *Mullvad) GetConnection(selection settings.ServerSelection) ( return connection, err } - var connections []models.Connection + connections := make([]models.Connection, 0, len(servers)) for _, server := range servers { for _, IP := range server.IPs { + if IP.To4() == nil { + // do not use IPv6 connections for now + continue + } connection := models.Connection{ Type: selection.VPN, IP: IP, diff --git a/internal/provider/nordvpn/connection.go b/internal/provider/nordvpn/connection.go index e9a27fff..e969ce5e 100644 --- a/internal/provider/nordvpn/connection.go +++ b/internal/provider/nordvpn/connection.go @@ -21,15 +21,17 @@ func (n *Nordvpn) GetConnection(selection settings.ServerSelection) ( return connection, err } - connections := make([]models.Connection, len(servers)) - for i := range servers { - connection := models.Connection{ - Type: selection.VPN, - IP: servers[i].IP, - Port: port, - Protocol: protocol, + connections := make([]models.Connection, 0, len(servers)) + for _, server := range servers { + for _, ip := range server.IPs { + connection := models.Connection{ + Type: selection.VPN, + IP: ip, + Port: port, + Protocol: protocol, + } + connections = append(connections, connection) } - connections[i] = connection } return utils.PickConnection(connections, selection, n.randSource) diff --git a/internal/provider/privado/connection.go b/internal/provider/privado/connection.go index b9c5c636..65d158b4 100644 --- a/internal/provider/privado/connection.go +++ b/internal/provider/privado/connection.go @@ -17,16 +17,18 @@ func (p *Privado) GetConnection(selection settings.ServerSelection) ( return connection, err } - connections := make([]models.Connection, len(servers)) - for i := range servers { - connection := models.Connection{ - Type: selection.VPN, - IP: servers[i].IP, - Port: port, - Protocol: protocol, - Hostname: servers[i].Hostname, + connections := make([]models.Connection, 0, len(servers)) + for _, server := range servers { + for _, ip := range server.IPs { + connection := models.Connection{ + Type: selection.VPN, + IP: ip, + Port: port, + Protocol: protocol, + Hostname: server.Hostname, + } + connections = append(connections, connection) } - connections[i] = connection } return utils.PickConnection(connections, selection, p.randSource) diff --git a/internal/provider/protonvpn/connection.go b/internal/provider/protonvpn/connection.go index 2a2ecfdf..9259be79 100644 --- a/internal/provider/protonvpn/connection.go +++ b/internal/provider/protonvpn/connection.go @@ -24,13 +24,16 @@ func (p *Protonvpn) GetConnection(selection settings.ServerSelection) ( return connection, err } - connections := make([]models.Connection, len(servers)) - for i := range servers { - connections[i] = models.Connection{ - Type: selection.VPN, - IP: servers[i].EntryIP, - Port: port, - Protocol: protocol, + connections := make([]models.Connection, 0, len(servers)) + for _, server := range servers { + for _, ip := range server.IPs { + connection := models.Connection{ + Type: selection.VPN, + IP: ip, + Port: port, + Protocol: protocol, + } + connections = append(connections, connection) } } diff --git a/internal/storage/servers.json b/internal/storage/servers.json index 106ccbec..6b65dc33 100644 --- a/internal/storage/servers.json +++ b/internal/storage/servers.json @@ -26988,9 +26988,6 @@ "ips": [ "31.171.154.210" ], - "ipsv6": [ - "2a04:27c0:ffff:ffff::1f" - ], "country": "Albania", "city": "Tirana", "hostname": "al-tia-001", @@ -27001,9 +26998,6 @@ "ips": [ "116.206.231.58" ], - "ipsv6": [ - "2407:a080:5000:6::1f" - ], "country": "Australia", "city": "Adelaide", "hostname": "au-adl-001", @@ -27014,9 +27008,6 @@ "ips": [ "43.245.160.162" ], - "ipsv6": [ - "2407:a080:2000:a::1f" - ], "country": "Australia", "city": "Brisbane", "hostname": "au-bne-001", @@ -27027,9 +27018,6 @@ "ips": [ "116.206.229.98" ], - "ipsv6": [ - "2407:a080:4000:5::1f" - ], "country": "Australia", "city": "Canberra", "hostname": "au-cbr-001", @@ -27040,9 +27028,6 @@ "ips": [ "116.206.228.202" ], - "ipsv6": [ - "2407:a080:3000:5::2f" - ], "country": "Australia", "city": "Melbourne", "hostname": "au-mel-002", @@ -27053,9 +27038,6 @@ "ips": [ "116.206.228.242" ], - "ipsv6": [ - "2407:a080:3000:6::3f" - ], "country": "Australia", "city": "Melbourne", "hostname": "au-mel-003", @@ -27066,9 +27048,6 @@ "ips": [ "116.206.230.98" ], - "ipsv6": [ - "2407:a080:3000:7::4f" - ], "country": "Australia", "city": "Melbourne", "hostname": "au-mel-004", @@ -27079,9 +27058,6 @@ "ips": [ "103.231.88.2" ], - "ipsv6": [ - "2407:a080:3000:12::a03f" - ], "country": "Australia", "city": "Melbourne", "hostname": "au3-wireguard", @@ -27093,9 +27069,6 @@ "ips": [ "103.231.88.18" ], - "ipsv6": [ - "2407:a080:3000:11::a04f" - ], "country": "Australia", "city": "Melbourne", "hostname": "au4-wireguard", @@ -27107,9 +27080,6 @@ "ips": [ "103.77.235.66" ], - "ipsv6": [ - "2400:fa80:5:8::1f" - ], "country": "Australia", "city": "Perth", "hostname": "au-per-001", @@ -27120,9 +27090,6 @@ "ips": [ "43.245.162.130" ], - "ipsv6": [ - "2400:fa80:1:10::1f" - ], "country": "Australia", "city": "Sydney", "hostname": "au-syd-001", @@ -27133,9 +27100,6 @@ "ips": [ "103.77.232.130" ], - "ipsv6": [ - "2400:fa80:1:15::2f" - ], "country": "Australia", "city": "Sydney", "hostname": "au-syd-002", @@ -27146,9 +27110,6 @@ "ips": [ "103.77.232.146" ], - "ipsv6": [ - "2400:fa80:1:12::3f" - ], "country": "Australia", "city": "Sydney", "hostname": "au-syd-003", @@ -27159,9 +27120,6 @@ "ips": [ "89.44.10.18" ], - "ipsv6": [ - "2001:ac8:84:28::1f" - ], "country": "Australia", "city": "Sydney", "hostname": "au-syd-201", @@ -27172,9 +27130,6 @@ "ips": [ "89.44.10.50" ], - "ipsv6": [ - "2001:ac8:84:30::3f" - ], "country": "Australia", "city": "Sydney", "hostname": "au-syd-203", @@ -27185,9 +27140,6 @@ "ips": [ "89.44.10.194" ], - "ipsv6": [ - "2001:ac8:84:38::4f" - ], "country": "Australia", "city": "Sydney", "hostname": "au-syd-204", @@ -27198,9 +27150,6 @@ "ips": [ "43.245.162.234" ], - "ipsv6": [ - "2400:fa80:1:11::a01f" - ], "country": "Australia", "city": "Sydney", "hostname": "au1-wireguard", @@ -27212,9 +27161,6 @@ "ips": [ "89.44.10.114" ], - "ipsv6": [ - "2001:ac8:84:33::a10f" - ], "country": "Australia", "city": "Sydney", "hostname": "au10-wireguard", @@ -27226,9 +27172,6 @@ "ips": [ "89.44.10.130" ], - "ipsv6": [ - "2001:ac8:84:34::a11f" - ], "country": "Australia", "city": "Sydney", "hostname": "au11-wireguard", @@ -27240,9 +27183,6 @@ "ips": [ "89.44.10.146" ], - "ipsv6": [ - "2001:ac8:84:35::a12f" - ], "country": "Australia", "city": "Sydney", "hostname": "au12-wireguard", @@ -27254,9 +27194,6 @@ "ips": [ "89.44.10.162" ], - "ipsv6": [ - "2001:ac8:84:36::a13f" - ], "country": "Australia", "city": "Sydney", "hostname": "au13-wireguard", @@ -27268,9 +27205,6 @@ "ips": [ "89.44.10.178" ], - "ipsv6": [ - "2001:ac8:84:37::a14f" - ], "country": "Australia", "city": "Sydney", "hostname": "au14-wireguard", @@ -27282,9 +27216,6 @@ "ips": [ "103.77.233.50" ], - "ipsv6": [ - "2400:fa80:1:31::a02f" - ], "country": "Australia", "city": "Sydney", "hostname": "au2-wireguard", @@ -27296,9 +27227,6 @@ "ips": [ "89.44.10.66" ], - "ipsv6": [ - "2001:ac8:84:31::a08f" - ], "country": "Australia", "city": "Sydney", "hostname": "au8-wireguard", @@ -27310,9 +27238,6 @@ "ips": [ "89.44.10.82" ], - "ipsv6": [ - "2001:ac8:84:32::a09f" - ], "country": "Australia", "city": "Sydney", "hostname": "au9-wireguard", @@ -27324,9 +27249,6 @@ "ips": [ "86.107.21.210" ], - "ipsv6": [ - "2001:ac8:29:5a::101f" - ], "country": "Austria", "city": "Vienna", "hostname": "at-vie-101", @@ -27337,9 +27259,6 @@ "ips": [ "5.253.207.34" ], - "ipsv6": [ - "2001:ac8:29:39::102f" - ], "country": "Austria", "city": "Vienna", "hostname": "at-vie-102", @@ -27350,9 +27269,6 @@ "ips": [ "86.107.21.226" ], - "ipsv6": [ - "2001:ac8:29:5b::103f" - ], "country": "Austria", "city": "Vienna", "hostname": "at-vie-103", @@ -27363,9 +27279,6 @@ "ips": [ "86.107.21.242" ], - "ipsv6": [ - "2001:ac8:29:5c::104f" - ], "country": "Austria", "city": "Vienna", "hostname": "at-vie-104", @@ -27376,9 +27289,6 @@ "ips": [ "86.107.21.50" ], - "ipsv6": [ - "2001:ac8:29:59::a04f" - ], "country": "Austria", "city": "Vienna", "hostname": "at4-wireguard", @@ -27390,9 +27300,6 @@ "ips": [ "86.107.21.34" ], - "ipsv6": [ - "2001:ac8:29:58::a05f" - ], "country": "Austria", "city": "Vienna", "hostname": "at5-wireguard", @@ -27404,9 +27311,6 @@ "ips": [ "86.107.21.18" ], - "ipsv6": [ - "2001:ac8:29:57::a06f" - ], "country": "Austria", "city": "Vienna", "hostname": "at6-wireguard", @@ -27418,9 +27322,6 @@ "ips": [ "86.107.21.2" ], - "ipsv6": [ - "2001:ac8:29:56::a07f" - ], "country": "Austria", "city": "Vienna", "hostname": "at7-wireguard", @@ -27432,9 +27333,6 @@ "ips": [ "86.107.21.130" ], - "ipsv6": [ - "2001:ac8:29:55::a08f" - ], "country": "Austria", "city": "Vienna", "hostname": "at8-wireguard", @@ -27446,9 +27344,6 @@ "ips": [ "86.107.21.114" ], - "ipsv6": [ - "2001:ac8:29:54::a09f" - ], "country": "Austria", "city": "Vienna", "hostname": "at9-wireguard", @@ -27460,9 +27355,6 @@ "ips": [ "185.104.186.202" ], - "ipsv6": [ - "2001:ac8:27:5::1f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be-bru-001", @@ -27473,9 +27365,6 @@ "ips": [ "91.207.57.50" ], - "ipsv6": [ - "2001:ac8:27:d::2f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be-bru-002", @@ -27486,9 +27375,6 @@ "ips": [ "37.120.143.138" ], - "ipsv6": [ - "2001:ac8:27:32::3f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be-bru-003", @@ -27499,9 +27385,6 @@ "ips": [ "37.120.218.138" ], - "ipsv6": [ - "2001:ac8:27:54::4f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be-bru-004", @@ -27512,9 +27395,6 @@ "ips": [ "37.120.218.146" ], - "ipsv6": [ - "2001:ac8:27:55::5f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be-bru-005", @@ -27525,9 +27405,6 @@ "ips": [ "193.9.114.2" ], - "ipsv6": [ - "2001:ac8:27:20::a01f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be1-wireguard", @@ -27539,9 +27416,6 @@ "ips": [ "5.253.205.162" ], - "ipsv6": [ - "2001:ac8:27:51::a02f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be2-wireguard", @@ -27553,9 +27427,6 @@ "ips": [ "37.120.218.154" ], - "ipsv6": [ - "2001:ac8:27:56::a03f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be3-wireguard", @@ -27567,9 +27438,6 @@ "ips": [ "37.120.218.162" ], - "ipsv6": [ - "2001:ac8:27:57::a04f" - ], "country": "Belgium", "city": "Brussels", "hostname": "be4-wireguard", @@ -27581,9 +27449,6 @@ "ips": [ "177.67.80.186" ], - "ipsv6": [ - "2804:5364:2100:6::1f" - ], "country": "Brazil", "city": "Sao Paulo", "hostname": "br-sao-001", @@ -27594,9 +27459,6 @@ "ips": [ "45.162.228.186" ], - "ipsv6": [ - "2804:5364:3100:9::a01f" - ], "country": "Brazil", "city": "Sao Paulo", "hostname": "br1-wireguard", @@ -27608,9 +27470,6 @@ "ips": [ "177.54.152.43" ], - "ipsv6": [ - "2804:391c:12::a03f" - ], "country": "Brazil", "city": "Sao Paulo", "hostname": "br3-wireguard", @@ -27622,9 +27481,6 @@ "ips": [ "37.120.152.114" ], - "ipsv6": [ - "2001:ac8:30:19::1f" - ], "country": "Bulgaria", "city": "Sofia", "hostname": "bg-sof-101", @@ -27635,9 +27491,6 @@ "ips": [ "37.120.152.146" ], - "ipsv6": [ - "2001:ac8:30:1a::1f" - ], "country": "Bulgaria", "city": "Sofia", "hostname": "bg-sof-102", @@ -27648,9 +27501,6 @@ "ips": [ "217.138.221.178" ], - "ipsv6": [ - "2001:ac8:30:28::a04f" - ], "country": "Bulgaria", "city": "Sofia", "hostname": "bg4-wireguard", @@ -27662,9 +27512,6 @@ "ips": [ "217.138.221.226" ], - "ipsv6": [ - "2001:ac8:30:29::a05f" - ], "country": "Bulgaria", "city": "Sofia", "hostname": "bg5-wireguard", @@ -27676,9 +27523,6 @@ "ips": [ "217.138.221.242" ], - "ipsv6": [ - "2001:ac8:30:30::a06f" - ], "country": "Bulgaria", "city": "Sofia", "hostname": "bg6-wireguard", @@ -27690,9 +27534,6 @@ "ips": [ "217.138.202.194" ], - "ipsv6": [ - "2001:ac8:30:31::a07f" - ], "country": "Bulgaria", "city": "Sofia", "hostname": "bg7-wireguard", @@ -27704,9 +27545,6 @@ "ips": [ "89.36.78.18" ], - "ipsv6": [ - "2a0d:5600:9:c8::1f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-101", @@ -27717,9 +27555,6 @@ "ips": [ "89.36.78.34" ], - "ipsv6": [ - "2a0d:5600:9:c9::2f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-102", @@ -27730,9 +27565,6 @@ "ips": [ "89.36.78.50" ], - "ipsv6": [ - "2a0d:5600:9:161::3f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-103", @@ -27743,9 +27575,6 @@ "ips": [ "89.36.78.66" ], - "ipsv6": [ - "2a0d:5600:9:b6::4f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-104", @@ -27756,9 +27585,6 @@ "ips": [ "89.36.78.82" ], - "ipsv6": [ - "2a0d:5600:9:b7::5f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-105", @@ -27769,9 +27595,6 @@ "ips": [ "89.36.78.98" ], - "ipsv6": [ - "2a0d:5600:9:b8::6f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-106", @@ -27782,9 +27605,6 @@ "ips": [ "89.36.78.114" ], - "ipsv6": [ - "2a0d:5600:9:b9::7f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-107", @@ -27795,9 +27615,6 @@ "ips": [ "89.36.78.130" ], - "ipsv6": [ - "2a0d:5600:9:ba::8f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-108", @@ -27808,9 +27625,6 @@ "ips": [ "89.36.78.146" ], - "ipsv6": [ - "2a0d:5600:9:bb::a10f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca10-wireguard", @@ -27822,9 +27636,6 @@ "ips": [ "89.36.78.162" ], - "ipsv6": [ - "2a0d:5600:9:bc::a11f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca11-wireguard", @@ -27836,9 +27647,6 @@ "ips": [ "89.36.78.178" ], - "ipsv6": [ - "2a0d:5600:9:bd::a12f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca12-wireguard", @@ -27850,9 +27658,6 @@ "ips": [ "89.36.78.194" ], - "ipsv6": [ - "2a0d:5600:9:be::a13f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca13-wireguard", @@ -27864,9 +27669,6 @@ "ips": [ "89.36.78.210" ], - "ipsv6": [ - "2a0d:5600:9:bf::a14f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca14-wireguard", @@ -27878,9 +27680,6 @@ "ips": [ "89.36.78.226" ], - "ipsv6": [ - "2a0d:5600:9:c0::a15f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca15-wireguard", @@ -27892,9 +27691,6 @@ "ips": [ "89.36.78.242" ], - "ipsv6": [ - "2a0d:5600:9:c1::a16f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca16-wireguard", @@ -27906,9 +27702,6 @@ "ips": [ "89.36.78.2" ], - "ipsv6": [ - "2a0d:5600:9:c2::a17f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca17-wireguard", @@ -27920,9 +27713,6 @@ "ips": [ "37.120.205.98" ], - "ipsv6": [ - "2a0d:5600:9:43::a18f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca18-wireguard", @@ -27934,9 +27724,6 @@ "ips": [ "37.120.205.194" ], - "ipsv6": [ - "2a0d:5600:9:4a::a19f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca19-wireguard", @@ -27948,9 +27735,6 @@ "ips": [ "37.120.205.210" ], - "ipsv6": [ - "2a0d:5600:9:4b::a20f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca20-wireguard", @@ -27962,9 +27746,6 @@ "ips": [ "91.193.6.2" ], - "ipsv6": [ - "2a0d:5600:9:ca::a21f" - ], "country": "Canada", "city": "Montreal", "hostname": "ca21-wireguard", @@ -27976,9 +27757,6 @@ "ips": [ "198.54.132.34" ], - "ipsv6": [ - "2607:9000:6000:12::1f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca-tor-101", @@ -27989,9 +27767,6 @@ "ips": [ "198.54.132.50" ], - "ipsv6": [ - "2607:9000:6000:13::2f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca-tor-102", @@ -28002,9 +27777,6 @@ "ips": [ "198.54.132.66" ], - "ipsv6": [ - "2607:9000:6000:14::3f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca-tor-103", @@ -28015,9 +27787,6 @@ "ips": [ "198.54.132.82" ], - "ipsv6": [ - "2607:9000:6000:15::a22f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca22-wireguard", @@ -28029,9 +27798,6 @@ "ips": [ "198.54.132.98" ], - "ipsv6": [ - "2607:9000:6000:16::a23f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca23-wireguard", @@ -28043,9 +27809,6 @@ "ips": [ "198.54.132.114" ], - "ipsv6": [ - "2607:9000:6000:17::a24f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca24-wireguard", @@ -28057,9 +27820,6 @@ "ips": [ "198.54.132.130" ], - "ipsv6": [ - "2607:9000:6000:18::a25f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca25-wireguard", @@ -28071,9 +27831,6 @@ "ips": [ "198.54.132.146" ], - "ipsv6": [ - "2607:9000:6000:19::a26f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca26-wireguard", @@ -28085,9 +27842,6 @@ "ips": [ "198.54.132.162" ], - "ipsv6": [ - "2607:9000:6000:20::a27f" - ], "country": "Canada", "city": "Toronto", "hostname": "ca27-wireguard", @@ -28099,9 +27853,6 @@ "ips": [ "71.19.248.240" ], - "ipsv6": [ - "2605:80:18:2::4" - ], "country": "Canada", "city": "Vancouver", "hostname": "ca-van-003", @@ -28112,9 +27863,6 @@ "ips": [ "71.19.249.81" ], - "ipsv6": [ - "2605:80:19:2::5" - ], "country": "Canada", "city": "Vancouver", "hostname": "ca-van-004", @@ -28125,9 +27873,6 @@ "ips": [ "71.19.249.31" ], - "ipsv6": [ - "2605:80:19:4::a07f" - ], "country": "Canada", "city": "Vancouver", "hostname": "ca7-wireguard", @@ -28139,9 +27884,6 @@ "ips": [ "185.156.174.146" ], - "ipsv6": [ - "2001:ac8:33:7::1f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-001", @@ -28152,9 +27894,6 @@ "ips": [ "185.156.174.170" ], - "ipsv6": [ - "2001:ac8:33:14::2" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-002", @@ -28165,9 +27904,6 @@ "ips": [ "185.216.35.242" ], - "ipsv6": [ - "2001:ac8:33:b::3f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-003", @@ -28178,9 +27914,6 @@ "ips": [ "217.138.199.74" ], - "ipsv6": [ - "2001:ac8:33:3f::4f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-004", @@ -28191,9 +27924,6 @@ "ips": [ "217.138.199.82" ], - "ipsv6": [ - "2001:ac8:33:40::5f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-005", @@ -28204,9 +27934,6 @@ "ips": [ "185.242.6.18" ], - "ipsv6": [ - "2001:ac8:33:a::a01f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz1-wireguard", @@ -28218,9 +27945,6 @@ "ips": [ "193.9.112.114" ], - "ipsv6": [ - "2001:ac8:33:1a::a02f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz2-wireguard", @@ -28232,9 +27956,6 @@ "ips": [ "185.242.6.194" ], - "ipsv6": [ - "2001:ac8:33:23::a03f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz3-wireguard", @@ -28246,9 +27967,6 @@ "ips": [ "217.138.199.90" ], - "ipsv6": [ - "2001:ac8:33:41::a04f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz4-wireguard", @@ -28260,9 +27978,6 @@ "ips": [ "217.138.199.98" ], - "ipsv6": [ - "2001:ac8:33:42::a05f" - ], "country": "Czech Republic", "city": "Prague", "hostname": "cz5-wireguard", @@ -28274,9 +27989,6 @@ "ips": [ "141.98.254.71" ], - "ipsv6": [ - "2a03:1b20:8:f011::1f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk-cph-001", @@ -28288,9 +28000,6 @@ "ips": [ "45.129.56.81" ], - "ipsv6": [ - "2a03:1b20:8:f011::2f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk-cph-002", @@ -28302,9 +28011,6 @@ "ips": [ "89.45.7.130" ], - "ipsv6": [ - "2001:ac8:37:5b::103f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk-cph-103", @@ -28315,9 +28021,6 @@ "ips": [ "89.45.7.146" ], - "ipsv6": [ - "2001:ac8:37:5c::104f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk-cph-104", @@ -28328,9 +28031,6 @@ "ips": [ "134.90.149.138" ], - "ipsv6": [ - "2a02:ed01:4120::1f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk-cph-201", @@ -28341,9 +28041,6 @@ "ips": [ "45.129.56.67" ], - "ipsv6": [ - "2a03:1b20:8:f011::a02f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk2-wireguard", @@ -28356,9 +28053,6 @@ "ips": [ "45.129.56.68" ], - "ipsv6": [ - "2a03:1b20:8:f011::a03f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk3-wireguard", @@ -28371,9 +28065,6 @@ "ips": [ "89.45.7.178" ], - "ipsv6": [ - "2001:ac8:37:5d::a05f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk5-wireguard", @@ -28385,9 +28076,6 @@ "ips": [ "89.45.7.194" ], - "ipsv6": [ - "2001:ac8:37:5e::a06f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk6-wireguard", @@ -28399,9 +28087,6 @@ "ips": [ "89.45.7.210" ], - "ipsv6": [ - "2001:ac8:37:5f::a07f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk7-wireguard", @@ -28413,9 +28098,6 @@ "ips": [ "82.103.140.213" ], - "ipsv6": [ - "2a00:9080:1:98c::1f" - ], "country": "Denmark", "city": "Copenhagen", "hostname": "dk8-wireguard", @@ -28427,9 +28109,6 @@ "ips": [ "194.127.167.67" ], - "ipsv6": [ - "2a07:d880:2::a01f" - ], "country": "Estonia", "city": "Tallinn", "hostname": "ee1-wireguard", @@ -28441,9 +28120,6 @@ "ips": [ "194.127.167.87" ], - "ipsv6": [ - "2a07:d880:2::a02f" - ], "country": "Estonia", "city": "Tallinn", "hostname": "ee2-wireguard", @@ -28455,9 +28131,6 @@ "ips": [ "194.127.167.107" ], - "ipsv6": [ - "2a07:d880:2::a03f" - ], "country": "Estonia", "city": "Tallinn", "hostname": "ee3-wireguard", @@ -28469,9 +28142,6 @@ "ips": [ "185.204.1.171" ], - "ipsv6": [ - "2a0c:f040:0:2790::1f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi-hel-001", @@ -28483,9 +28153,6 @@ "ips": [ "185.204.1.172" ], - "ipsv6": [ - "2a0c:f040:0:2790::2f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi-hel-002", @@ -28497,9 +28164,6 @@ "ips": [ "185.204.1.173" ], - "ipsv6": [ - "2a0c:f040:0:2790::3f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi-hel-003", @@ -28511,9 +28175,6 @@ "ips": [ "185.204.1.174" ], - "ipsv6": [ - "2a0c:f040:0:2790::4f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi-hel-004", @@ -28525,9 +28186,6 @@ "ips": [ "185.204.1.175" ], - "ipsv6": [ - "2a0c:f040:0:2790::5f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi-hel-005", @@ -28539,9 +28197,6 @@ "ips": [ "185.204.1.176" ], - "ipsv6": [ - "2a0c:f040:0:2790::6f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi-hel-006", @@ -28553,9 +28208,6 @@ "ips": [ "185.212.149.201" ], - "ipsv6": [ - "2a0c:f040:0:2790::7f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi-hel-007", @@ -28567,9 +28219,6 @@ "ips": [ "185.204.1.203" ], - "ipsv6": [ - "2a0c:f040:0:2790::a01f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi1-wireguard", @@ -28582,9 +28231,6 @@ "ips": [ "185.204.1.211" ], - "ipsv6": [ - "2a0c:f040:0:2790::a02f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi2-wireguard", @@ -28597,9 +28243,6 @@ "ips": [ "185.204.1.219" ], - "ipsv6": [ - "2a0c:f040:0:2790::a03f" - ], "country": "Finland", "city": "Helsinki", "hostname": "fi3-wireguard", @@ -28612,9 +28255,6 @@ "ips": [ "138.199.15.162" ], - "ipsv6": [ - "2a02:6ea0:dc05::a15f" - ], "country": "France", "city": "Marseille", "hostname": "fr15-wireguard", @@ -28626,9 +28266,6 @@ "ips": [ "138.199.15.146" ], - "ipsv6": [ - "2a02:6ea0:dc06::a16f" - ], "country": "France", "city": "Marseille", "hostname": "fr16-wireguard", @@ -28640,9 +28277,6 @@ "ips": [ "193.32.126.81" ], - "ipsv6": [ - "2a03:1b20:9:f011::1f" - ], "country": "France", "city": "Paris", "hostname": "fr-par-001", @@ -28654,9 +28288,6 @@ "ips": [ "193.32.126.82" ], - "ipsv6": [ - "2a03:1b20:9:f011::2f" - ], "country": "France", "city": "Paris", "hostname": "fr-par-002", @@ -28668,9 +28299,6 @@ "ips": [ "193.32.126.83" ], - "ipsv6": [ - "2a03:1b20:9:f011::3f" - ], "country": "France", "city": "Paris", "hostname": "fr-par-003", @@ -28682,9 +28310,6 @@ "ips": [ "193.32.126.84" ], - "ipsv6": [ - "2a03:1b20:9:f011::4f" - ], "country": "France", "city": "Paris", "hostname": "fr-par-004", @@ -28696,9 +28321,6 @@ "ips": [ "89.44.9.19" ], - "ipsv6": [ - "2001:ac8:25:d0::1f" - ], "country": "France", "city": "Paris", "hostname": "fr-par-201", @@ -28709,9 +28331,6 @@ "ips": [ "89.44.9.35" ], - "ipsv6": [ - "2001:ac8:25:d1::2f" - ], "country": "France", "city": "Paris", "hostname": "fr-par-202", @@ -28722,9 +28341,6 @@ "ips": [ "194.110.113.3" ], - "ipsv6": [ - "2001:ac8:25:d2::3f" - ], "country": "France", "city": "Paris", "hostname": "fr-par-203", @@ -28735,9 +28351,6 @@ "ips": [ "194.110.113.19" ], - "ipsv6": [ - "2001:ac8:25:d3::a10f" - ], "country": "France", "city": "Paris", "hostname": "fr10-wireguard", @@ -28749,9 +28362,6 @@ "ips": [ "194.110.113.35" ], - "ipsv6": [ - "2001:ac8:25:d4::a11f" - ], "country": "France", "city": "Paris", "hostname": "fr11-wireguard", @@ -28763,9 +28373,6 @@ "ips": [ "194.110.113.51" ], - "ipsv6": [ - "2001:ac8:25:d5::a12f" - ], "country": "France", "city": "Paris", "hostname": "fr12-wireguard", @@ -28777,9 +28384,6 @@ "ips": [ "194.110.113.67" ], - "ipsv6": [ - "2001:ac8:25:d6::a13f" - ], "country": "France", "city": "Paris", "hostname": "fr13-wireguard", @@ -28791,9 +28395,6 @@ "ips": [ "194.110.113.83" ], - "ipsv6": [ - "2001:ac8:25:d7::a14f" - ], "country": "France", "city": "Paris", "hostname": "fr14-wireguard", @@ -28805,9 +28406,6 @@ "ips": [ "193.32.126.66" ], - "ipsv6": [ - "2a03:1b20:9:f011::a01f" - ], "country": "France", "city": "Paris", "hostname": "fr4-wireguard", @@ -28820,9 +28418,6 @@ "ips": [ "193.32.126.67" ], - "ipsv6": [ - "2a03:1b20:9:f011::a02f" - ], "country": "France", "city": "Paris", "hostname": "fr5-wireguard", @@ -28835,9 +28430,6 @@ "ips": [ "193.32.126.68" ], - "ipsv6": [ - "2a03:1b20:9:f011::a03f" - ], "country": "France", "city": "Paris", "hostname": "fr6-wireguard", @@ -28850,9 +28442,6 @@ "ips": [ "193.32.126.69" ], - "ipsv6": [ - "2a03:1b20:9:f011::a04f" - ], "country": "France", "city": "Paris", "hostname": "fr7-wireguard", @@ -28865,9 +28454,6 @@ "ips": [ "193.32.126.70" ], - "ipsv6": [ - "2a03:1b20:9:f011::a05f" - ], "country": "France", "city": "Paris", "hostname": "fr8-wireguard", @@ -28880,9 +28466,6 @@ "ips": [ "185.254.75.3" ], - "ipsv6": [ - "2a03:d9c0:3000::a20f" - ], "country": "Germany", "city": "Dusseldorf", "hostname": "de20-wireguard", @@ -28894,9 +28477,6 @@ "ips": [ "185.254.75.4" ], - "ipsv6": [ - "2a03:d9c0:3000::a21f" - ], "country": "Germany", "city": "Dusseldorf", "hostname": "de21-wireguard", @@ -28908,9 +28488,6 @@ "ips": [ "185.254.75.5" ], - "ipsv6": [ - "2a03:d9c0:3000::a22f" - ], "country": "Germany", "city": "Dusseldorf", "hostname": "de22-wireguard", @@ -28922,9 +28499,6 @@ "ips": [ "185.213.155.132" ], - "ipsv6": [ - "2a03:1b20:6:f011::2f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-002", @@ -28936,9 +28510,6 @@ "ips": [ "185.213.155.133" ], - "ipsv6": [ - "2a03:1b20:6:f011::3f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-003", @@ -28950,9 +28521,6 @@ "ips": [ "185.213.155.134" ], - "ipsv6": [ - "2a03:1b20:6:f011::4f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-004", @@ -28964,9 +28532,6 @@ "ips": [ "185.213.155.135" ], - "ipsv6": [ - "2a03:1b20:6:f011::5f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-005", @@ -28978,9 +28543,6 @@ "ips": [ "185.213.155.136" ], - "ipsv6": [ - "2a03:1b20:6:f011::6f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-006", @@ -28992,9 +28554,6 @@ "ips": [ "185.213.155.137" ], - "ipsv6": [ - "2a03:1b20:6:f011::7f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-007", @@ -29006,9 +28565,6 @@ "ips": [ "185.213.155.139" ], - "ipsv6": [ - "2a03:1b20:6:f011::9f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-009", @@ -29020,9 +28576,6 @@ "ips": [ "193.27.14.2" ], - "ipsv6": [ - "2001:ac8:20:301::201f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-201", @@ -29033,9 +28586,6 @@ "ips": [ "193.27.14.18" ], - "ipsv6": [ - "2001:ac8:20:302::202f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-202", @@ -29046,9 +28596,6 @@ "ips": [ "193.27.14.34" ], - "ipsv6": [ - "2001:ac8:20:303::203f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-203", @@ -29059,9 +28606,6 @@ "ips": [ "185.209.196.69" ], - "ipsv6": [ - "2a03:1b20:6:f011::a10f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de10-wireguard", @@ -29074,9 +28618,6 @@ "ips": [ "185.209.196.70" ], - "ipsv6": [ - "2a03:1b20:6:f011::a11f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de11-wireguard", @@ -29089,9 +28630,6 @@ "ips": [ "193.27.14.66" ], - "ipsv6": [ - "2001:ac8:20:305::a12f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de12-wireguard", @@ -29103,9 +28641,6 @@ "ips": [ "193.27.14.82" ], - "ipsv6": [ - "2001:ac8:20:306::a13f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de13-wireguard", @@ -29117,9 +28652,6 @@ "ips": [ "193.27.14.98" ], - "ipsv6": [ - "2001:ac8:20:307::a14f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de14-wireguard", @@ -29131,9 +28663,6 @@ "ips": [ "193.27.14.114" ], - "ipsv6": [ - "2001:ac8:20:308::a15f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de15-wireguard", @@ -29145,9 +28674,6 @@ "ips": [ "193.27.14.130" ], - "ipsv6": [ - "2001:ac8:20:308::a16f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de16-wireguard", @@ -29159,9 +28685,6 @@ "ips": [ "193.27.14.146" ], - "ipsv6": [ - "2001:ac8:20:309::a17f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de17-wireguard", @@ -29173,9 +28696,6 @@ "ips": [ "194.36.25.3" ], - "ipsv6": [ - "2a07:fe00:1::a23f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de23-wireguard", @@ -29187,9 +28707,6 @@ "ips": [ "194.36.25.18" ], - "ipsv6": [ - "2a07:fe00:1::a24f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de24-wireguard", @@ -29201,9 +28718,6 @@ "ips": [ "194.36.25.33" ], - "ipsv6": [ - "2a07:fe00:1::a25f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de25-wireguard", @@ -29215,9 +28729,6 @@ "ips": [ "194.36.25.48" ], - "ipsv6": [ - "2a07:fe00:1::a26f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de26-wireguard", @@ -29229,9 +28740,6 @@ "ips": [ "185.213.155.130" ], - "ipsv6": [ - "2a03:1b20:6:f011::a01f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de4-wireguard", @@ -29244,9 +28752,6 @@ "ips": [ "185.213.155.222" ], - "ipsv6": [ - "2a03:1b20:6:f011::a02f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de5-wireguard", @@ -29259,9 +28764,6 @@ "ips": [ "185.209.196.66" ], - "ipsv6": [ - "2a03:1b20:6:f011::a07f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de7-wireguard", @@ -29274,9 +28776,6 @@ "ips": [ "185.209.196.67" ], - "ipsv6": [ - "2a03:1b20:6:f011::a08f" - ], "country": "Germany", "city": "Frankfurt", "hostname": "de8-wireguard", @@ -29289,9 +28788,6 @@ "ips": [ "185.226.67.168" ], - "ipsv6": [ - "2a0c:5e00:0:8::1f" - ], "country": "Greece", "city": "Athens", "hostname": "gr-ath-001", @@ -29302,9 +28798,6 @@ "ips": [ "209.58.184.146" ], - "ipsv6": [ - "2001:df1:801:a005:500::1f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-001", @@ -29315,9 +28808,6 @@ "ips": [ "209.58.185.53" ], - "ipsv6": [ - "2001:df1:801:a003:4::2f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-002", @@ -29328,9 +28818,6 @@ "ips": [ "209.58.185.186" ], - "ipsv6": [ - "2001:df1:801:a003:5::3f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-003", @@ -29341,9 +28828,6 @@ "ips": [ "89.45.6.50" ], - "ipsv6": [ - "2001:ac8:92:9::1f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-101", @@ -29354,9 +28838,6 @@ "ips": [ "89.45.6.66" ], - "ipsv6": [ - "2001:ac8:92:2::2f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-102", @@ -29367,9 +28848,6 @@ "ips": [ "209.58.188.180" ], - "ipsv6": [ - "2001:df1:801:a009:10::a01f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk1-wireguard", @@ -29381,9 +28859,6 @@ "ips": [ "89.45.6.82" ], - "ipsv6": [ - "2001:ac8:92:3::a02f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk2-wireguard", @@ -29395,9 +28870,6 @@ "ips": [ "89.45.6.98" ], - "ipsv6": [ - "2001:ac8:92:4::a03f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk3-wireguard", @@ -29409,9 +28881,6 @@ "ips": [ "89.45.6.114" ], - "ipsv6": [ - "2001:ac8:92:5::a04f" - ], "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk4-wireguard", @@ -29423,9 +28892,6 @@ "ips": [ "86.106.74.34" ], - "ipsv6": [ - "2001:ac8:26:ab::3f" - ], "country": "Hungary", "city": "Budapest", "hostname": "hu-bud-003", @@ -29436,9 +28902,6 @@ "ips": [ "86.106.74.50" ], - "ipsv6": [ - "2001:ac8:26:ac::4f" - ], "country": "Hungary", "city": "Budapest", "hostname": "hu-bud-004", @@ -29449,9 +28912,6 @@ "ips": [ "86.106.74.66" ], - "ipsv6": [ - "2001:ac8:26:ad::a03f" - ], "country": "Hungary", "city": "Budapest", "hostname": "hu3-wireguard", @@ -29463,9 +28923,6 @@ "ips": [ "86.106.74.82" ], - "ipsv6": [ - "2001:ac8:26:ae::a04f" - ], "country": "Hungary", "city": "Budapest", "hostname": "hu4-wireguard", @@ -29477,9 +28934,6 @@ "ips": [ "86.106.74.98" ], - "ipsv6": [ - "2001:ac8:26:af::a05f" - ], "country": "Hungary", "city": "Budapest", "hostname": "hu5-wireguard", @@ -29491,9 +28945,6 @@ "ips": [ "217.138.222.82" ], - "ipsv6": [ - "2001:ac8:88:5a::1f" - ], "country": "Ireland", "city": "Dublin", "hostname": "ie-dub-001", @@ -29504,9 +28955,6 @@ "ips": [ "217.138.222.90" ], - "ipsv6": [ - "2001:ac8:88:5b::2f" - ], "country": "Ireland", "city": "Dublin", "hostname": "ie-dub-002", @@ -29517,9 +28965,6 @@ "ips": [ "217.138.222.98" ], - "ipsv6": [ - "2001:ac8:88:5d::a01f" - ], "country": "Ireland", "city": "Dublin", "hostname": "ie1-wireguard", @@ -29531,9 +28976,6 @@ "ips": [ "217.138.222.106" ], - "ipsv6": [ - "2001:ac8:88:5e::a02f" - ], "country": "Ireland", "city": "Dublin", "hostname": "ie2-wireguard", @@ -29545,9 +28987,6 @@ "ips": [ "185.191.207.210" ], - "ipsv6": [ - "2a0a:1dc4:1::1f" - ], "country": "Israel", "city": "Tel Aviv", "hostname": "il-tlv-001", @@ -29558,9 +28997,6 @@ "ips": [ "89.40.182.146" ], - "ipsv6": [ - "2001:ac8:24:76::1f" - ], "country": "Italy", "city": "Milan", "hostname": "it-mil-101", @@ -29571,9 +29007,6 @@ "ips": [ "192.145.127.98" ], - "ipsv6": [ - "2001:ac8:24:77::2f" - ], "country": "Italy", "city": "Milan", "hostname": "it-mil-102", @@ -29584,9 +29017,6 @@ "ips": [ "192.145.127.114" ], - "ipsv6": [ - "2001:ac8:24:78::3f" - ], "country": "Italy", "city": "Milan", "hostname": "it-mil-103", @@ -29597,9 +29027,6 @@ "ips": [ "89.40.182.210" ], - "ipsv6": [ - "2001:ac8:24:79::4f" - ], "country": "Italy", "city": "Milan", "hostname": "it-mil-104", @@ -29610,9 +29037,6 @@ "ips": [ "91.193.5.2" ], - "ipsv6": [ - "2001:ac8:24:7a::a04f" - ], "country": "Italy", "city": "Milan", "hostname": "it4-wireguard", @@ -29624,9 +29048,6 @@ "ips": [ "91.193.5.18" ], - "ipsv6": [ - "2001:ac8:24:7b::a05f" - ], "country": "Italy", "city": "Milan", "hostname": "it5-wireguard", @@ -29638,9 +29059,6 @@ "ips": [ "91.193.5.34" ], - "ipsv6": [ - "2001:ac8:24:7c::a06f" - ], "country": "Italy", "city": "Milan", "hostname": "it6-wireguard", @@ -29652,9 +29070,6 @@ "ips": [ "37.120.201.82" ], - "ipsv6": [ - "2001:ac8:24:50::a07f" - ], "country": "Italy", "city": "Milan", "hostname": "it7-wireguard", @@ -29666,9 +29081,6 @@ "ips": [ "37.120.201.114" ], - "ipsv6": [ - "2001:ac8:24:49::a08f" - ], "country": "Italy", "city": "Milan", "hostname": "it8-wireguard", @@ -29680,9 +29092,6 @@ "ips": [ "45.8.223.195" ], - "ipsv6": [ - "2400:ddc0:c000::a01f" - ], "country": "Japan", "city": "Osaka", "hostname": "jp1-wireguard", @@ -29694,9 +29103,6 @@ "ips": [ "45.8.223.210" ], - "ipsv6": [ - "2400:ddc0:c000::a02f" - ], "country": "Japan", "city": "Osaka", "hostname": "jp2-wireguard", @@ -29708,9 +29114,6 @@ "ips": [ "45.8.223.225" ], - "ipsv6": [ - "2400:ddc0:c000::a03f" - ], "country": "Japan", "city": "Osaka", "hostname": "jp3-wireguard", @@ -29722,9 +29125,6 @@ "ips": [ "45.8.223.240" ], - "ipsv6": [ - "2400:ddc0:c000::a04f" - ], "country": "Japan", "city": "Osaka", "hostname": "jp4-wireguard", @@ -29736,9 +29136,6 @@ "ips": [ "217.138.252.50" ], - "ipsv6": [ - "2001:ac8:40:b1::1f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-101", @@ -29749,9 +29146,6 @@ "ips": [ "217.138.252.162" ], - "ipsv6": [ - "2001:ac8:40:b2::2f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-102", @@ -29762,9 +29156,6 @@ "ips": [ "217.138.252.178" ], - "ipsv6": [ - "2001:ac8:40:b3::3f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-103", @@ -29775,9 +29166,6 @@ "ips": [ "217.138.252.194" ], - "ipsv6": [ - "2001:ac8:40:b4::4f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-104", @@ -29788,9 +29176,6 @@ "ips": [ "217.138.252.210" ], - "ipsv6": [ - "2001:ac8:40:b5::5f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-105", @@ -29801,9 +29186,6 @@ "ips": [ "91.193.7.34" ], - "ipsv6": [ - "2001:ac8:40:ba::a10f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp10-wireguard", @@ -29815,9 +29197,6 @@ "ips": [ "91.193.7.50" ], - "ipsv6": [ - "2001:ac8:40:bb::a11f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp11-wireguard", @@ -29829,9 +29208,6 @@ "ips": [ "91.193.7.66" ], - "ipsv6": [ - "2001:ac8:40:bc::a12f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp12-wireguard", @@ -29843,9 +29219,6 @@ "ips": [ "91.193.7.82" ], - "ipsv6": [ - "2001:ac8:40:bd::a13f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp13-wireguard", @@ -29857,9 +29230,6 @@ "ips": [ "217.138.252.226" ], - "ipsv6": [ - "2001:ac8:40:b6::a06f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp6-wireguard", @@ -29871,9 +29241,6 @@ "ips": [ "217.138.252.242" ], - "ipsv6": [ - "2001:ac8:40:b7::a07f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp7-wireguard", @@ -29885,9 +29252,6 @@ "ips": [ "91.193.7.2" ], - "ipsv6": [ - "2001:ac8:40:b8::a08f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp8-wireguard", @@ -29899,9 +29263,6 @@ "ips": [ "91.193.7.18" ], - "ipsv6": [ - "2001:ac8:40:b9::a09f" - ], "country": "Japan", "city": "Tokyo", "hostname": "jp9-wireguard", @@ -29913,9 +29274,6 @@ "ips": [ "31.170.22.2" ], - "ipsv6": [ - "2a00:c68:0:cbcf::1f" - ], "country": "Latvia", "city": "Riga", "hostname": "lv-rix-001", @@ -29926,9 +29284,6 @@ "ips": [ "31.170.22.15" ], - "ipsv6": [ - "2a00:c68:0:cbd0::a01f" - ], "country": "Latvia", "city": "Riga", "hostname": "lv1-wireguard", @@ -29940,9 +29295,6 @@ "ips": [ "92.223.89.160" ], - "ipsv6": [ - "2a03:90c0:83:2953::1f" - ], "country": "Luxembourg", "city": "Luxembourg", "hostname": "lu-lux-001", @@ -29953,9 +29305,6 @@ "ips": [ "92.223.89.182" ], - "ipsv6": [ - "2a03:90c0:83:2953::2f" - ], "country": "Luxembourg", "city": "Luxembourg", "hostname": "lu-lux-002", @@ -29966,9 +29315,6 @@ "ips": [ "92.223.89.181" ], - "ipsv6": [ - "2a03:90c0:83:2953::a01f" - ], "country": "Luxembourg", "city": "Luxembourg", "hostname": "lu1-wireguard", @@ -29980,9 +29326,6 @@ "ips": [ "92.223.89.165" ], - "ipsv6": [ - "2a03:90c0:83:2953::a02f" - ], "country": "Luxembourg", "city": "Luxembourg", "hostname": "lu2-wireguard", @@ -29994,9 +29337,6 @@ "ips": [ "178.175.142.194" ], - "ipsv6": [ - "2a00:1dc0:2925::1f" - ], "country": "Moldova", "city": "Chisinau", "hostname": "md-kiv-001", @@ -30007,9 +29347,6 @@ "ips": [ "178.175.131.98" ], - "ipsv6": [ - "2a00:1dc0:2925:10::a01f" - ], "country": "Moldova", "city": "Chisinau", "hostname": "md1-wireguard", @@ -30021,9 +29358,6 @@ "ips": [ "185.65.134.131" ], - "ipsv6": [ - "2a03:1b20:3:f011::1f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl-ams-001", @@ -30035,9 +29369,6 @@ "ips": [ "185.65.134.132" ], - "ipsv6": [ - "2a03:1b20:3:f011::2f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl-ams-002", @@ -30049,9 +29380,6 @@ "ips": [ "185.65.134.133" ], - "ipsv6": [ - "2a03:1b20:3:f011::3f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl-ams-003", @@ -30063,9 +29391,6 @@ "ips": [ "185.65.134.134" ], - "ipsv6": [ - "2a03:1b20:3:f011::4f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl-ams-004", @@ -30077,9 +29402,6 @@ "ips": [ "185.65.134.135" ], - "ipsv6": [ - "2a03:1b20:3:f011::5f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl-ams-005", @@ -30091,9 +29413,6 @@ "ips": [ "185.65.134.136" ], - "ipsv6": [ - "2a03:1b20:3:f011::6f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl-ams-006", @@ -30105,9 +29424,6 @@ "ips": [ "185.65.134.137" ], - "ipsv6": [ - "2a03:1b20:3:f011::7f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl-ams-007", @@ -30119,9 +29435,6 @@ "ips": [ "193.32.249.66" ], - "ipsv6": [ - "2a03:1b20:3:f011::a01f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl1-wireguard", @@ -30134,9 +29447,6 @@ "ips": [ "185.65.134.222" ], - "ipsv6": [ - "2a03:1b20:3:f011::a02f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl2-wireguard", @@ -30149,9 +29459,6 @@ "ips": [ "92.60.40.194" ], - "ipsv6": [ - "2a0c:59c0:18::a20f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl20-wireguard", @@ -30163,9 +29470,6 @@ "ips": [ "92.60.40.209" ], - "ipsv6": [ - "2a0c:59c0:18::a21f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl21-wireguard", @@ -30177,9 +29481,6 @@ "ips": [ "92.60.40.224" ], - "ipsv6": [ - "2a0c:59c0:18::a22f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl22-wireguard", @@ -30191,9 +29492,6 @@ "ips": [ "92.60.40.239" ], - "ipsv6": [ - "2a0c:59c0:18::a23f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl23-wireguard", @@ -30205,9 +29503,6 @@ "ips": [ "185.65.134.223" ], - "ipsv6": [ - "2a03:1b20:3:f011::a03f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl3-wireguard", @@ -30220,9 +29515,6 @@ "ips": [ "193.32.249.69" ], - "ipsv6": [ - "2a03:1b20:3:f011::a04f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl4-wireguard", @@ -30235,9 +29527,6 @@ "ips": [ "193.32.249.70" ], - "ipsv6": [ - "2a03:1b20:3:f011::a05f" - ], "country": "Netherlands", "city": "Amsterdam", "hostname": "nl5-wireguard", @@ -30250,9 +29539,6 @@ "ips": [ "103.231.91.114" ], - "ipsv6": [ - "2400:fa80:4:9::1f" - ], "country": "New Zealand", "city": "Auckland", "hostname": "nz-akl-001", @@ -30263,9 +29549,6 @@ "ips": [ "103.108.94.34" ], - "ipsv6": [ - "2400:fa80:4:10::a01f" - ], "country": "New Zealand", "city": "Auckland", "hostname": "nz1-wireguard", @@ -30277,9 +29560,6 @@ "ips": [ "103.231.91.226" ], - "ipsv6": [ - "2400:fa80:4:11::a02f" - ], "country": "New Zealand", "city": "Auckland", "hostname": "nz2-wireguard", @@ -30291,9 +29571,6 @@ "ips": [ "185.225.28.146" ], - "ipsv6": [ - "2a0d:4500::a01f" - ], "country": "North Macedonia", "city": "Skopje", "hostname": "mk1-wireguard", @@ -30305,9 +29582,6 @@ "ips": [ "91.90.44.11" ], - "ipsv6": [ - "2a02:20c8:4124::1f" - ], "country": "Norway", "city": "Oslo", "hostname": "no-osl-001", @@ -30319,9 +29593,6 @@ "ips": [ "91.90.44.12" ], - "ipsv6": [ - "2a02:20c8:4124::2f" - ], "country": "Norway", "city": "Oslo", "hostname": "no-osl-002", @@ -30333,9 +29604,6 @@ "ips": [ "91.90.44.13" ], - "ipsv6": [ - "2a02:20c8:4124::3f" - ], "country": "Norway", "city": "Oslo", "hostname": "no-osl-003", @@ -30347,9 +29615,6 @@ "ips": [ "91.90.44.14" ], - "ipsv6": [ - "2a02:20c8:4124::4f" - ], "country": "Norway", "city": "Oslo", "hostname": "no-osl-004", @@ -30361,9 +29626,6 @@ "ips": [ "91.90.44.15" ], - "ipsv6": [ - "2a02:20c8:4124::5f" - ], "country": "Norway", "city": "Oslo", "hostname": "no-osl-005", @@ -30375,9 +29637,6 @@ "ips": [ "91.90.44.16" ], - "ipsv6": [ - "2a02:20c8:4124::6f" - ], "country": "Norway", "city": "Oslo", "hostname": "no-osl-006", @@ -30389,9 +29648,6 @@ "ips": [ "91.90.44.17" ], - "ipsv6": [ - "2a02:20c8:4124::7f" - ], "country": "Norway", "city": "Oslo", "hostname": "no-osl-007", @@ -30403,9 +29659,6 @@ "ips": [ "91.90.44.18" ], - "ipsv6": [ - "2a02:20c8:4124::8f" - ], "country": "Norway", "city": "Oslo", "hostname": "no-osl-008", @@ -30417,9 +29670,6 @@ "ips": [ "176.125.235.71" ], - "ipsv6": [ - "2a02:20c8:4124::a01f" - ], "country": "Norway", "city": "Oslo", "hostname": "no1-wireguard", @@ -30432,9 +29682,6 @@ "ips": [ "176.125.235.72" ], - "ipsv6": [ - "2a02:20c8:4124::a02f" - ], "country": "Norway", "city": "Oslo", "hostname": "no2-wireguard", @@ -30447,9 +29694,6 @@ "ips": [ "176.125.235.73" ], - "ipsv6": [ - "2a02:20c8:4124::a03f" - ], "country": "Norway", "city": "Oslo", "hostname": "no3-wireguard", @@ -30462,9 +29706,6 @@ "ips": [ "176.125.235.74" ], - "ipsv6": [ - "2a02:20c8:4124::a04f" - ], "country": "Norway", "city": "Oslo", "hostname": "no4-wireguard", @@ -30477,9 +29718,6 @@ "ips": [ "37.120.156.162" ], - "ipsv6": [ - "2a0d:5600:13:bb1::1f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-001", @@ -30490,9 +29728,6 @@ "ips": [ "185.244.214.210" ], - "ipsv6": [ - "2a0d:5600:13:6::2f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-002", @@ -30503,9 +29738,6 @@ "ips": [ "185.244.214.215" ], - "ipsv6": [ - "2a0d:5600:13:7::3f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-003", @@ -30516,9 +29748,6 @@ "ips": [ "37.120.211.186" ], - "ipsv6": [ - "2a0d:5600:13:39::4f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-004", @@ -30529,9 +29758,6 @@ "ips": [ "37.120.211.194" ], - "ipsv6": [ - "2a0d:5600:13:3a::5f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-005", @@ -30542,9 +29768,6 @@ "ips": [ "37.120.211.202" ], - "ipsv6": [ - "2a0d:5600:13:3b::6f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-006", @@ -30555,9 +29778,6 @@ "ips": [ "185.244.214.58" ], - "ipsv6": [ - "2a0d:5600:13:9::a01f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl1-wireguard", @@ -30569,9 +29789,6 @@ "ips": [ "37.120.156.242" ], - "ipsv6": [ - "2a0d:5600:13:1b::a02f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl2-wireguard", @@ -30583,9 +29800,6 @@ "ips": [ "5.253.206.210" ], - "ipsv6": [ - "2a0d:5600:13:1c::a03f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl3-wireguard", @@ -30597,9 +29811,6 @@ "ips": [ "37.120.211.210" ], - "ipsv6": [ - "2a0d:5600:13:3c::a04f" - ], "country": "Poland", "city": "Warsaw", "hostname": "pl4-wireguard", @@ -30611,9 +29822,6 @@ "ips": [ "94.46.24.33" ], - "ipsv6": [ - "2a00:1651:0:4000::a01f" - ], "country": "Portugal", "city": "Lisbon", "hostname": "pt1-wireguard", @@ -30625,9 +29833,6 @@ "ips": [ "94.46.24.49" ], - "ipsv6": [ - "2a00:1651:0:4001::a02f" - ], "country": "Portugal", "city": "Lisbon", "hostname": "pt2-wireguard", @@ -30639,9 +29844,6 @@ "ips": [ "185.163.110.66" ], - "ipsv6": [ - "2a04:9dc0:0:90::101f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro-buh-101", @@ -30652,9 +29854,6 @@ "ips": [ "185.163.110.82" ], - "ipsv6": [ - "2a04:9dc0:0:91::102f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro-buh-102", @@ -30665,9 +29864,6 @@ "ips": [ "185.163.110.98" ], - "ipsv6": [ - "2a04:9dc0:0:92::103f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro-buh-103", @@ -30678,9 +29874,6 @@ "ips": [ "185.163.110.114" ], - "ipsv6": [ - "2a04:9dc0:0:93::104f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro-buh-104", @@ -30691,9 +29884,6 @@ "ips": [ "185.45.15.194" ], - "ipsv6": [ - "2a04:9dc0:0:94::a04f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro4-wireguard", @@ -30705,9 +29895,6 @@ "ips": [ "185.45.15.210" ], - "ipsv6": [ - "2a04:9dc0:0:95::a05f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro5-wireguard", @@ -30719,9 +29906,6 @@ "ips": [ "185.123.143.194" ], - "ipsv6": [ - "2a04:9dc0:0:96::a06f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro6-wireguard", @@ -30733,9 +29917,6 @@ "ips": [ "185.123.143.210" ], - "ipsv6": [ - "2a04:9dc0:0:97::a07f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro7-wireguard", @@ -30747,9 +29928,6 @@ "ips": [ "185.120.144.98" ], - "ipsv6": [ - "2a04:9dc0:0:98::a08f" - ], "country": "Romania", "city": "Bucharest", "hostname": "ro8-wireguard", @@ -30761,9 +29939,6 @@ "ips": [ "89.38.224.98" ], - "ipsv6": [ - "2001:ac8:7d:10::2f" - ], "country": "Serbia", "city": "Belgrade", "hostname": "rs-beg-002", @@ -30774,9 +29949,6 @@ "ips": [ "89.38.224.114" ], - "ipsv6": [ - "2001:ac8:7d:11::3f" - ], "country": "Serbia", "city": "Belgrade", "hostname": "rs-beg-003", @@ -30787,9 +29959,6 @@ "ips": [ "152.89.160.178" ], - "ipsv6": [ - "2001:ac8:7d:1b::a03f" - ], "country": "Serbia", "city": "Belgrade", "hostname": "rs3-wireguard", @@ -30801,9 +29970,6 @@ "ips": [ "89.38.224.82" ], - "ipsv6": [ - "2001:ac8:7d:20::a04f" - ], "country": "Serbia", "city": "Belgrade", "hostname": "rs4-wireguard", @@ -30815,9 +29981,6 @@ "ips": [ "176.104.107.118" ], - "ipsv6": [ - "2a06:185:1:2::1f" - ], "country": "Serbia", "city": "Nis", "hostname": "rs-ini-001", @@ -30828,9 +29991,6 @@ "ips": [ "89.38.225.34" ], - "ipsv6": [ - "2a0a:b640:1:54::1f" - ], "country": "Singapore", "city": "Singapore", "hostname": "sg-sin-201", @@ -30841,9 +30001,6 @@ "ips": [ "94.198.43.2" ], - "ipsv6": [ - "2a0a:b640:1:55::2f" - ], "country": "Singapore", "city": "Singapore", "hostname": "sg-sin-202", @@ -30854,9 +30011,6 @@ "ips": [ "94.198.43.34" ], - "ipsv6": [ - "2a0a:b640:1:57::a04f" - ], "country": "Singapore", "city": "Singapore", "hostname": "sg4-wireguard", @@ -30868,9 +30022,6 @@ "ips": [ "94.198.43.50" ], - "ipsv6": [ - "2a0a:b640:1:58::a05f" - ], "country": "Singapore", "city": "Singapore", "hostname": "sg5-wireguard", @@ -30882,9 +30033,6 @@ "ips": [ "94.198.43.66" ], - "ipsv6": [ - "2a0a:b640:1:59::a06f" - ], "country": "Singapore", "city": "Singapore", "hostname": "sg6-wireguard", @@ -30896,9 +30044,6 @@ "ips": [ "94.198.43.82" ], - "ipsv6": [ - "2a0a:b640:1:5a::a07f" - ], "country": "Singapore", "city": "Singapore", "hostname": "sg7-wireguard", @@ -30910,9 +30055,6 @@ "ips": [ "94.198.43.98" ], - "ipsv6": [ - "2a0a:b640:1:5b::a08f" - ], "country": "Singapore", "city": "Singapore", "hostname": "sg8-wireguard", @@ -30924,9 +30066,6 @@ "ips": [ "89.238.178.34" ], - "ipsv6": [ - "2001:ac8:23:6::1f" - ], "country": "Spain", "city": "Madrid", "hostname": "es-mad-001", @@ -30937,9 +30076,6 @@ "ips": [ "89.238.178.74" ], - "ipsv6": [ - "2001:ac8:23:12::f2" - ], "country": "Spain", "city": "Madrid", "hostname": "es-mad-002", @@ -30950,9 +30086,6 @@ "ips": [ "195.206.107.146" ], - "ipsv6": [ - "2001:ac8:23:2a::3f" - ], "country": "Spain", "city": "Madrid", "hostname": "es-mad-003", @@ -30963,9 +30096,6 @@ "ips": [ "45.152.183.26" ], - "ipsv6": [ - "2001:ac8:23:58::4f" - ], "country": "Spain", "city": "Madrid", "hostname": "es-mad-004", @@ -30976,9 +30106,6 @@ "ips": [ "45.152.183.42" ], - "ipsv6": [ - "2001:ac8:23:59::5f" - ], "country": "Spain", "city": "Madrid", "hostname": "es-mad-005", @@ -30989,9 +30116,6 @@ "ips": [ "194.99.104.10" ], - "ipsv6": [ - "2001:ac8:23:2c::a01f" - ], "country": "Spain", "city": "Madrid", "hostname": "es1-wireguard", @@ -31003,9 +30127,6 @@ "ips": [ "37.120.199.34" ], - "ipsv6": [ - "2001:ac8:23:4b::a02f" - ], "country": "Spain", "city": "Madrid", "hostname": "es2-wireguard", @@ -31017,9 +30138,6 @@ "ips": [ "45.152.183.50" ], - "ipsv6": [ - "2001:ac8:23:5a::a04f" - ], "country": "Spain", "city": "Madrid", "hostname": "es4-wireguard", @@ -31031,9 +30149,6 @@ "ips": [ "45.152.183.58" ], - "ipsv6": [ - "2001:ac8:23:5b::a05f" - ], "country": "Spain", "city": "Madrid", "hostname": "es5-wireguard", @@ -31045,9 +30160,6 @@ "ips": [ "185.213.154.131" ], - "ipsv6": [ - "2a03:1b20:5:f011:31::1f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-001", @@ -31059,9 +30171,6 @@ "ips": [ "185.213.154.132" ], - "ipsv6": [ - "2a03:1b20:5:f011:31::2f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-002", @@ -31073,9 +30182,6 @@ "ips": [ "185.213.154.133" ], - "ipsv6": [ - "2a03:1b20:5:f011:31::3f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-003", @@ -31087,9 +30193,6 @@ "ips": [ "185.213.154.134" ], - "ipsv6": [ - "2a03:1b20:5:f011:31::4f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-004", @@ -31101,9 +30204,6 @@ "ips": [ "185.213.154.135" ], - "ipsv6": [ - "2a03:1b20:5:f011:31::5f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-005", @@ -31115,9 +30215,6 @@ "ips": [ "185.213.154.136" ], - "ipsv6": [ - "2a03:1b20:5:f011:31::6f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-006", @@ -31129,9 +30226,6 @@ "ips": [ "185.213.154.137" ], - "ipsv6": [ - "2a03:1b20:5:f011:31::7f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-007", @@ -31143,9 +30237,6 @@ "ips": [ "185.213.154.138" ], - "ipsv6": [ - "2a03:1b20:5:f011::8f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-008", @@ -31157,9 +30248,6 @@ "ips": [ "185.213.154.139" ], - "ipsv6": [ - "2a03:1b20:5:f011::9f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-009", @@ -31171,9 +30259,6 @@ "ips": [ "185.213.154.140" ], - "ipsv6": [ - "2a03:1b20:5:f011::10f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-010", @@ -31185,9 +30270,6 @@ "ips": [ "185.213.154.141" ], - "ipsv6": [ - "2a03:1b20:5:f011::11f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-011", @@ -31199,9 +30281,6 @@ "ips": [ "185.213.154.142" ], - "ipsv6": [ - "2a03:1b20:5:f011::12f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se-got-012", @@ -31213,9 +30292,6 @@ "ips": [ "185.213.154.69" ], - "ipsv6": [ - "2a03:1b20:5:f011::a10f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se10-wireguard", @@ -31228,9 +30304,6 @@ "ips": [ "185.213.154.66" ], - "ipsv6": [ - "2a03:1b20:5:f011:31::a03f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se3-wireguard", @@ -31243,9 +30316,6 @@ "ips": [ "185.213.154.67" ], - "ipsv6": [ - "2a03:1b20:5:f011::a05f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se5-wireguard", @@ -31258,9 +30328,6 @@ "ips": [ "185.213.154.68" ], - "ipsv6": [ - "2a03:1b20:5:f011::a09f" - ], "country": "Sweden", "city": "Gothenburg", "hostname": "se9-wireguard", @@ -31273,9 +30340,6 @@ "ips": [ "185.213.152.131" ], - "ipsv6": [ - "2a03:1b20:2:f702::1f" - ], "country": "Sweden", "city": "Helsingborg", "hostname": "se-hel-001", @@ -31287,9 +30351,6 @@ "ips": [ "185.213.152.132" ], - "ipsv6": [ - "2a03:1b20:2:f702::2f" - ], "country": "Sweden", "city": "Helsingborg", "hostname": "se-hel-002", @@ -31301,9 +30362,6 @@ "ips": [ "193.138.218.131" ], - "ipsv6": [ - "2a03:1b20:1:f410:40::1f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-001", @@ -31315,9 +30373,6 @@ "ips": [ "193.138.218.132" ], - "ipsv6": [ - "2a03:1b20:1:f410:40::2f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-002", @@ -31329,9 +30384,6 @@ "ips": [ "141.98.255.83" ], - "ipsv6": [ - "2a03:1b20:1:f410::13f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-013", @@ -31343,9 +30395,6 @@ "ips": [ "141.98.255.84" ], - "ipsv6": [ - "2a03:1b20:1:f410::14f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-014", @@ -31357,9 +30406,6 @@ "ips": [ "141.98.255.85" ], - "ipsv6": [ - "2a03:1b20:1:f410::15f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-015", @@ -31371,9 +30417,6 @@ "ips": [ "141.98.255.86" ], - "ipsv6": [ - "2a03:1b20:1:f410::16f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-016", @@ -31385,9 +30428,6 @@ "ips": [ "141.98.255.87" ], - "ipsv6": [ - "2a03:1b20:1:f410::17f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-017", @@ -31399,9 +30439,6 @@ "ips": [ "141.98.255.88" ], - "ipsv6": [ - "2a03:1b20:1:f410::18f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-018", @@ -31413,9 +30450,6 @@ "ips": [ "141.98.255.89" ], - "ipsv6": [ - "2a03:1b20:1:f410::19f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-019", @@ -31427,9 +30461,6 @@ "ips": [ "141.98.255.90" ], - "ipsv6": [ - "2a03:1b20:1:f410::20f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-020", @@ -31441,9 +30472,6 @@ "ips": [ "141.98.255.91" ], - "ipsv6": [ - "2a03:1b20:1:f410::21f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-021", @@ -31455,9 +30483,6 @@ "ips": [ "141.98.255.92" ], - "ipsv6": [ - "2a03:1b20:1:f410::22f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-022", @@ -31469,9 +30494,6 @@ "ips": [ "141.98.255.93" ], - "ipsv6": [ - "2a03:1b20:1:f410::23f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-023", @@ -31483,9 +30505,6 @@ "ips": [ "45.83.220.90" ], - "ipsv6": [ - "2a03:1b20:1:e011::10f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-110", @@ -31497,9 +30516,6 @@ "ips": [ "45.83.220.92" ], - "ipsv6": [ - "2a03:1b20:1:e011::12f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se-mma-112", @@ -31511,9 +30527,6 @@ "ips": [ "193.138.218.220" ], - "ipsv6": [ - "2a03:1b20:1:f410::a01f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se1-wireguard", @@ -31526,9 +30539,6 @@ "ips": [ "193.138.218.80" ], - "ipsv6": [ - "2a03:1b20:1:f410::a15f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se15-wireguard", @@ -31541,9 +30551,6 @@ "ips": [ "193.138.218.82" ], - "ipsv6": [ - "2a03:1b20:1:f410::a17f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se17-wireguard", @@ -31556,9 +30563,6 @@ "ips": [ "193.138.218.83" ], - "ipsv6": [ - "2a03:1b20:1:f410::a18f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se18-wireguard", @@ -31571,9 +30575,6 @@ "ips": [ "45.83.220.66" ], - "ipsv6": [ - "2a03:1b20:1:e011::a19f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se19-wireguard", @@ -31586,9 +30587,6 @@ "ips": [ "45.83.220.68" ], - "ipsv6": [ - "2a03:1b20:1:e011::a21f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se21-wireguard", @@ -31601,9 +30599,6 @@ "ips": [ "45.83.220.69" ], - "ipsv6": [ - "2a03:1b20:1:e011::a22f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se22-wireguard", @@ -31616,9 +30611,6 @@ "ips": [ "45.83.220.70" ], - "ipsv6": [ - "2a03:1b20:1:e011::a23f" - ], "country": "Sweden", "city": "Malmö", "hostname": "se23-wireguard", @@ -31631,9 +30623,6 @@ "ips": [ "185.65.135.137" ], - "ipsv6": [ - "2a03:1b20:4:f011::7f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-007", @@ -31645,9 +30634,6 @@ "ips": [ "185.65.135.138" ], - "ipsv6": [ - "2a03:1b20:4:f011::8f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-008", @@ -31659,9 +30645,6 @@ "ips": [ "185.65.135.139" ], - "ipsv6": [ - "2a03:1b20:4:f011::9f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-009", @@ -31673,9 +30656,6 @@ "ips": [ "185.65.135.140" ], - "ipsv6": [ - "2a03:1b20:4:f011::10f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-010", @@ -31687,9 +30667,6 @@ "ips": [ "185.65.135.141" ], - "ipsv6": [ - "2a03:1b20:4:f011::11f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-011", @@ -31701,9 +30678,6 @@ "ips": [ "185.65.135.143" ], - "ipsv6": [ - "2a03:1b20:4:f011::13f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-013", @@ -31715,9 +30689,6 @@ "ips": [ "185.65.135.144" ], - "ipsv6": [ - "2a03:1b20:4:f011::14e" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-014", @@ -31729,9 +30700,6 @@ "ips": [ "185.65.135.145" ], - "ipsv6": [ - "2a03:1b20:4:f011::15f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-015", @@ -31743,9 +30711,6 @@ "ips": [ "185.65.135.146" ], - "ipsv6": [ - "2a03:1b20:4:f011::16f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-016", @@ -31757,9 +30722,6 @@ "ips": [ "185.65.135.147" ], - "ipsv6": [ - "2a03:1b20:4:f011::17f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-017", @@ -31771,9 +30733,6 @@ "ips": [ "185.65.135.148" ], - "ipsv6": [ - "2a03:1b20:4:f011::18f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-018", @@ -31785,9 +30744,6 @@ "ips": [ "185.65.135.149" ], - "ipsv6": [ - "2a03:1b20:4:f011::19f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-019", @@ -31799,9 +30755,6 @@ "ips": [ "185.65.135.150" ], - "ipsv6": [ - "2a03:1b20:4:f011::20f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-020", @@ -31813,9 +30766,6 @@ "ips": [ "185.65.135.151" ], - "ipsv6": [ - "2a03:1b20:4:f011::21f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-021", @@ -31827,9 +30777,6 @@ "ips": [ "185.65.135.152" ], - "ipsv6": [ - "2a03:1b20:4:f011::22f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-022", @@ -31841,9 +30788,6 @@ "ips": [ "185.65.135.153" ], - "ipsv6": [ - "2a03:1b20:4:f011::23f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se-sto-023", @@ -31855,9 +30799,6 @@ "ips": [ "185.65.135.70" ], - "ipsv6": [ - "2a03:1b20:4:f011::a13f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se13-wireguard", @@ -31870,9 +30811,6 @@ "ips": [ "185.65.135.71" ], - "ipsv6": [ - "2a03:1b20:4:f011::a14f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se14-wireguard", @@ -31885,9 +30823,6 @@ "ips": [ "185.65.135.130" ], - "ipsv6": [ - "2a03:1b20:4:f011::a02f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se2-wireguard", @@ -31900,9 +30835,6 @@ "ips": [ "185.195.233.66" ], - "ipsv6": [ - "2a03:1b20:4:f011::a26f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se26-wireguard", @@ -31915,9 +30847,6 @@ "ips": [ "185.195.233.67" ], - "ipsv6": [ - "2a03:1b20:4:f011::a27f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se27-wireguard", @@ -31930,9 +30859,6 @@ "ips": [ "185.195.233.68" ], - "ipsv6": [ - "2a03:1b20:4:f011::a28f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se28-wireguard", @@ -31945,9 +30871,6 @@ "ips": [ "185.65.135.222" ], - "ipsv6": [ - "2a03:1b20:4:f011::a06f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se6-wireguard", @@ -31960,9 +30883,6 @@ "ips": [ "185.65.135.223" ], - "ipsv6": [ - "2a03:1b20:4:f011::a07f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se7-wireguard", @@ -31975,9 +30895,6 @@ "ips": [ "185.65.135.224" ], - "ipsv6": [ - "2a03:1b20:4:f011::a08f" - ], "country": "Sweden", "city": "Stockholm", "hostname": "se8-wireguard", @@ -31990,9 +30907,6 @@ "ips": [ "185.213.154.70" ], - "ipsv6": [ - "2a03:1b20:5:f011::aaaf" - ], "country": "Sweden", "city": "System Transparency [BETA]", "hostname": "beta-got-1", @@ -32005,9 +30919,6 @@ "ips": [ "185.195.233.76" ], - "ipsv6": [ - "2a03:1b20:4:f011::999f" - ], "country": "Sweden", "city": "System Transparency [BETA]", "hostname": "beta-sto-1", @@ -32020,9 +30931,6 @@ "ips": [ "193.32.127.81" ], - "ipsv6": [ - "2a03:1b20:a:f011::1f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-001", @@ -32034,9 +30942,6 @@ "ips": [ "193.32.127.82" ], - "ipsv6": [ - "2a03:1b20:a:f011::2f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-002", @@ -32048,9 +30953,6 @@ "ips": [ "193.32.127.83" ], - "ipsv6": [ - "2a03:1b20:a:f011::3f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-003", @@ -32062,9 +30964,6 @@ "ips": [ "193.32.127.84" ], - "ipsv6": [ - "2a03:1b20:a:f011::4f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-004", @@ -32076,9 +30975,6 @@ "ips": [ "179.43.128.170" ], - "ipsv6": [ - "2a02:29b8:dc01:597::1f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-201", @@ -32089,9 +30985,6 @@ "ips": [ "81.17.20.34" ], - "ipsv6": [ - "2a02:29b8:dc01:1881::2f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-202", @@ -32102,9 +30995,6 @@ "ips": [ "91.193.4.2" ], - "ipsv6": [ - "2001:ac8:28:97::1f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-301", @@ -32115,9 +31005,6 @@ "ips": [ "91.193.4.18" ], - "ipsv6": [ - "2001:ac8:28:84::2f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-302", @@ -32128,9 +31015,6 @@ "ips": [ "91.193.4.34" ], - "ipsv6": [ - "2001:ac8:28:85::3f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-303", @@ -32141,9 +31025,6 @@ "ips": [ "91.193.4.50" ], - "ipsv6": [ - "2001:ac8:28:86::4f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-304", @@ -32154,9 +31035,6 @@ "ips": [ "91.193.4.82" ], - "ipsv6": [ - "2001:ac8:28:88::a10f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch10-wireguard", @@ -32168,9 +31046,6 @@ "ips": [ "91.193.4.98" ], - "ipsv6": [ - "2001:ac8:28:89::a11f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch11-wireguard", @@ -32182,9 +31057,6 @@ "ips": [ "91.193.4.114" ], - "ipsv6": [ - "2001:ac8:28:90::a12f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch12-wireguard", @@ -32196,9 +31068,6 @@ "ips": [ "91.193.4.130" ], - "ipsv6": [ - "2001:ac8:28:91::a13f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch13-wireguard", @@ -32210,9 +31079,6 @@ "ips": [ "91.193.4.146" ], - "ipsv6": [ - "2001:ac8:28:92::a14f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch14-wireguard", @@ -32224,9 +31090,6 @@ "ips": [ "91.193.4.162" ], - "ipsv6": [ - "2001:ac8:28:93::a15f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch15-wireguard", @@ -32238,9 +31101,6 @@ "ips": [ "91.193.4.178" ], - "ipsv6": [ - "2001:ac8:28:94::a16f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch16-wireguard", @@ -32252,9 +31112,6 @@ "ips": [ "91.193.4.194" ], - "ipsv6": [ - "2001:ac8:28:95::a17f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch17-wireguard", @@ -32266,9 +31123,6 @@ "ips": [ "31.7.59.250" ], - "ipsv6": [ - "2a02:29b8:dc01:1641::a02f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch2-wireguard", @@ -32280,9 +31134,6 @@ "ips": [ "193.32.127.66" ], - "ipsv6": [ - "2a03:1b20:a:f011::a01f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch5-wireguard", @@ -32295,9 +31146,6 @@ "ips": [ "193.32.127.67" ], - "ipsv6": [ - "2a03:1b20:a:f011::a02f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch6-wireguard", @@ -32310,9 +31158,6 @@ "ips": [ "193.32.127.68" ], - "ipsv6": [ - "2a03:1b20:a:f011::a03f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch7-wireguard", @@ -32325,9 +31170,6 @@ "ips": [ "193.32.127.69" ], - "ipsv6": [ - "2a03:1b20:a:f011::a04f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch8-wireguard", @@ -32340,9 +31182,6 @@ "ips": [ "193.32.127.70" ], - "ipsv6": [ - "2a03:1b20:a:f011::a05f" - ], "country": "Switzerland", "city": "Zurich", "hostname": "ch9-wireguard", @@ -32355,9 +31194,6 @@ "ips": [ "141.98.252.131" ], - "ipsv6": [ - "2a03:1b20:7:f011::1f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-001", @@ -32369,9 +31205,6 @@ "ips": [ "141.98.252.132" ], - "ipsv6": [ - "2a03:1b20:7:f011::2f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-002", @@ -32383,9 +31216,6 @@ "ips": [ "141.98.252.133" ], - "ipsv6": [ - "2a03:1b20:7:f011::3f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-003", @@ -32397,9 +31227,6 @@ "ips": [ "185.195.232.85" ], - "ipsv6": [ - "2a03:1b20:7:f011::5f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-005", @@ -32411,9 +31238,6 @@ "ips": [ "185.195.232.86" ], - "ipsv6": [ - "2a03:1b20:7:f011::6f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-006", @@ -32425,9 +31249,6 @@ "ips": [ "141.98.252.138" ], - "ipsv6": [ - "2a03:1b20:7:f011::8f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-008", @@ -32439,9 +31260,6 @@ "ips": [ "141.98.252.139" ], - "ipsv6": [ - "2a03:1b20:7:f011::9f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-009", @@ -32453,9 +31271,6 @@ "ips": [ "185.200.118.178" ], - "ipsv6": [ - "2001:ac8:31:235::1f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-101", @@ -32466,9 +31281,6 @@ "ips": [ "45.87.215.50" ], - "ipsv6": [ - "2001:ac8:31:236::2f" - ], "country": "UK", "city": "London", "hostname": "gb-lon-102", @@ -32479,9 +31291,6 @@ "ips": [ "185.195.232.66" ], - "ipsv6": [ - "2a03:1b20:7:f011::a11f" - ], "country": "UK", "city": "London", "hostname": "gb11-wireguard", @@ -32494,9 +31303,6 @@ "ips": [ "185.195.232.67" ], - "ipsv6": [ - "2a03:1b20:7:f011::a12f" - ], "country": "UK", "city": "London", "hostname": "gb12-wireguard", @@ -32509,9 +31315,6 @@ "ips": [ "185.195.232.68" ], - "ipsv6": [ - "2a03:1b20:7:f011::a13f" - ], "country": "UK", "city": "London", "hostname": "gb13-wireguard", @@ -32524,9 +31327,6 @@ "ips": [ "185.195.232.69" ], - "ipsv6": [ - "2a03:1b20:7:f011::a14f" - ], "country": "UK", "city": "London", "hostname": "gb14-wireguard", @@ -32539,9 +31339,6 @@ "ips": [ "185.195.232.70" ], - "ipsv6": [ - "2a03:1b20:7:f011::a15f" - ], "country": "UK", "city": "London", "hostname": "gb15-wireguard", @@ -32554,9 +31351,6 @@ "ips": [ "141.98.100.146" ], - "ipsv6": [ - "2001:ac8:31:237::a16f" - ], "country": "UK", "city": "London", "hostname": "gb16-wireguard", @@ -32568,9 +31362,6 @@ "ips": [ "37.120.198.146" ], - "ipsv6": [ - "2001:ac8:31:238::a17f" - ], "country": "UK", "city": "London", "hostname": "gb17-wireguard", @@ -32582,9 +31373,6 @@ "ips": [ "89.238.176.162" ], - "ipsv6": [ - "2001:ac8:31:239::a18f" - ], "country": "UK", "city": "London", "hostname": "gb18-wireguard", @@ -32596,9 +31384,6 @@ "ips": [ "89.238.176.178" ], - "ipsv6": [ - "2001:ac8:31:23a::a19f" - ], "country": "UK", "city": "London", "hostname": "gb19-wireguard", @@ -32610,9 +31395,6 @@ "ips": [ "217.138.254.98" ], - "ipsv6": [ - "2001:ac8:31:23b::a20f" - ], "country": "UK", "city": "London", "hostname": "gb20-wireguard", @@ -32624,9 +31406,6 @@ "ips": [ "185.248.85.3" ], - "ipsv6": [ - "2a0b:89c1:3::a33f" - ], "country": "UK", "city": "London", "hostname": "gb33-wireguard", @@ -32638,9 +31417,6 @@ "ips": [ "185.248.85.18" ], - "ipsv6": [ - "2a0b:89c1:3::a34f" - ], "country": "UK", "city": "London", "hostname": "gb34-wireguard", @@ -32652,9 +31428,6 @@ "ips": [ "185.248.85.33" ], - "ipsv6": [ - "2a0b:89c1:3::a35f" - ], "country": "UK", "city": "London", "hostname": "gb35-wireguard", @@ -32666,9 +31439,6 @@ "ips": [ "185.248.85.48" ], - "ipsv6": [ - "2a0b:89c1:3::a36f" - ], "country": "UK", "city": "London", "hostname": "gb36-wireguard", @@ -32680,9 +31450,6 @@ "ips": [ "141.98.252.130" ], - "ipsv6": [ - "2a03:1b20:7:f011::a01f" - ], "country": "UK", "city": "London", "hostname": "gb4-wireguard", @@ -32695,9 +31462,6 @@ "ips": [ "141.98.252.222" ], - "ipsv6": [ - "2a03:1b20:7:f011::a02f" - ], "country": "UK", "city": "London", "hostname": "gb5-wireguard", @@ -32710,9 +31474,6 @@ "ips": [ "217.151.98.68" ], - "ipsv6": [ - "2001:ac8:21:45::1f" - ], "country": "UK", "city": "Manchester", "hostname": "gb-mnc-101", @@ -32723,9 +31484,6 @@ "ips": [ "37.120.159.164" ], - "ipsv6": [ - "2001:ac8:21:1b::2f" - ], "country": "UK", "city": "Manchester", "hostname": "gb-mnc-102", @@ -32736,9 +31494,6 @@ "ips": [ "194.37.96.180" ], - "ipsv6": [ - "2001:ac8:21:34::3f" - ], "country": "UK", "city": "Manchester", "hostname": "gb-mnc-103", @@ -32749,9 +31504,6 @@ "ips": [ "89.238.132.36" ], - "ipsv6": [ - "2001:ac8:21:3::6f" - ], "country": "UK", "city": "Manchester", "hostname": "gb-mnc-106", @@ -32762,9 +31514,6 @@ "ips": [ "185.206.227.130" ], - "ipsv6": [ - "2001:ac8:21:ac::a22f" - ], "country": "UK", "city": "Manchester", "hostname": "gb22-wireguard", @@ -32776,9 +31525,6 @@ "ips": [ "194.37.96.98" ], - "ipsv6": [ - "2001:ac8:21:ae::a24f" - ], "country": "UK", "city": "Manchester", "hostname": "gb24-wireguard", @@ -32790,9 +31536,6 @@ "ips": [ "81.92.205.18" ], - "ipsv6": [ - "2001:ac8:21:af::a25f" - ], "country": "UK", "city": "Manchester", "hostname": "gb25-wireguard", @@ -32804,9 +31547,6 @@ "ips": [ "86.106.136.210" ], - "ipsv6": [ - "2001:ac8:21:b5::a26f" - ], "country": "UK", "city": "Manchester", "hostname": "gb26-wireguard", @@ -32818,9 +31558,6 @@ "ips": [ "89.238.130.66" ], - "ipsv6": [ - "2001:ac8:21:b6::a27f" - ], "country": "UK", "city": "Manchester", "hostname": "gb27-wireguard", @@ -32832,9 +31569,6 @@ "ips": [ "194.37.96.114" ], - "ipsv6": [ - "2001:ac8:21:b7::a28f" - ], "country": "UK", "city": "Manchester", "hostname": "gb28-wireguard", @@ -32846,9 +31580,6 @@ "ips": [ "81.92.206.2" ], - "ipsv6": [ - "2001:ac8:21:b8::a29f" - ], "country": "UK", "city": "Manchester", "hostname": "gb29-wireguard", @@ -32860,9 +31591,6 @@ "ips": [ "194.37.96.130" ], - "ipsv6": [ - "2001:ac8:21:b9::a30f" - ], "country": "UK", "city": "Manchester", "hostname": "gb30-wireguard", @@ -32874,9 +31602,6 @@ "ips": [ "89.238.143.226" ], - "ipsv6": [ - "2001:ac8:21:ba::a31f" - ], "country": "UK", "city": "Manchester", "hostname": "gb31-wireguard", @@ -32888,9 +31613,6 @@ "ips": [ "194.37.96.146" ], - "ipsv6": [ - "2001:ac8:21:bb::a32f" - ], "country": "UK", "city": "Manchester", "hostname": "gb32-wireguard", @@ -32902,9 +31624,6 @@ "ips": [ "198.54.135.162" ], - "ipsv6": [ - "2607:9000:9000:16::1f" - ], "country": "USA", "city": "Ashburn VA", "hostname": "us-qas-001", @@ -32915,9 +31634,6 @@ "ips": [ "198.54.135.194" ], - "ipsv6": [ - "2607:9000:9000:17::1f" - ], "country": "USA", "city": "Ashburn VA", "hostname": "us-qas-002", @@ -32928,9 +31644,6 @@ "ips": [ "198.54.135.34" ], - "ipsv6": [ - "2607:9000:9000:12::b46f" - ], "country": "USA", "city": "Ashburn VA", "hostname": "us246-wireguard", @@ -32942,9 +31655,6 @@ "ips": [ "198.54.135.66" ], - "ipsv6": [ - "2607:9000:9000:13::b47f" - ], "country": "USA", "city": "Ashburn VA", "hostname": "us247-wireguard", @@ -32956,9 +31666,6 @@ "ips": [ "198.54.135.98" ], - "ipsv6": [ - "2607:9000:9000:14::b48f" - ], "country": "USA", "city": "Ashburn VA", "hostname": "us248-wireguard", @@ -32970,9 +31677,6 @@ "ips": [ "198.54.135.130" ], - "ipsv6": [ - "2607:9000:9000:15::b49f" - ], "country": "USA", "city": "Ashburn VA", "hostname": "us249-wireguard", @@ -32984,9 +31688,6 @@ "ips": [ "66.115.180.226" ], - "ipsv6": [ - "2607:f7a0:1:d::1f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-101", @@ -32997,9 +31698,6 @@ "ips": [ "66.115.180.227" ], - "ipsv6": [ - "2607:f7a0:1:d::2f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-102", @@ -33010,9 +31708,6 @@ "ips": [ "66.115.180.228" ], - "ipsv6": [ - "2607:f7a0:1:d::3f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-103", @@ -33023,9 +31718,6 @@ "ips": [ "66.115.180.229" ], - "ipsv6": [ - "2607:f7a0:1:d::4f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-104", @@ -33036,9 +31728,6 @@ "ips": [ "66.115.180.230" ], - "ipsv6": [ - "2607:f7a0:1:d::5f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-105", @@ -33049,9 +31738,6 @@ "ips": [ "66.115.180.231" ], - "ipsv6": [ - "2607:f7a0:1:d::b67f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us167-wireguard", @@ -33063,9 +31749,6 @@ "ips": [ "66.115.180.232" ], - "ipsv6": [ - "2607:f7a0:1:d::b68f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us168-wireguard", @@ -33077,9 +31760,6 @@ "ips": [ "66.115.180.233" ], - "ipsv6": [ - "2607:f7a0:1:d::b69f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us169-wireguard", @@ -33091,9 +31771,6 @@ "ips": [ "66.115.180.234" ], - "ipsv6": [ - "2607:f7a0:1:d::b70f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us170-wireguard", @@ -33105,9 +31782,6 @@ "ips": [ "66.115.180.235" ], - "ipsv6": [ - "2607:f7a0:1:d::b71f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us171-wireguard", @@ -33119,9 +31793,6 @@ "ips": [ "66.115.180.236" ], - "ipsv6": [ - "2607:f7a0:1:d::b72f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us172-wireguard", @@ -33133,9 +31804,6 @@ "ips": [ "66.115.180.237" ], - "ipsv6": [ - "2607:f7a0:1:d::b73f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us173-wireguard", @@ -33147,9 +31815,6 @@ "ips": [ "66.115.180.238" ], - "ipsv6": [ - "2607:f7a0:1:d::b74f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us174-wireguard", @@ -33161,9 +31826,6 @@ "ips": [ "66.115.180.239" ], - "ipsv6": [ - "2607:f7a0:1:d::b75f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us175-wireguard", @@ -33175,9 +31837,6 @@ "ips": [ "66.115.180.240" ], - "ipsv6": [ - "2607:f7a0:1:d::b76f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us176-wireguard", @@ -33189,9 +31848,6 @@ "ips": [ "104.129.24.98" ], - "ipsv6": [ - "2607:fcd0:aa80:1302::b33f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us233-wireguard", @@ -33203,9 +31859,6 @@ "ips": [ "104.129.24.114" ], - "ipsv6": [ - "2607:fcd0:aa80:1303::b34f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us234-wireguard", @@ -33217,9 +31870,6 @@ "ips": [ "69.174.103.162" ], - "ipsv6": [ - "2607:fcd0:aa80:1304::b42f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us242-wireguard", @@ -33231,9 +31881,6 @@ "ips": [ "104.223.91.18" ], - "ipsv6": [ - "2607:fcd0:aa80:1305::b43f" - ], "country": "USA", "city": "Atlanta GA", "hostname": "us243-wireguard", @@ -33245,9 +31892,6 @@ "ips": [ "68.235.43.122" ], - "ipsv6": [ - "2607:9000:0:65::1f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us-chi-001", @@ -33258,9 +31902,6 @@ "ips": [ "68.235.43.10" ], - "ipsv6": [ - "2607:9000:0:51::2f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us-chi-002", @@ -33271,9 +31912,6 @@ "ips": [ "68.235.43.18" ], - "ipsv6": [ - "2607:9000:0:52::3f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us-chi-003", @@ -33284,9 +31922,6 @@ "ips": [ "68.235.43.26" ], - "ipsv6": [ - "2607:9000:0:53::4f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us-chi-004", @@ -33297,9 +31932,6 @@ "ips": [ "68.235.43.34" ], - "ipsv6": [ - "2607:9000:0:54::5f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us-chi-005", @@ -33310,9 +31942,6 @@ "ips": [ "68.235.44.2" ], - "ipsv6": [ - "2607:9000:0:67::b28f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us128-wireguard", @@ -33324,9 +31953,6 @@ "ips": [ "68.235.44.18" ], - "ipsv6": [ - "2607:9000:0:68::b29f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us129-wireguard", @@ -33338,9 +31964,6 @@ "ips": [ "68.235.44.34" ], - "ipsv6": [ - "2607:9000:0:69::b30f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us130-wireguard", @@ -33352,9 +31975,6 @@ "ips": [ "68.235.44.50" ], - "ipsv6": [ - "2607:9000:0:70::b31f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us131-wireguard", @@ -33366,9 +31986,6 @@ "ips": [ "68.235.44.66" ], - "ipsv6": [ - "2607:9000:0:71::b32f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us132-wireguard", @@ -33380,9 +31997,6 @@ "ips": [ "68.235.43.170" ], - "ipsv6": [ - "2607:9000:0:72::b33f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us133-wireguard", @@ -33394,9 +32008,6 @@ "ips": [ "68.235.43.90" ], - "ipsv6": [ - "2607:9000:0:61::a02f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us18-wireguard", @@ -33408,9 +32019,6 @@ "ips": [ "68.235.43.98" ], - "ipsv6": [ - "2607:9000:0:62::a03f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us22-wireguard", @@ -33422,9 +32030,6 @@ "ips": [ "68.235.43.106" ], - "ipsv6": [ - "2607:9000:0:63::a04f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us23-wireguard", @@ -33436,9 +32041,6 @@ "ips": [ "66.63.167.98" ], - "ipsv6": [ - "2607:fcd0:bb80:402::b31f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us231-wireguard", @@ -33450,9 +32052,6 @@ "ips": [ "66.63.167.114" ], - "ipsv6": [ - "2607:fcd0:bb80:403::b32f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us232-wireguard", @@ -33464,9 +32063,6 @@ "ips": [ "66.63.167.162" ], - "ipsv6": [ - "2607:fcd0:bb80:404::b44f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us244-wireguard", @@ -33478,9 +32074,6 @@ "ips": [ "66.63.167.146" ], - "ipsv6": [ - "2607:fcd0:bb80:405::b45f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us245-wireguard", @@ -33492,9 +32085,6 @@ "ips": [ "87.249.134.1" ], - "ipsv6": [ - "2a02:6ea0:c61f::b63f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us263-wireguard", @@ -33506,9 +32096,6 @@ "ips": [ "87.249.134.14" ], - "ipsv6": [ - "2a02:6ea0:c61f:1::b64f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us264-wireguard", @@ -33520,9 +32107,6 @@ "ips": [ "87.249.134.27" ], - "ipsv6": [ - "2a02:6ea0:c61f:2::b65f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us265-wireguard", @@ -33534,9 +32118,6 @@ "ips": [ "68.235.43.82" ], - "ipsv6": [ - "2607:9000:0:60::a01f" - ], "country": "USA", "city": "Chicago IL", "hostname": "us4-wireguard", @@ -33548,9 +32129,6 @@ "ips": [ "174.127.113.3" ], - "ipsv6": [ - "2606:2e00:8007:1::1f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-101", @@ -33561,9 +32139,6 @@ "ips": [ "174.127.113.4" ], - "ipsv6": [ - "2606:2e00:8007:1::2f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-102", @@ -33574,9 +32149,6 @@ "ips": [ "174.127.113.5" ], - "ipsv6": [ - "2606:2e00:8007:1::3f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-103", @@ -33587,9 +32159,6 @@ "ips": [ "174.127.113.6" ], - "ipsv6": [ - "2606:2e00:8007:1::4f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-104", @@ -33600,9 +32169,6 @@ "ips": [ "174.127.113.7" ], - "ipsv6": [ - "2606:2e00:8007:1::5f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-105", @@ -33613,9 +32179,6 @@ "ips": [ "193.27.13.178" ], - "ipsv6": [ - "2001:ac8:9a:10::1f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-201", @@ -33626,9 +32189,6 @@ "ips": [ "193.27.13.34" ], - "ipsv6": [ - "2001:ac8:9a:1::2f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-202", @@ -33639,9 +32199,6 @@ "ips": [ "193.27.13.50" ], - "ipsv6": [ - "2001:ac8:9a:2::3f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-203", @@ -33652,9 +32209,6 @@ "ips": [ "193.27.13.66" ], - "ipsv6": [ - "2001:ac8:9a:3::4f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us-dal-204", @@ -33665,9 +32219,6 @@ "ips": [ "193.27.13.98" ], - "ipsv6": [ - "2001:ac8:9a:5::b43f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us143-wireguard", @@ -33679,9 +32230,6 @@ "ips": [ "193.27.13.114" ], - "ipsv6": [ - "2001:ac8:9a:6::b44f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us144-wireguard", @@ -33693,9 +32241,6 @@ "ips": [ "193.27.13.130" ], - "ipsv6": [ - "2001:ac8:9a:7::b45f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us145-wireguard", @@ -33707,9 +32252,6 @@ "ips": [ "193.27.13.146" ], - "ipsv6": [ - "2001:ac8:9a:8::b46f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us146-wireguard", @@ -33721,9 +32263,6 @@ "ips": [ "193.27.13.162" ], - "ipsv6": [ - "2001:ac8:9a:9::b47f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us147-wireguard", @@ -33735,9 +32274,6 @@ "ips": [ "193.27.13.194" ], - "ipsv6": [ - "2001:ac8:9a:11::b48f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us148-wireguard", @@ -33749,9 +32285,6 @@ "ips": [ "193.27.13.210" ], - "ipsv6": [ - "2001:ac8:9a:12::b49f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us149-wireguard", @@ -33763,9 +32296,6 @@ "ips": [ "193.27.13.226" ], - "ipsv6": [ - "2001:ac8:9a:13::b50f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us150-wireguard", @@ -33777,9 +32307,6 @@ "ips": [ "193.27.13.242" ], - "ipsv6": [ - "2001:ac8:9a:14::b51f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us151-wireguard", @@ -33791,9 +32318,6 @@ "ips": [ "194.110.112.2" ], - "ipsv6": [ - "2001:ac8:9a:15::b52f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us152-wireguard", @@ -33805,9 +32329,6 @@ "ips": [ "194.110.112.18" ], - "ipsv6": [ - "2001:ac8:9a:16::b53f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us153-wireguard", @@ -33819,9 +32340,6 @@ "ips": [ "194.110.112.34" ], - "ipsv6": [ - "2001:ac8:9a:17::b54f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us154-wireguard", @@ -33833,9 +32351,6 @@ "ips": [ "50.2.184.146" ], - "ipsv6": [ - "2607:ff28:800f:10::a02f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us17-wireguard", @@ -33847,9 +32362,6 @@ "ips": [ "96.44.191.130" ], - "ipsv6": [ - "2607:fcd0:da80:1803::b35f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us235-wireguard", @@ -33861,9 +32373,6 @@ "ips": [ "96.44.191.146" ], - "ipsv6": [ - "2607:fcd0:da80:1804::b36f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us236-wireguard", @@ -33875,9 +32384,6 @@ "ips": [ "96.44.189.98" ], - "ipsv6": [ - "2607:fcd0:da80:1801::c40f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us240-wireguard", @@ -33889,9 +32395,6 @@ "ips": [ "174.127.113.8" ], - "ipsv6": [ - "2606:2e00:8007:1::a30f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us30-wireguard", @@ -33903,9 +32406,6 @@ "ips": [ "174.127.113.9" ], - "ipsv6": [ - "2606:2e00:8007:1::a31f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us31-wireguard", @@ -33917,9 +32417,6 @@ "ips": [ "174.127.113.10" ], - "ipsv6": [ - "2606:2e00:8007:1::a32f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us32-wireguard", @@ -33931,9 +32428,6 @@ "ips": [ "174.127.113.11" ], - "ipsv6": [ - "2606:2e00:8007:1::a33f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us33-wireguard", @@ -33945,9 +32439,6 @@ "ips": [ "174.127.113.12" ], - "ipsv6": [ - "2606:2e00:8007:1::a34f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us34-wireguard", @@ -33959,9 +32450,6 @@ "ips": [ "174.127.113.13" ], - "ipsv6": [ - "2606:2e00:8007:1::a35f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us35-wireguard", @@ -33973,9 +32461,6 @@ "ips": [ "174.127.113.14" ], - "ipsv6": [ - "2606:2e00:8007:1::a36f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us36-wireguard", @@ -33987,9 +32472,6 @@ "ips": [ "174.127.113.15" ], - "ipsv6": [ - "2606:2e00:8007:1::a37f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us37-wireguard", @@ -34001,9 +32483,6 @@ "ips": [ "174.127.113.16" ], - "ipsv6": [ - "2606:2e00:8007:1::a38f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us38-wireguard", @@ -34015,9 +32494,6 @@ "ips": [ "174.127.113.17" ], - "ipsv6": [ - "2606:2e00:8007:1::a39f" - ], "country": "USA", "city": "Dallas TX", "hostname": "us39-wireguard", @@ -34029,9 +32505,6 @@ "ips": [ "198.54.128.74" ], - "ipsv6": [ - "2607:9000:2000:18::1f" - ], "country": "USA", "city": "Denver CO", "hostname": "us-den-001", @@ -34042,9 +32515,6 @@ "ips": [ "198.54.128.66" ], - "ipsv6": [ - "2607:9000:2000:17::2f" - ], "country": "USA", "city": "Denver CO", "hostname": "us-den-002", @@ -34055,9 +32525,6 @@ "ips": [ "198.54.128.106" ], - "ipsv6": [ - "2607:9000:2000:22::3f" - ], "country": "USA", "city": "Denver CO", "hostname": "us-den-003", @@ -34068,9 +32535,6 @@ "ips": [ "198.54.128.82" ], - "ipsv6": [ - "2607:9000:2000:19::a10f" - ], "country": "USA", "city": "Denver CO", "hostname": "us10-wireguard", @@ -34082,9 +32546,6 @@ "ips": [ "198.54.128.90" ], - "ipsv6": [ - "2607:9000:2000:20::a11f" - ], "country": "USA", "city": "Denver CO", "hostname": "us11-wireguard", @@ -34096,9 +32557,6 @@ "ips": [ "198.54.128.98" ], - "ipsv6": [ - "2607:9000:2000:25::a12f" - ], "country": "USA", "city": "Denver CO", "hostname": "us12-wireguard", @@ -34110,9 +32568,6 @@ "ips": [ "37.19.210.1" ], - "ipsv6": [ - "2a02:6ea0:d70a::b57f" - ], "country": "USA", "city": "Denver CO", "hostname": "us257-wireguard", @@ -34124,9 +32579,6 @@ "ips": [ "37.19.210.14" ], - "ipsv6": [ - "2a02:6ea0:d70a:1::b58f" - ], "country": "USA", "city": "Denver CO", "hostname": "us258-wireguard", @@ -34138,9 +32590,6 @@ "ips": [ "37.19.210.27" ], - "ipsv6": [ - "2a02:6ea0:d70a:2::b59f" - ], "country": "USA", "city": "Denver CO", "hostname": "us259-wireguard", @@ -34152,9 +32601,6 @@ "ips": [ "198.54.128.58" ], - "ipsv6": [ - "2607:9000:2000:16::a44f" - ], "country": "USA", "city": "Denver CO", "hostname": "us44-wireguard", @@ -34166,9 +32612,6 @@ "ips": [ "198.54.128.50" ], - "ipsv6": [ - "2607:9000:2000:15::a45f" - ], "country": "USA", "city": "Denver CO", "hostname": "us45-wireguard", @@ -34180,9 +32623,6 @@ "ips": [ "198.54.128.42" ], - "ipsv6": [ - "2607:9000:2000:14::a46f" - ], "country": "USA", "city": "Denver CO", "hostname": "us46-wireguard", @@ -34194,9 +32634,6 @@ "ips": [ "198.54.128.34" ], - "ipsv6": [ - "2607:9000:2000:13::a47f" - ], "country": "USA", "city": "Denver CO", "hostname": "us47-wireguard", @@ -34208,9 +32645,6 @@ "ips": [ "37.19.221.130" ], - "ipsv6": [ - "2a02:6ea0:e001::b53f" - ], "country": "USA", "city": "Houston TX", "hostname": "us253-wireguard", @@ -34222,9 +32656,6 @@ "ips": [ "37.19.221.143" ], - "ipsv6": [ - "2a02:6ea0:e001:1::b54f" - ], "country": "USA", "city": "Houston TX", "hostname": "us254-wireguard", @@ -34236,9 +32667,6 @@ "ips": [ "37.19.221.156" ], - "ipsv6": [ - "2a02:6ea0:e001:2::b55f" - ], "country": "USA", "city": "Houston TX", "hostname": "us255-wireguard", @@ -34250,9 +32678,6 @@ "ips": [ "37.19.221.169" ], - "ipsv6": [ - "2a02:6ea0:e001:3::b56f" - ], "country": "USA", "city": "Houston TX", "hostname": "us256-wireguard", @@ -34264,9 +32689,6 @@ "ips": [ "89.46.114.15" ], - "ipsv6": [ - "2a0d:5600:8:e::1f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-001", @@ -34277,9 +32699,6 @@ "ips": [ "89.46.114.28" ], - "ipsv6": [ - "2a0d:5600:8:e::2f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-002", @@ -34290,9 +32709,6 @@ "ips": [ "89.46.114.41" ], - "ipsv6": [ - "2a0d:5600:8:e::3f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-003", @@ -34303,9 +32719,6 @@ "ips": [ "89.46.114.54" ], - "ipsv6": [ - "2a0d:5600:8:e::4f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-004", @@ -34316,9 +32729,6 @@ "ips": [ "89.46.114.67" ], - "ipsv6": [ - "2a0d:5600:8:e::5f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-005", @@ -34329,9 +32739,6 @@ "ips": [ "89.46.114.80" ], - "ipsv6": [ - "2a0d:5600:8:e::6f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-006", @@ -34342,9 +32749,6 @@ "ips": [ "89.46.114.93" ], - "ipsv6": [ - "2a0d:5600:8:e::7f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-007", @@ -34355,9 +32759,6 @@ "ips": [ "89.46.114.106" ], - "ipsv6": [ - "2a0d:5600:8:e::8f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-008", @@ -34368,9 +32769,6 @@ "ips": [ "89.46.114.119" ], - "ipsv6": [ - "2a0d:5600:8:e::9f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-009", @@ -34381,9 +32779,6 @@ "ips": [ "89.46.114.132" ], - "ipsv6": [ - "2a0d:5600:8:e::10f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-010", @@ -34394,9 +32789,6 @@ "ips": [ "89.46.114.145" ], - "ipsv6": [ - "2a0d:5600:8:e::11f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-011", @@ -34407,9 +32799,6 @@ "ips": [ "89.46.114.158" ], - "ipsv6": [ - "2a0d:5600:8:e::12f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-012", @@ -34420,9 +32809,6 @@ "ips": [ "89.46.114.171" ], - "ipsv6": [ - "2a0d:5600:8:e::13f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-013", @@ -34433,9 +32819,6 @@ "ips": [ "89.46.114.184" ], - "ipsv6": [ - "2a0d:5600:8:e::14f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-014", @@ -34446,9 +32829,6 @@ "ips": [ "89.46.114.197" ], - "ipsv6": [ - "2a0d:5600:8:e::15f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-015", @@ -34459,9 +32839,6 @@ "ips": [ "198.54.129.82" ], - "ipsv6": [ - "2607:9000:3000:18::1f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-101", @@ -34472,9 +32849,6 @@ "ips": [ "198.54.129.74" ], - "ipsv6": [ - "2607:9000:3000:17::2f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-102", @@ -34485,9 +32859,6 @@ "ips": [ "204.152.216.98" ], - "ipsv6": [ - "2607:fcd0:100:7c01::b29f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us229-wireguard", @@ -34499,9 +32870,6 @@ "ips": [ "204.152.216.114" ], - "ipsv6": [ - "2607:fcd0:100:7c02::b30f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us230-wireguard", @@ -34513,9 +32881,6 @@ "ips": [ "204.152.215.242" ], - "ipsv6": [ - "2607:fcd0:100:7c03::c39f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us239-wireguard", @@ -34527,9 +32892,6 @@ "ips": [ "198.54.129.66" ], - "ipsv6": [ - "2607:9000:3000:16::a48f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us48-wireguard", @@ -34541,9 +32903,6 @@ "ips": [ "198.54.129.58" ], - "ipsv6": [ - "2607:9000:3000:15::a49f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us49-wireguard", @@ -34555,9 +32914,6 @@ "ips": [ "198.54.129.50" ], - "ipsv6": [ - "2607:9000:3000:14::a50f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us50-wireguard", @@ -34569,9 +32925,6 @@ "ips": [ "198.54.129.42" ], - "ipsv6": [ - "2607:9000:3000:13::a51f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us51-wireguard", @@ -34583,9 +32936,6 @@ "ips": [ "89.46.114.236" ], - "ipsv6": [ - "2a0d:5600:8:f::a52f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us52-wireguard", @@ -34597,9 +32947,6 @@ "ips": [ "89.45.90.2" ], - "ipsv6": [ - "2a0d:5600:8:f::a53f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us53-wireguard", @@ -34611,9 +32958,6 @@ "ips": [ "89.45.90.15" ], - "ipsv6": [ - "2a0d:5600:8:f::a54f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us54-wireguard", @@ -34625,9 +32969,6 @@ "ips": [ "89.45.90.28" ], - "ipsv6": [ - "2a0d:5600:8:1e::a55f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us55-wireguard", @@ -34639,9 +32980,6 @@ "ips": [ "89.45.90.41" ], - "ipsv6": [ - "2a0d:5600:8:1e::a56f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us56-wireguard", @@ -34653,9 +32991,6 @@ "ips": [ "89.45.90.54" ], - "ipsv6": [ - "2a0d:5600:8:1e::a57f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us57-wireguard", @@ -34667,9 +33002,6 @@ "ips": [ "89.45.90.67" ], - "ipsv6": [ - "2a0d:5600:8:1f::a58f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us58-wireguard", @@ -34681,9 +33013,6 @@ "ips": [ "89.45.90.80" ], - "ipsv6": [ - "2a0d:5600:8:1f::a59f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us59-wireguard", @@ -34695,9 +33024,6 @@ "ips": [ "89.45.90.93" ], - "ipsv6": [ - "2a0d:5600:8:21::a60f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us60-wireguard", @@ -34709,9 +33035,6 @@ "ips": [ "89.45.90.106" ], - "ipsv6": [ - "2a0d:5600:8:21::a61f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us61-wireguard", @@ -34723,9 +33046,6 @@ "ips": [ "89.45.90.119" ], - "ipsv6": [ - "2a0d:5600:8:21::a62f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us62-wireguard", @@ -34737,9 +33057,6 @@ "ips": [ "89.45.90.132" ], - "ipsv6": [ - "2a0d:5600:8:28::a63f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us63-wireguard", @@ -34751,9 +33068,6 @@ "ips": [ "89.45.90.145" ], - "ipsv6": [ - "2a0d:5600:8:28::a64f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us64-wireguard", @@ -34765,9 +33079,6 @@ "ips": [ "89.45.90.158" ], - "ipsv6": [ - "2a0d:5600:8:28::a65f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us65-wireguard", @@ -34779,9 +33090,6 @@ "ips": [ "89.45.90.171" ], - "ipsv6": [ - "2a0d:5600:8:29::a66f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us66-wireguard", @@ -34793,9 +33101,6 @@ "ips": [ "89.45.90.184" ], - "ipsv6": [ - "2a0d:5600:8:29::a67f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us67-wireguard", @@ -34807,9 +33112,6 @@ "ips": [ "89.45.90.197" ], - "ipsv6": [ - "2a0d:5600:8:29::a68f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us68-wireguard", @@ -34821,9 +33123,6 @@ "ips": [ "89.45.90.210" ], - "ipsv6": [ - "2a0d:5600:8:3f::a69f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us69-wireguard", @@ -34835,9 +33134,6 @@ "ips": [ "89.45.90.223" ], - "ipsv6": [ - "2a0d:5600:8:3f::a70f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us70-wireguard", @@ -34849,9 +33145,6 @@ "ips": [ "89.45.90.236" ], - "ipsv6": [ - "2a0d:5600:8:3f::a71f" - ], "country": "USA", "city": "Los Angeles CA", "hostname": "us71-wireguard", @@ -34863,9 +33156,6 @@ "ips": [ "193.27.12.18" ], - "ipsv6": [ - "2a0d:5600:6:ad7::1f" - ], "country": "USA", "city": "Miami FL", "hostname": "us-mia-201", @@ -34876,9 +33166,6 @@ "ips": [ "193.27.12.2" ], - "ipsv6": [ - "2a0d:5600:6:ad6::2f" - ], "country": "USA", "city": "Miami FL", "hostname": "us-mia-202", @@ -34889,9 +33176,6 @@ "ips": [ "94.198.42.50" ], - "ipsv6": [ - "2a0d:5600:6:33::3f" - ], "country": "USA", "city": "Miami FL", "hostname": "us-mia-203", @@ -34902,9 +33186,6 @@ "ips": [ "94.198.42.66" ], - "ipsv6": [ - "2a0d:5600:6:34::4f" - ], "country": "USA", "city": "Miami FL", "hostname": "us-mia-204", @@ -34915,9 +33196,6 @@ "ips": [ "94.198.42.82" ], - "ipsv6": [ - "2a0d:5600:6:35::5f" - ], "country": "USA", "city": "Miami FL", "hostname": "us-mia-205", @@ -34928,9 +33206,6 @@ "ips": [ "94.198.42.98" ], - "ipsv6": [ - "2a0d:5600:6:36::6f" - ], "country": "USA", "city": "Miami FL", "hostname": "us-mia-206", @@ -34941,9 +33216,6 @@ "ips": [ "94.198.42.114" ], - "ipsv6": [ - "2a0d:5600:6:37::b55f" - ], "country": "USA", "city": "Miami FL", "hostname": "us155-wireguard", @@ -34955,9 +33227,6 @@ "ips": [ "94.198.42.130" ], - "ipsv6": [ - "2a0d:5600:6:38::b56f" - ], "country": "USA", "city": "Miami FL", "hostname": "us156-wireguard", @@ -34969,9 +33238,6 @@ "ips": [ "94.198.42.146" ], - "ipsv6": [ - "2a0d:5600:6:39::b57f" - ], "country": "USA", "city": "Miami FL", "hostname": "us157-wireguard", @@ -34983,9 +33249,6 @@ "ips": [ "94.198.42.162" ], - "ipsv6": [ - "2a0d:5600:6:40::b58f" - ], "country": "USA", "city": "Miami FL", "hostname": "us158-wireguard", @@ -34997,9 +33260,6 @@ "ips": [ "94.198.42.178" ], - "ipsv6": [ - "2a0d:5600:6:41::b59f" - ], "country": "USA", "city": "Miami FL", "hostname": "us159-wireguard", @@ -35011,9 +33271,6 @@ "ips": [ "94.198.42.194" ], - "ipsv6": [ - "2a0d:5600:6:42::b60f" - ], "country": "USA", "city": "Miami FL", "hostname": "us160-wireguard", @@ -35025,9 +33282,6 @@ "ips": [ "94.198.42.210" ], - "ipsv6": [ - "2a0d:5600:6:43::b61f" - ], "country": "USA", "city": "Miami FL", "hostname": "us161-wireguard", @@ -35039,9 +33293,6 @@ "ips": [ "94.198.42.226" ], - "ipsv6": [ - "2a0d:5600:6:44::b62f" - ], "country": "USA", "city": "Miami FL", "hostname": "us162-wireguard", @@ -35053,9 +33304,6 @@ "ips": [ "94.198.42.242" ], - "ipsv6": [ - "2a0d:5600:6:45::b63f" - ], "country": "USA", "city": "Miami FL", "hostname": "us163-wireguard", @@ -35067,9 +33315,6 @@ "ips": [ "193.27.12.146" ], - "ipsv6": [ - "2a0d:5600:6:46::b64f" - ], "country": "USA", "city": "Miami FL", "hostname": "us164-wireguard", @@ -35081,9 +33326,6 @@ "ips": [ "89.38.227.210" ], - "ipsv6": [ - "2a0d:5600:6:47::b65f" - ], "country": "USA", "city": "Miami FL", "hostname": "us165-wireguard", @@ -35095,9 +33337,6 @@ "ips": [ "89.38.227.226" ], - "ipsv6": [ - "2a0d:5600:6:48::b66f" - ], "country": "USA", "city": "Miami FL", "hostname": "us166-wireguard", @@ -35109,9 +33348,6 @@ "ips": [ "96.47.237.2" ], - "ipsv6": [ - "2607:ff48:aa81:2602::b25f" - ], "country": "USA", "city": "Miami FL", "hostname": "us225-wireguard", @@ -35123,9 +33359,6 @@ "ips": [ "96.47.237.18" ], - "ipsv6": [ - "2607:ff48:aa81:2603::b26f" - ], "country": "USA", "city": "Miami FL", "hostname": "us226-wireguard", @@ -35137,9 +33370,6 @@ "ips": [ "45.134.142.193" ], - "ipsv6": [ - "2a02:6ea0:cc1f::b60f" - ], "country": "USA", "city": "Miami FL", "hostname": "us260-wireguard", @@ -35151,9 +33381,6 @@ "ips": [ "45.134.142.206" ], - "ipsv6": [ - "2a02:6ea0:cc1f:1::b61f" - ], "country": "USA", "city": "Miami FL", "hostname": "us261-wireguard", @@ -35165,9 +33392,6 @@ "ips": [ "45.134.142.219" ], - "ipsv6": [ - "2a02:6ea0:cc1f:2::b62f" - ], "country": "USA", "city": "Miami FL", "hostname": "us262-wireguard", @@ -35179,9 +33403,6 @@ "ips": [ "107.182.226.206" ], - "ipsv6": [ - "2606:2e00:8003:13::6f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-101", @@ -35192,9 +33413,6 @@ "ips": [ "107.182.226.218" ], - "ipsv6": [ - "2606:2e00:8003:13::7f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-102", @@ -35205,9 +33423,6 @@ "ips": [ "89.46.62.15" ], - "ipsv6": [ - "2a0d:5600:24:a71::1f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-201", @@ -35218,9 +33433,6 @@ "ips": [ "89.46.62.28" ], - "ipsv6": [ - "2a0d:5600:24:a72::2f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-202", @@ -35231,9 +33443,6 @@ "ips": [ "89.46.62.41" ], - "ipsv6": [ - "2a0d:5600:24:a73::3f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-203", @@ -35244,9 +33453,6 @@ "ips": [ "89.46.62.54" ], - "ipsv6": [ - "2a0d:5600:24:a74::4f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-204", @@ -35257,9 +33463,6 @@ "ips": [ "89.46.62.67" ], - "ipsv6": [ - "2a0d:5600:24:a75::5f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-205", @@ -35270,9 +33473,6 @@ "ips": [ "89.46.62.80" ], - "ipsv6": [ - "2a0d:5600:24:a76::6f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-206", @@ -35283,9 +33483,6 @@ "ips": [ "89.46.62.93" ], - "ipsv6": [ - "2a0d:5600:24:a77::7f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-207", @@ -35296,9 +33493,6 @@ "ips": [ "89.46.62.106" ], - "ipsv6": [ - "2a0d:5600:24:a78::8f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-208", @@ -35309,9 +33503,6 @@ "ips": [ "89.46.62.119" ], - "ipsv6": [ - "2a0d:5600:24:a79::9f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-209", @@ -35322,9 +33513,6 @@ "ips": [ "86.106.121.15" ], - "ipsv6": [ - "2a0d:5600:24:a99::11f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-211", @@ -35335,9 +33523,6 @@ "ips": [ "86.106.121.28" ], - "ipsv6": [ - "2a0d:5600:24:a9a::12f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-212", @@ -35348,9 +33533,6 @@ "ips": [ "86.106.121.41" ], - "ipsv6": [ - "2a0d:5600:24:a9b::13f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-213", @@ -35361,9 +33543,6 @@ "ips": [ "86.106.121.54" ], - "ipsv6": [ - "2a0d:5600:24:a9c::14f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-214", @@ -35374,9 +33553,6 @@ "ips": [ "86.106.121.67" ], - "ipsv6": [ - "2a0d:5600:24:a9d::15f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-215", @@ -35387,9 +33563,6 @@ "ips": [ "86.106.121.80" ], - "ipsv6": [ - "2a0d:5600:24:a9e::16f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-216", @@ -35400,9 +33573,6 @@ "ips": [ "86.106.121.93" ], - "ipsv6": [ - "2a0d:5600:24:a9f::17f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-217", @@ -35413,9 +33583,6 @@ "ips": [ "86.106.121.106" ], - "ipsv6": [ - "2a0d:5600:24:aa1::18f" - ], "country": "USA", "city": "New York NY", "hostname": "us-nyc-218", @@ -35426,9 +33593,6 @@ "ips": [ "86.106.121.158" ], - "ipsv6": [ - "2a0d:5600:24:aa5::b01f" - ], "country": "USA", "city": "New York NY", "hostname": "us101-wireguard", @@ -35440,9 +33604,6 @@ "ips": [ "86.106.121.171" ], - "ipsv6": [ - "2a0d:5600:24:aa6::b02f" - ], "country": "USA", "city": "New York NY", "hostname": "us102-wireguard", @@ -35454,9 +33615,6 @@ "ips": [ "86.106.121.184" ], - "ipsv6": [ - "2a0d:5600:24:aa7::b03f" - ], "country": "USA", "city": "New York NY", "hostname": "us103-wireguard", @@ -35468,9 +33626,6 @@ "ips": [ "86.106.121.197" ], - "ipsv6": [ - "2a0d:5600:24:aa8::b04f" - ], "country": "USA", "city": "New York NY", "hostname": "us104-wireguard", @@ -35482,9 +33637,6 @@ "ips": [ "86.106.121.210" ], - "ipsv6": [ - "2a0d:5600:24:aa9::b05f" - ], "country": "USA", "city": "New York NY", "hostname": "us105-wireguard", @@ -35496,9 +33648,6 @@ "ips": [ "86.106.121.223" ], - "ipsv6": [ - "2a0d:5600:24:aaa::b06f" - ], "country": "USA", "city": "New York NY", "hostname": "us106-wireguard", @@ -35510,9 +33659,6 @@ "ips": [ "86.106.121.236" ], - "ipsv6": [ - "2a0d:5600:24:aab::b07f" - ], "country": "USA", "city": "New York NY", "hostname": "us107-wireguard", @@ -35524,9 +33670,6 @@ "ips": [ "86.106.121.249" ], - "ipsv6": [ - "2a0d:5600:24:aac::b08f" - ], "country": "USA", "city": "New York NY", "hostname": "us108-wireguard", @@ -35538,9 +33681,6 @@ "ips": [ "89.45.224.2" ], - "ipsv6": [ - "2a0d:5600:24:aad::b09f" - ], "country": "USA", "city": "New York NY", "hostname": "us109-wireguard", @@ -35552,9 +33692,6 @@ "ips": [ "89.45.224.15" ], - "ipsv6": [ - "2a0d:5600:24:aae::b10f" - ], "country": "USA", "city": "New York NY", "hostname": "us110-wireguard", @@ -35566,9 +33703,6 @@ "ips": [ "89.45.224.28" ], - "ipsv6": [ - "2a0d:5600:24:aaf::b11f" - ], "country": "USA", "city": "New York NY", "hostname": "us111-wireguard", @@ -35580,9 +33714,6 @@ "ips": [ "89.45.224.41" ], - "ipsv6": [ - "2a0d:5600:24:ab1::b12f" - ], "country": "USA", "city": "New York NY", "hostname": "us112-wireguard", @@ -35594,9 +33725,6 @@ "ips": [ "89.45.224.54" ], - "ipsv6": [ - "2a0d:5600:24:ab2::b13f" - ], "country": "USA", "city": "New York NY", "hostname": "us113-wireguard", @@ -35608,9 +33736,6 @@ "ips": [ "89.45.224.67" ], - "ipsv6": [ - "2a0d:5600:24:ab3::b14f" - ], "country": "USA", "city": "New York NY", "hostname": "us114-wireguard", @@ -35622,9 +33747,6 @@ "ips": [ "89.45.224.80" ], - "ipsv6": [ - "2a0d:5600:24:ab4::b15f" - ], "country": "USA", "city": "New York NY", "hostname": "us115-wireguard", @@ -35636,9 +33758,6 @@ "ips": [ "89.45.224.93" ], - "ipsv6": [ - "2a0d:5600:24:ab5::b16f" - ], "country": "USA", "city": "New York NY", "hostname": "us116-wireguard", @@ -35650,9 +33769,6 @@ "ips": [ "89.45.224.106" ], - "ipsv6": [ - "2a0d:5600:24:ab6::b17f" - ], "country": "USA", "city": "New York NY", "hostname": "us117-wireguard", @@ -35664,9 +33780,6 @@ "ips": [ "89.45.224.119" ], - "ipsv6": [ - "2a0d:5600:24:ab7::b18f" - ], "country": "USA", "city": "New York NY", "hostname": "us118-wireguard", @@ -35678,9 +33791,6 @@ "ips": [ "89.45.224.132" ], - "ipsv6": [ - "2a0d:5600:24:ab8::b19f" - ], "country": "USA", "city": "New York NY", "hostname": "us119-wireguard", @@ -35692,9 +33802,6 @@ "ips": [ "89.45.224.145" ], - "ipsv6": [ - "2a0d:5600:24:ab9::b20f" - ], "country": "USA", "city": "New York NY", "hostname": "us120-wireguard", @@ -35706,9 +33813,6 @@ "ips": [ "89.45.224.158" ], - "ipsv6": [ - "2a0d:5600:24:aba::b21f" - ], "country": "USA", "city": "New York NY", "hostname": "us121-wireguard", @@ -35720,9 +33824,6 @@ "ips": [ "89.45.224.171" ], - "ipsv6": [ - "2a0d:5600:24:abb::b22f" - ], "country": "USA", "city": "New York NY", "hostname": "us122-wireguard", @@ -35734,9 +33835,6 @@ "ips": [ "89.45.224.184" ], - "ipsv6": [ - "2a0d:5600:24:abc::b23f" - ], "country": "USA", "city": "New York NY", "hostname": "us123-wireguard", @@ -35748,9 +33846,6 @@ "ips": [ "89.45.224.197" ], - "ipsv6": [ - "2a0d:5600:24:abd::b24f" - ], "country": "USA", "city": "New York NY", "hostname": "us124-wireguard", @@ -35762,9 +33857,6 @@ "ips": [ "89.45.224.210" ], - "ipsv6": [ - "2a0d:5600:24:abe::b25f" - ], "country": "USA", "city": "New York NY", "hostname": "us125-wireguard", @@ -35776,9 +33868,6 @@ "ips": [ "89.45.224.223" ], - "ipsv6": [ - "2a0d:5600:24:abf::b26f" - ], "country": "USA", "city": "New York NY", "hostname": "us126-wireguard", @@ -35790,9 +33879,6 @@ "ips": [ "89.45.224.236" ], - "ipsv6": [ - "2a0d:5600:24:ac1::b27f" - ], "country": "USA", "city": "New York NY", "hostname": "us127-wireguard", @@ -35804,9 +33890,6 @@ "ips": [ "143.244.47.65" ], - "ipsv6": [ - "2a02:6ea0:c43f::b50f" - ], "country": "USA", "city": "New York NY", "hostname": "us250-wireguard", @@ -35818,9 +33901,6 @@ "ips": [ "143.244.47.78" ], - "ipsv6": [ - "2a02:6ea0:c43f:1::b51f" - ], "country": "USA", "city": "New York NY", "hostname": "us251-wireguard", @@ -35832,9 +33912,6 @@ "ips": [ "143.244.47.91" ], - "ipsv6": [ - "2a02:6ea0:c43f:2::b52f" - ], "country": "USA", "city": "New York NY", "hostname": "us252-wireguard", @@ -35846,9 +33923,6 @@ "ips": [ "89.46.62.145" ], - "ipsv6": [ - "2a0d:5600:24:a7b::a72f" - ], "country": "USA", "city": "New York NY", "hostname": "us72-wireguard", @@ -35860,9 +33934,6 @@ "ips": [ "89.46.62.158" ], - "ipsv6": [ - "2a0d:5600:24:a7c::a73f" - ], "country": "USA", "city": "New York NY", "hostname": "us73-wireguard", @@ -35874,9 +33945,6 @@ "ips": [ "89.46.62.171" ], - "ipsv6": [ - "2a0d:5600:24:a7d::a74f" - ], "country": "USA", "city": "New York NY", "hostname": "us74-wireguard", @@ -35888,9 +33956,6 @@ "ips": [ "89.46.62.184" ], - "ipsv6": [ - "2a0d:5600:24:a7e::a75f" - ], "country": "USA", "city": "New York NY", "hostname": "us75-wireguard", @@ -35902,9 +33967,6 @@ "ips": [ "89.46.62.197" ], - "ipsv6": [ - "2a0d:5600:24:a7f::a76f" - ], "country": "USA", "city": "New York NY", "hostname": "us76-wireguard", @@ -35916,9 +33978,6 @@ "ips": [ "89.46.62.210" ], - "ipsv6": [ - "2a0d:5600:24:a80::a77f" - ], "country": "USA", "city": "New York NY", "hostname": "us77-wireguard", @@ -35930,9 +33989,6 @@ "ips": [ "89.46.62.223" ], - "ipsv6": [ - "2a0d:5600:24:a81::a78f" - ], "country": "USA", "city": "New York NY", "hostname": "us78-wireguard", @@ -35944,9 +34000,6 @@ "ips": [ "89.46.62.236" ], - "ipsv6": [ - "2a0d:5600:24:a82::a79f" - ], "country": "USA", "city": "New York NY", "hostname": "us79-wireguard", @@ -35958,9 +34011,6 @@ "ips": [ "83.143.246.98" ], - "ipsv6": [ - "2a0d:5600:24:a83::a80f" - ], "country": "USA", "city": "New York NY", "hostname": "us80-wireguard", @@ -35972,9 +34022,6 @@ "ips": [ "86.106.143.2" ], - "ipsv6": [ - "2a0d:5600:24:a84::a81f" - ], "country": "USA", "city": "New York NY", "hostname": "us81-wireguard", @@ -35986,9 +34033,6 @@ "ips": [ "86.106.143.15" ], - "ipsv6": [ - "2a0d:5600:24:a85::a82f" - ], "country": "USA", "city": "New York NY", "hostname": "us82-wireguard", @@ -36000,9 +34044,6 @@ "ips": [ "86.106.143.28" ], - "ipsv6": [ - "2a0d:5600:24:a86::a83f" - ], "country": "USA", "city": "New York NY", "hostname": "us83-wireguard", @@ -36014,9 +34055,6 @@ "ips": [ "86.106.143.41" ], - "ipsv6": [ - "2a0d:5600:24:a87::a84f" - ], "country": "USA", "city": "New York NY", "hostname": "us84-wireguard", @@ -36028,9 +34066,6 @@ "ips": [ "86.106.143.54" ], - "ipsv6": [ - "2a0d:5600:24:a88::a85f" - ], "country": "USA", "city": "New York NY", "hostname": "us85-wireguard", @@ -36042,9 +34077,6 @@ "ips": [ "86.106.143.67" ], - "ipsv6": [ - "2a0d:5600:24:a89::a86f" - ], "country": "USA", "city": "New York NY", "hostname": "us86-wireguard", @@ -36056,9 +34088,6 @@ "ips": [ "86.106.143.80" ], - "ipsv6": [ - "2a0d:5600:24:a8a::a87f" - ], "country": "USA", "city": "New York NY", "hostname": "us87-wireguard", @@ -36070,9 +34099,6 @@ "ips": [ "86.106.143.93" ], - "ipsv6": [ - "2a0d:5600:24:a8b::a88f" - ], "country": "USA", "city": "New York NY", "hostname": "us88-wireguard", @@ -36084,9 +34110,6 @@ "ips": [ "86.106.143.106" ], - "ipsv6": [ - "2a0d:5600:24:a8c::a89f" - ], "country": "USA", "city": "New York NY", "hostname": "us89-wireguard", @@ -36098,9 +34121,6 @@ "ips": [ "86.106.143.119" ], - "ipsv6": [ - "2a0d:5600:24:a8d::a90f" - ], "country": "USA", "city": "New York NY", "hostname": "us90-wireguard", @@ -36112,9 +34132,6 @@ "ips": [ "86.106.143.132" ], - "ipsv6": [ - "2a0d:5600:24:a8e::a91f" - ], "country": "USA", "city": "New York NY", "hostname": "us91-wireguard", @@ -36126,9 +34143,6 @@ "ips": [ "86.106.143.145" ], - "ipsv6": [ - "2a0d:5600:24:a8f::a92f" - ], "country": "USA", "city": "New York NY", "hostname": "us92-wireguard", @@ -36140,9 +34154,6 @@ "ips": [ "86.106.143.158" ], - "ipsv6": [ - "2a0d:5600:24:a90::a93f" - ], "country": "USA", "city": "New York NY", "hostname": "us93-wireguard", @@ -36154,9 +34165,6 @@ "ips": [ "86.106.143.171" ], - "ipsv6": [ - "2a0d:5600:24:a91::a94f" - ], "country": "USA", "city": "New York NY", "hostname": "us94-wireguard", @@ -36168,9 +34176,6 @@ "ips": [ "86.106.143.184" ], - "ipsv6": [ - "2a0d:5600:24:a92::a95f" - ], "country": "USA", "city": "New York NY", "hostname": "us95-wireguard", @@ -36182,9 +34187,6 @@ "ips": [ "86.106.143.197" ], - "ipsv6": [ - "2a0d:5600:24:a93::a96f" - ], "country": "USA", "city": "New York NY", "hostname": "us96-wireguard", @@ -36196,9 +34198,6 @@ "ips": [ "86.106.143.210" ], - "ipsv6": [ - "2a0d:5600:24:a94::a97f" - ], "country": "USA", "city": "New York NY", "hostname": "us97-wireguard", @@ -36210,9 +34209,6 @@ "ips": [ "86.106.143.223" ], - "ipsv6": [ - "2a0d:5600:24:a95::a98f" - ], "country": "USA", "city": "New York NY", "hostname": "us98-wireguard", @@ -36224,9 +34220,6 @@ "ips": [ "86.106.143.236" ], - "ipsv6": [ - "2a0d:5600:24:a96::a99f" - ], "country": "USA", "city": "New York NY", "hostname": "us99-wireguard", @@ -36238,9 +34231,6 @@ "ips": [ "198.54.133.34" ], - "ipsv6": [ - "2607:9000:7000:12::101f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us-phx-101", @@ -36251,9 +34241,6 @@ "ips": [ "198.54.133.50" ], - "ipsv6": [ - "2607:9000:7000:13::102f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us-phx-102", @@ -36264,9 +34251,6 @@ "ips": [ "198.54.133.66" ], - "ipsv6": [ - "2607:9000:7000:14::103f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us-phx-103", @@ -36277,9 +34261,6 @@ "ips": [ "198.54.133.82" ], - "ipsv6": [ - "2607:9000:7000:15::b89f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us189-wireguard", @@ -36291,9 +34272,6 @@ "ips": [ "198.54.133.98" ], - "ipsv6": [ - "2607:9000:7000:16::b90f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us190-wireguard", @@ -36305,9 +34283,6 @@ "ips": [ "198.54.133.114" ], - "ipsv6": [ - "2607:9000:7000:17::b91f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us191-wireguard", @@ -36319,9 +34294,6 @@ "ips": [ "198.54.133.130" ], - "ipsv6": [ - "2607:9000:7000:18::b92f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us192-wireguard", @@ -36333,9 +34305,6 @@ "ips": [ "198.54.133.146" ], - "ipsv6": [ - "2607:9000:7000:19::b93f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us193-wireguard", @@ -36347,9 +34316,6 @@ "ips": [ "198.54.133.162" ], - "ipsv6": [ - "2607:9000:7000:20::b94f" - ], "country": "USA", "city": "Phoenix AZ", "hostname": "us194-wireguard", @@ -36361,9 +34327,6 @@ "ips": [ "198.54.130.34" ], - "ipsv6": [ - "2607:9000:4000:12::101f" - ], "country": "USA", "city": "Raleigh NC", "hostname": "us-rag-101", @@ -36374,9 +34337,6 @@ "ips": [ "198.54.130.50" ], - "ipsv6": [ - "2607:9000:4000:13::102f" - ], "country": "USA", "city": "Raleigh NC", "hostname": "us-rag-102", @@ -36387,9 +34347,6 @@ "ips": [ "198.54.130.66" ], - "ipsv6": [ - "2607:9000:4000:14::103f" - ], "country": "USA", "city": "Raleigh NC", "hostname": "us-rag-103", @@ -36400,9 +34357,6 @@ "ips": [ "198.54.130.82" ], - "ipsv6": [ - "2607:9000:4000:15::b83f" - ], "country": "USA", "city": "Raleigh NC", "hostname": "us183-wireguard", @@ -36414,9 +34368,6 @@ "ips": [ "198.54.130.98" ], - "ipsv6": [ - "2607:9000:4000:16::b84f" - ], "country": "USA", "city": "Raleigh NC", "hostname": "us184-wireguard", @@ -36428,9 +34379,6 @@ "ips": [ "198.54.130.114" ], - "ipsv6": [ - "2607:9000:4000:17::b85f" - ], "country": "USA", "city": "Raleigh NC", "hostname": "us185-wireguard", @@ -36442,9 +34390,6 @@ "ips": [ "198.54.130.130" ], - "ipsv6": [ - "2607:9000:4000:18::b86f" - ], "country": "USA", "city": "Raleigh NC", "hostname": "us186-wireguard", @@ -36456,9 +34401,6 @@ "ips": [ "198.54.130.146" ], - "ipsv6": [ - "2607:9000:4000:19::b87f" - ], "country": "USA", "city": "Raleigh NC", "hostname": "us187-wireguard", @@ -36470,9 +34412,6 @@ "ips": [ "69.4.234.132" ], - "ipsv6": [ - "2606:2e00:0:b9::1f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-101", @@ -36483,9 +34422,6 @@ "ips": [ "69.4.234.133" ], - "ipsv6": [ - "2606:2e00:0:b9::2f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-102", @@ -36496,9 +34432,6 @@ "ips": [ "69.4.234.134" ], - "ipsv6": [ - "2606:2e00:0:b9::3f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-103", @@ -36509,9 +34442,6 @@ "ips": [ "69.4.234.135" ], - "ipsv6": [ - "2606:2e00:0:b9::4f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-104", @@ -36522,9 +34452,6 @@ "ips": [ "69.4.234.136" ], - "ipsv6": [ - "2606:2e00:0:b9::5f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-105", @@ -36535,9 +34462,6 @@ "ips": [ "69.4.234.137" ], - "ipsv6": [ - "2606:2e00:0:b9::6f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-106", @@ -36548,9 +34472,6 @@ "ips": [ "69.4.234.147" ], - "ipsv6": [ - "2606:2e00:0:b9::b34f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us134-wireguard", @@ -36562,9 +34483,6 @@ "ips": [ "69.4.234.138" ], - "ipsv6": [ - "2606:2e00:0:b9::b35f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us135-wireguard", @@ -36576,9 +34494,6 @@ "ips": [ "69.4.234.139" ], - "ipsv6": [ - "2606:2e00:0:b9::b36f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us136-wireguard", @@ -36590,9 +34505,6 @@ "ips": [ "69.4.234.140" ], - "ipsv6": [ - "2606:2e00:0:b9::b37f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us137-wireguard", @@ -36604,9 +34516,6 @@ "ips": [ "69.4.234.141" ], - "ipsv6": [ - "2606:2e00:0:b9::b38f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us138-wireguard", @@ -36618,9 +34527,6 @@ "ips": [ "69.4.234.142" ], - "ipsv6": [ - "2606:2e00:0:b9::b39f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us139-wireguard", @@ -36632,9 +34538,6 @@ "ips": [ "69.4.234.143" ], - "ipsv6": [ - "2606:2e00:0:b9::b40f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us140-wireguard", @@ -36646,9 +34549,6 @@ "ips": [ "69.4.234.144" ], - "ipsv6": [ - "2606:2e00:0:b9::b41f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us141-wireguard", @@ -36660,9 +34560,6 @@ "ips": [ "69.4.234.145" ], - "ipsv6": [ - "2606:2e00:0:b9::b42f" - ], "country": "USA", "city": "Salt Lake City UT", "hostname": "us142-wireguard", @@ -36674,9 +34571,6 @@ "ips": [ "198.54.134.34" ], - "ipsv6": [ - "2607:9000:8000:12::1f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us-sjc-001", @@ -36687,9 +34581,6 @@ "ips": [ "198.54.134.50" ], - "ipsv6": [ - "2607:9000:8000:13::2f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us-sjc-002", @@ -36700,9 +34591,6 @@ "ips": [ "198.54.134.66" ], - "ipsv6": [ - "2607:9000:8000:14::3f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us-sjc-003", @@ -36713,9 +34601,6 @@ "ips": [ "198.54.134.82" ], - "ipsv6": [ - "2607:9000:8000:15::b95f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us195-wireguard", @@ -36727,9 +34612,6 @@ "ips": [ "198.54.134.98" ], - "ipsv6": [ - "2607:9000:8000:16::b96f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us196-wireguard", @@ -36741,9 +34623,6 @@ "ips": [ "198.54.134.114" ], - "ipsv6": [ - "2607:9000:8000:17::b97f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us197-wireguard", @@ -36755,9 +34634,6 @@ "ips": [ "198.54.134.130" ], - "ipsv6": [ - "2607:9000:8000:18::b98f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us198-wireguard", @@ -36769,9 +34645,6 @@ "ips": [ "198.54.134.146" ], - "ipsv6": [ - "2607:9000:8000:19::b99f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us199-wireguard", @@ -36783,9 +34656,6 @@ "ips": [ "198.54.134.162" ], - "ipsv6": [ - "2607:9000:8000:20::c00f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us200-wireguard", @@ -36797,9 +34667,6 @@ "ips": [ "66.115.165.211" ], - "ipsv6": [ - "2607:f7a0:16:5::c01f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us201-wireguard", @@ -36811,9 +34678,6 @@ "ips": [ "66.115.165.212" ], - "ipsv6": [ - "2607:f7a0:16:5::c02f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us202-wireguard", @@ -36825,9 +34689,6 @@ "ips": [ "66.115.165.213" ], - "ipsv6": [ - "2607:f7a0:16:5::c03f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us203-wireguard", @@ -36839,9 +34700,6 @@ "ips": [ "66.115.165.214" ], - "ipsv6": [ - "2607:f7a0:16:5::c04f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us204-wireguard", @@ -36853,9 +34711,6 @@ "ips": [ "66.115.165.215" ], - "ipsv6": [ - "2607:f7a0:16:5::c05f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us205-wireguard", @@ -36867,9 +34722,6 @@ "ips": [ "66.115.165.216" ], - "ipsv6": [ - "2607:f7a0:16:5::c06f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us206-wireguard", @@ -36881,9 +34733,6 @@ "ips": [ "66.115.165.217" ], - "ipsv6": [ - "2607:f7a0:16:5::c07f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us207-wireguard", @@ -36895,9 +34744,6 @@ "ips": [ "66.115.165.218" ], - "ipsv6": [ - "2607:f7a0:16:5::c08f" - ], "country": "USA", "city": "San Jose CA", "hostname": "us208-wireguard", @@ -36909,9 +34755,6 @@ "ips": [ "198.54.131.34" ], - "ipsv6": [ - "2607:9000:5000:12::101f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us-sea-101", @@ -36922,9 +34765,6 @@ "ips": [ "198.54.131.50" ], - "ipsv6": [ - "2607:9000:5000:13::102f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us-sea-102", @@ -36935,9 +34775,6 @@ "ips": [ "198.54.131.66" ], - "ipsv6": [ - "2607:9000:5000:14::103f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us-sea-103", @@ -36948,9 +34785,6 @@ "ips": [ "198.54.131.82" ], - "ipsv6": [ - "2607:9000:5000:15::b77f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us177-wireguard", @@ -36962,9 +34796,6 @@ "ips": [ "198.54.131.98" ], - "ipsv6": [ - "2607:9000:5000:16::b78f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us178-wireguard", @@ -36976,9 +34807,6 @@ "ips": [ "198.54.131.114" ], - "ipsv6": [ - "2607:9000:5000:17::b79f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us179-wireguard", @@ -36990,9 +34818,6 @@ "ips": [ "198.54.131.130" ], - "ipsv6": [ - "2607:9000:5000:18::b80f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us180-wireguard", @@ -37004,9 +34829,6 @@ "ips": [ "198.54.131.146" ], - "ipsv6": [ - "2607:9000:5000:19::b81f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us181-wireguard", @@ -37018,9 +34840,6 @@ "ips": [ "198.54.131.162" ], - "ipsv6": [ - "2607:9000:5000:20::b82f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us182-wireguard", @@ -37032,9 +34851,6 @@ "ips": [ "199.229.250.52" ], - "ipsv6": [ - "2607:f7a0:c:4::c09f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us209-wireguard", @@ -37046,9 +34862,6 @@ "ips": [ "199.229.250.53" ], - "ipsv6": [ - "2607:f7a0:c:4::c10f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us210-wireguard", @@ -37060,9 +34873,6 @@ "ips": [ "199.229.250.56" ], - "ipsv6": [ - "2607:f7a0:c:4::c13f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us213-wireguard", @@ -37074,9 +34884,6 @@ "ips": [ "199.229.250.58" ], - "ipsv6": [ - "2607:f7a0:c:4::c15f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us215-wireguard", @@ -37088,9 +34895,6 @@ "ips": [ "199.229.250.59" ], - "ipsv6": [ - "2607:f7a0:c:4::c16f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us216-wireguard", @@ -37102,9 +34906,6 @@ "ips": [ "173.205.92.146" ], - "ipsv6": [ - "2607:fcd0:cd00:a00::b27f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us227-wireguard", @@ -37116,9 +34917,6 @@ "ips": [ "173.205.93.2" ], - "ipsv6": [ - "2607:fcd0:cd00:a01::b28f" - ], "country": "USA", "city": "Seattle WA", "hostname": "us228-wireguard", @@ -37130,9 +34928,6 @@ "ips": [ "162.218.210.18" ], - "ipsv6": [ - "2607:fcd0:ccc0:1d02::b37f" - ], "country": "USA", "city": "Secaucus NJ", "hostname": "us237-wireguard", @@ -37144,9 +34939,6 @@ "ips": [ "23.226.135.50" ], - "ipsv6": [ - "2607:fcd0:ccc0:1d05::c41f" - ], "country": "USA", "city": "Secaucus NJ", "hostname": "us241-wireguard", @@ -37158,9 +34950,6 @@ "ips": [ "45.9.249.34" ], - "ipsv6": [ - "2001:ac8:81::1f" - ], "country": "United Arab Emirates", "city": "Dubai", "hostname": "ae-dxb-001", @@ -37585,21 +35374,15 @@ }, "nordvpn": { "version": 3, - "timestamp": 1635806890, + "timestamp": 1650212036, "servers": [ { "region": "Albania", "hostname": "al18.nordvpn.com", "number": 18, - "ip": "31.171.152.19", - "tcp": true, - "udp": true - }, - { - "region": "Albania", - "hostname": "al19.nordvpn.com", - "number": 19, - "ip": "80.246.28.33", + "ips": [ + "31.171.152.19" + ], "tcp": true, "udp": true }, @@ -37607,7 +35390,9 @@ "region": "Albania", "hostname": "al20.nordvpn.com", "number": 20, - "ip": "31.171.152.11", + "ips": [ + "31.171.152.11" + ], "tcp": true, "udp": true }, @@ -37615,7 +35400,9 @@ "region": "Albania", "hostname": "al21.nordvpn.com", "number": 21, - "ip": "31.171.152.115", + "ips": [ + "31.171.152.115" + ], "tcp": true, "udp": true }, @@ -37623,23 +35410,9 @@ "region": "Albania", "hostname": "al23.nordvpn.com", "number": 23, - "ip": "31.171.152.243", - "tcp": true, - "udp": true - }, - { - "region": "Albania", - "hostname": "al24.nordvpn.com", - "number": 24, - "ip": "80.246.28.38", - "tcp": true, - "udp": true - }, - { - "region": "Albania", - "hostname": "al25.nordvpn.com", - "number": 25, - "ip": "80.246.28.43", + "ips": [ + "31.171.152.243" + ], "tcp": true, "udp": true }, @@ -37647,7 +35420,9 @@ "region": "Albania", "hostname": "al26.nordvpn.com", "number": 26, - "ip": "31.171.154.235", + "ips": [ + "31.171.154.235" + ], "tcp": true, "udp": true }, @@ -37655,7 +35430,9 @@ "region": "Argentina", "hostname": "ar29.nordvpn.com", "number": 29, - "ip": "131.255.4.122", + "ips": [ + "131.255.4.122" + ], "tcp": true, "udp": true }, @@ -37663,7 +35440,9 @@ "region": "Argentina", "hostname": "ar30.nordvpn.com", "number": 30, - "ip": "131.255.4.237", + "ips": [ + "131.255.4.237" + ], "tcp": true, "udp": true }, @@ -37671,7 +35450,9 @@ "region": "Argentina", "hostname": "ar31.nordvpn.com", "number": 31, - "ip": "131.255.7.75", + "ips": [ + "131.255.7.75" + ], "tcp": true, "udp": true }, @@ -37679,7 +35460,9 @@ "region": "Argentina", "hostname": "ar32.nordvpn.com", "number": 32, - "ip": "131.255.4.37", + "ips": [ + "131.255.4.37" + ], "tcp": true, "udp": true }, @@ -37687,7 +35470,9 @@ "region": "Argentina", "hostname": "ar33.nordvpn.com", "number": 33, - "ip": "131.255.4.94", + "ips": [ + "131.255.4.94" + ], "tcp": true, "udp": true }, @@ -37695,7 +35480,9 @@ "region": "Argentina", "hostname": "ar34.nordvpn.com", "number": 34, - "ip": "131.255.7.82", + "ips": [ + "131.255.7.82" + ], "tcp": true, "udp": true }, @@ -37703,7 +35490,9 @@ "region": "Argentina", "hostname": "ar35.nordvpn.com", "number": 35, - "ip": "131.255.7.78", + "ips": [ + "131.255.7.78" + ], "tcp": true, "udp": true }, @@ -37711,7 +35500,9 @@ "region": "Argentina", "hostname": "ar36.nordvpn.com", "number": 36, - "ip": "131.255.4.111", + "ips": [ + "131.255.4.111" + ], "tcp": true, "udp": true }, @@ -37719,7 +35510,9 @@ "region": "Argentina", "hostname": "ar37.nordvpn.com", "number": 37, - "ip": "131.255.4.89", + "ips": [ + "131.255.4.89" + ], "tcp": true, "udp": true }, @@ -37727,7 +35520,9 @@ "region": "Argentina", "hostname": "ar38.nordvpn.com", "number": 38, - "ip": "131.255.4.30", + "ips": [ + "131.255.4.30" + ], "tcp": true, "udp": true }, @@ -37735,7 +35530,9 @@ "region": "Argentina", "hostname": "ar39.nordvpn.com", "number": 39, - "ip": "131.255.4.83", + "ips": [ + "131.255.4.83" + ], "tcp": true, "udp": true }, @@ -37743,7 +35540,9 @@ "region": "Argentina", "hostname": "ar40.nordvpn.com", "number": 40, - "ip": "131.255.4.210", + "ips": [ + "131.255.4.210" + ], "tcp": true, "udp": true }, @@ -37751,7 +35550,9 @@ "region": "Argentina", "hostname": "ar41.nordvpn.com", "number": 41, - "ip": "131.255.4.86", + "ips": [ + "131.255.4.86" + ], "tcp": true, "udp": true }, @@ -37759,7 +35560,9 @@ "region": "Argentina", "hostname": "ar42.nordvpn.com", "number": 42, - "ip": "131.255.4.147", + "ips": [ + "131.255.4.147" + ], "tcp": true, "udp": true }, @@ -37767,7 +35570,9 @@ "region": "Argentina", "hostname": "ar43.nordvpn.com", "number": 43, - "ip": "131.255.4.232", + "ips": [ + "131.255.4.232" + ], "tcp": true, "udp": true }, @@ -37775,7 +35580,9 @@ "region": "Argentina", "hostname": "ar44.nordvpn.com", "number": 44, - "ip": "131.255.4.40", + "ips": [ + "131.255.4.40" + ], "tcp": true, "udp": true }, @@ -37783,7 +35590,9 @@ "region": "Argentina", "hostname": "ar45.nordvpn.com", "number": 45, - "ip": "131.255.4.92", + "ips": [ + "131.255.4.92" + ], "tcp": true, "udp": true }, @@ -37791,7 +35600,9 @@ "region": "Argentina", "hostname": "ar46.nordvpn.com", "number": 46, - "ip": "131.255.4.107", + "ips": [ + "131.255.4.107" + ], "tcp": true, "udp": true }, @@ -37799,7 +35610,9 @@ "region": "Argentina", "hostname": "ar47.nordvpn.com", "number": 47, - "ip": "131.255.4.60", + "ips": [ + "131.255.4.60" + ], "tcp": true, "udp": true }, @@ -37807,7 +35620,9 @@ "region": "Argentina", "hostname": "ar48.nordvpn.com", "number": 48, - "ip": "131.255.7.84", + "ips": [ + "131.255.7.84" + ], "tcp": true, "udp": true }, @@ -37815,55 +35630,9 @@ "region": "Argentina", "hostname": "ar49.nordvpn.com", "number": 49, - "ip": "131.255.7.33", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au520.nordvpn.com", - "number": 520, - "ip": "116.206.231.35", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au521.nordvpn.com", - "number": 521, - "ip": "116.206.231.19", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au522.nordvpn.com", - "number": 522, - "ip": "116.206.231.51", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au523.nordvpn.com", - "number": 523, - "ip": "116.206.231.27", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au526.nordvpn.com", - "number": 526, - "ip": "45.248.78.131", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au527.nordvpn.com", - "number": 527, - "ip": "45.248.79.155", + "ips": [ + "131.255.7.33" + ], "tcp": true, "udp": true }, @@ -37871,7 +35640,9 @@ "region": "Australia", "hostname": "au529.nordvpn.com", "number": 529, - "ip": "103.1.212.91", + "ips": [ + "103.1.212.91" + ], "tcp": true, "udp": true }, @@ -37879,7 +35650,9 @@ "region": "Australia", "hostname": "au530.nordvpn.com", "number": 530, - "ip": "103.1.212.99", + "ips": [ + "103.1.212.99" + ], "tcp": true, "udp": true }, @@ -37887,7 +35660,9 @@ "region": "Australia", "hostname": "au531.nordvpn.com", "number": 531, - "ip": "103.1.212.107", + "ips": [ + "103.1.212.107" + ], "tcp": true, "udp": true }, @@ -37895,7 +35670,9 @@ "region": "Australia", "hostname": "au532.nordvpn.com", "number": 532, - "ip": "103.1.212.115", + "ips": [ + "103.1.212.115" + ], "tcp": true, "udp": true }, @@ -37903,7 +35680,9 @@ "region": "Australia", "hostname": "au533.nordvpn.com", "number": 533, - "ip": "103.1.212.123", + "ips": [ + "103.1.212.123" + ], "tcp": true, "udp": true }, @@ -37911,7 +35690,9 @@ "region": "Australia", "hostname": "au534.nordvpn.com", "number": 534, - "ip": "103.1.212.131", + "ips": [ + "103.1.212.131" + ], "tcp": true, "udp": true }, @@ -37919,7 +35700,9 @@ "region": "Australia", "hostname": "au535.nordvpn.com", "number": 535, - "ip": "103.1.212.139", + "ips": [ + "103.1.212.139" + ], "tcp": true, "udp": true }, @@ -37927,7 +35710,9 @@ "region": "Australia", "hostname": "au536.nordvpn.com", "number": 536, - "ip": "103.1.212.147", + "ips": [ + "103.1.212.147" + ], "tcp": true, "udp": true }, @@ -37935,7 +35720,9 @@ "region": "Australia", "hostname": "au537.nordvpn.com", "number": 537, - "ip": "103.1.212.155", + "ips": [ + "103.1.212.155" + ], "tcp": true, "udp": true }, @@ -37943,63 +35730,9 @@ "region": "Australia", "hostname": "au538.nordvpn.com", "number": 538, - "ip": "103.1.212.163", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au541.nordvpn.com", - "number": 541, - "ip": "45.248.78.163", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au542.nordvpn.com", - "number": 542, - "ip": "45.248.79.179", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au544.nordvpn.com", - "number": 544, - "ip": "45.248.79.115", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au547.nordvpn.com", - "number": 547, - "ip": "45.248.78.3", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au549.nordvpn.com", - "number": 549, - "ip": "45.248.79.107", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au552.nordvpn.com", - "number": 552, - "ip": "45.248.78.227", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au564.nordvpn.com", - "number": 564, - "ip": "45.248.79.211", + "ips": [ + "103.1.212.163" + ], "tcp": true, "udp": true }, @@ -38007,7 +35740,9 @@ "region": "Australia", "hostname": "au569.nordvpn.com", "number": 569, - "ip": "103.137.14.147", + "ips": [ + "103.137.14.147" + ], "tcp": true, "udp": true }, @@ -38015,31 +35750,9 @@ "region": "Australia", "hostname": "au570.nordvpn.com", "number": 570, - "ip": "103.137.14.155", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au573.nordvpn.com", - "number": 573, - "ip": "45.248.78.235", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au574.nordvpn.com", - "number": 574, - "ip": "45.248.78.243", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au575.nordvpn.com", - "number": 575, - "ip": "45.248.78.251", + "ips": [ + "103.137.14.155" + ], "tcp": true, "udp": true }, @@ -38047,31 +35760,9 @@ "region": "Australia", "hostname": "au576.nordvpn.com", "number": 576, - "ip": "103.212.227.179", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au581.nordvpn.com", - "number": 581, - "ip": "45.248.79.131", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au582.nordvpn.com", - "number": 582, - "ip": "45.248.79.187", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au583.nordvpn.com", - "number": 583, - "ip": "45.248.79.251", + "ips": [ + "103.212.227.179" + ], "tcp": true, "udp": true }, @@ -38079,7 +35770,9 @@ "region": "Australia", "hostname": "au585.nordvpn.com", "number": 585, - "ip": "103.137.12.179", + "ips": [ + "103.137.12.179" + ], "tcp": true, "udp": true }, @@ -38087,7 +35780,9 @@ "region": "Australia", "hostname": "au586.nordvpn.com", "number": 586, - "ip": "103.137.12.187", + "ips": [ + "103.137.12.187" + ], "tcp": true, "udp": true }, @@ -38095,7 +35790,9 @@ "region": "Australia", "hostname": "au587.nordvpn.com", "number": 587, - "ip": "103.137.12.195", + "ips": [ + "103.137.12.195" + ], "tcp": true, "udp": true }, @@ -38103,7 +35800,9 @@ "region": "Australia", "hostname": "au588.nordvpn.com", "number": 588, - "ip": "103.137.12.203", + "ips": [ + "103.137.12.203" + ], "tcp": true, "udp": true }, @@ -38111,7 +35810,9 @@ "region": "Australia", "hostname": "au595.nordvpn.com", "number": 595, - "ip": "103.137.14.131", + "ips": [ + "103.137.14.131" + ], "tcp": true, "udp": true }, @@ -38119,7 +35820,9 @@ "region": "Australia", "hostname": "au596.nordvpn.com", "number": 596, - "ip": "103.137.14.139", + "ips": [ + "103.137.14.139" + ], "tcp": true, "udp": true }, @@ -38127,7 +35830,9 @@ "region": "Australia", "hostname": "au599.nordvpn.com", "number": 599, - "ip": "103.107.196.131", + "ips": [ + "103.107.196.131" + ], "tcp": true, "udp": true }, @@ -38135,7 +35840,9 @@ "region": "Australia", "hostname": "au600.nordvpn.com", "number": 600, - "ip": "103.107.196.139", + "ips": [ + "103.107.196.139" + ], "tcp": true, "udp": true }, @@ -38143,7 +35850,9 @@ "region": "Australia", "hostname": "au601.nordvpn.com", "number": 601, - "ip": "103.107.196.147", + "ips": [ + "103.107.196.147" + ], "tcp": true, "udp": true }, @@ -38151,23 +35860,9 @@ "region": "Australia", "hostname": "au602.nordvpn.com", "number": 602, - "ip": "103.107.196.155", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au603.nordvpn.com", - "number": 603, - "ip": "45.248.78.203", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au604.nordvpn.com", - "number": 604, - "ip": "45.248.78.195", + "ips": [ + "103.107.196.155" + ], "tcp": true, "udp": true }, @@ -38175,7 +35870,9 @@ "region": "Australia", "hostname": "au605.nordvpn.com", "number": 605, - "ip": "103.212.227.155", + "ips": [ + "103.212.227.155" + ], "tcp": true, "udp": true }, @@ -38183,7 +35880,9 @@ "region": "Australia", "hostname": "au606.nordvpn.com", "number": 606, - "ip": "103.212.227.163", + "ips": [ + "103.212.227.163" + ], "tcp": true, "udp": true }, @@ -38191,7 +35890,9 @@ "region": "Australia", "hostname": "au607.nordvpn.com", "number": 607, - "ip": "103.212.227.171", + "ips": [ + "103.212.227.171" + ], "tcp": true, "udp": true }, @@ -38199,7 +35900,9 @@ "region": "Australia", "hostname": "au610.nordvpn.com", "number": 610, - "ip": "103.137.12.131", + "ips": [ + "103.137.12.131" + ], "tcp": true, "udp": true }, @@ -38207,7 +35910,9 @@ "region": "Australia", "hostname": "au611.nordvpn.com", "number": 611, - "ip": "103.137.12.139", + "ips": [ + "103.137.12.139" + ], "tcp": true, "udp": true }, @@ -38215,7 +35920,9 @@ "region": "Australia", "hostname": "au612.nordvpn.com", "number": 612, - "ip": "103.137.12.147", + "ips": [ + "103.137.12.147" + ], "tcp": true, "udp": true }, @@ -38223,7 +35930,9 @@ "region": "Australia", "hostname": "au613.nordvpn.com", "number": 613, - "ip": "103.137.12.155", + "ips": [ + "103.137.12.155" + ], "tcp": true, "udp": true }, @@ -38231,7 +35940,9 @@ "region": "Australia", "hostname": "au614.nordvpn.com", "number": 614, - "ip": "103.137.12.163", + "ips": [ + "103.137.12.163" + ], "tcp": true, "udp": true }, @@ -38239,31 +35950,9 @@ "region": "Australia", "hostname": "au615.nordvpn.com", "number": 615, - "ip": "103.137.12.171", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au620.nordvpn.com", - "number": 620, - "ip": "45.248.78.11", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au621.nordvpn.com", - "number": 621, - "ip": "45.248.78.27", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au622.nordvpn.com", - "number": 622, - "ip": "45.248.78.35", + "ips": [ + "103.137.12.171" + ], "tcp": true, "udp": true }, @@ -38271,7 +35960,9 @@ "region": "Australia", "hostname": "au623.nordvpn.com", "number": 623, - "ip": "103.212.227.147", + "ips": [ + "103.212.227.147" + ], "tcp": true, "udp": true }, @@ -38279,47 +35970,9 @@ "region": "Australia", "hostname": "au624.nordvpn.com", "number": 624, - "ip": "103.212.227.115", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au625.nordvpn.com", - "number": 625, - "ip": "45.248.79.195", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au626.nordvpn.com", - "number": 626, - "ip": "45.248.79.123", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au634.nordvpn.com", - "number": 634, - "ip": "45.248.78.179", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au635.nordvpn.com", - "number": 635, - "ip": "45.248.78.187", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au636.nordvpn.com", - "number": 636, - "ip": "45.248.78.219", + "ips": [ + "103.212.227.115" + ], "tcp": true, "udp": true }, @@ -38327,7 +35980,9 @@ "region": "Australia", "hostname": "au638.nordvpn.com", "number": 638, - "ip": "116.90.72.43", + "ips": [ + "116.90.72.43" + ], "tcp": true, "udp": true }, @@ -38335,7 +35990,9 @@ "region": "Australia", "hostname": "au639.nordvpn.com", "number": 639, - "ip": "116.90.72.51", + "ips": [ + "116.90.72.51" + ], "tcp": true, "udp": true }, @@ -38343,7 +36000,9 @@ "region": "Australia", "hostname": "au640.nordvpn.com", "number": 640, - "ip": "103.137.12.211", + "ips": [ + "103.137.12.211" + ], "tcp": true, "udp": true }, @@ -38351,7 +36010,9 @@ "region": "Australia", "hostname": "au641.nordvpn.com", "number": 641, - "ip": "103.137.12.219", + "ips": [ + "103.137.12.219" + ], "tcp": true, "udp": true }, @@ -38359,7 +36020,9 @@ "region": "Australia", "hostname": "au642.nordvpn.com", "number": 642, - "ip": "103.137.12.227", + "ips": [ + "103.137.12.227" + ], "tcp": true, "udp": true }, @@ -38367,7 +36030,9 @@ "region": "Australia", "hostname": "au643.nordvpn.com", "number": 643, - "ip": "103.137.12.235", + "ips": [ + "103.137.12.235" + ], "tcp": true, "udp": true }, @@ -38375,7 +36040,9 @@ "region": "Australia", "hostname": "au644.nordvpn.com", "number": 644, - "ip": "103.137.14.163", + "ips": [ + "103.137.14.163" + ], "tcp": true, "udp": true }, @@ -38383,7 +36050,9 @@ "region": "Australia", "hostname": "au645.nordvpn.com", "number": 645, - "ip": "103.137.14.171", + "ips": [ + "103.137.14.171" + ], "tcp": true, "udp": true }, @@ -38391,7 +36060,9 @@ "region": "Australia", "hostname": "au646.nordvpn.com", "number": 646, - "ip": "103.137.14.179", + "ips": [ + "103.137.14.179" + ], "tcp": true, "udp": true }, @@ -38399,7 +36070,9 @@ "region": "Australia", "hostname": "au647.nordvpn.com", "number": 647, - "ip": "103.137.14.187", + "ips": [ + "103.137.14.187" + ], "tcp": true, "udp": true }, @@ -38407,7 +36080,9 @@ "region": "Australia", "hostname": "au648.nordvpn.com", "number": 648, - "ip": "103.107.196.163", + "ips": [ + "103.107.196.163" + ], "tcp": true, "udp": true }, @@ -38415,7 +36090,9 @@ "region": "Australia", "hostname": "au649.nordvpn.com", "number": 649, - "ip": "103.107.196.171", + "ips": [ + "103.107.196.171" + ], "tcp": true, "udp": true }, @@ -38423,7 +36100,9 @@ "region": "Australia", "hostname": "au650.nordvpn.com", "number": 650, - "ip": "103.107.196.179", + "ips": [ + "103.107.196.179" + ], "tcp": true, "udp": true }, @@ -38431,7 +36110,9 @@ "region": "Australia", "hostname": "au651.nordvpn.com", "number": 651, - "ip": "103.107.196.187", + "ips": [ + "103.107.196.187" + ], "tcp": true, "udp": true }, @@ -38439,7 +36120,9 @@ "region": "Australia", "hostname": "au652.nordvpn.com", "number": 652, - "ip": "103.212.227.187", + "ips": [ + "103.212.227.187" + ], "tcp": true, "udp": true }, @@ -38447,7 +36130,9 @@ "region": "Australia", "hostname": "au653.nordvpn.com", "number": 653, - "ip": "103.212.224.195", + "ips": [ + "103.212.224.195" + ], "tcp": true, "udp": true }, @@ -38455,7 +36140,9 @@ "region": "Australia", "hostname": "au654.nordvpn.com", "number": 654, - "ip": "103.212.224.203", + "ips": [ + "103.212.224.203" + ], "tcp": true, "udp": true }, @@ -38463,7 +36150,9 @@ "region": "Australia", "hostname": "au655.nordvpn.com", "number": 655, - "ip": "103.212.224.211", + "ips": [ + "103.212.224.211" + ], "tcp": true, "udp": true }, @@ -38471,7 +36160,9 @@ "region": "Australia", "hostname": "au656.nordvpn.com", "number": 656, - "ip": "103.212.224.219", + "ips": [ + "103.212.224.219" + ], "tcp": true, "udp": true }, @@ -38479,7 +36170,9 @@ "region": "Australia", "hostname": "au657.nordvpn.com", "number": 657, - "ip": "103.212.224.227", + "ips": [ + "103.212.224.227" + ], "tcp": true, "udp": true }, @@ -38487,7 +36180,9 @@ "region": "Australia", "hostname": "au658.nordvpn.com", "number": 658, - "ip": "116.90.72.59", + "ips": [ + "116.90.72.59" + ], "tcp": true, "udp": true }, @@ -38495,7 +36190,9 @@ "region": "Australia", "hostname": "au659.nordvpn.com", "number": 659, - "ip": "116.90.72.67", + "ips": [ + "116.90.72.67" + ], "tcp": true, "udp": true }, @@ -38503,7 +36200,9 @@ "region": "Australia", "hostname": "au660.nordvpn.com", "number": 660, - "ip": "116.90.72.75", + "ips": [ + "116.90.72.75" + ], "tcp": true, "udp": true }, @@ -38511,7 +36210,9 @@ "region": "Australia", "hostname": "au661.nordvpn.com", "number": 661, - "ip": "116.90.72.83", + "ips": [ + "116.90.72.83" + ], "tcp": true, "udp": true }, @@ -38519,7 +36220,9 @@ "region": "Australia", "hostname": "au662.nordvpn.com", "number": 662, - "ip": "103.137.12.243", + "ips": [ + "103.137.12.243" + ], "tcp": true, "udp": true }, @@ -38527,7 +36230,9 @@ "region": "Australia", "hostname": "au663.nordvpn.com", "number": 663, - "ip": "103.137.12.251", + "ips": [ + "103.137.12.251" + ], "tcp": true, "udp": true }, @@ -38535,7 +36240,9 @@ "region": "Australia", "hostname": "au665.nordvpn.com", "number": 665, - "ip": "103.137.14.195", + "ips": [ + "103.137.14.195" + ], "tcp": true, "udp": true }, @@ -38543,7 +36250,9 @@ "region": "Australia", "hostname": "au666.nordvpn.com", "number": 666, - "ip": "103.137.14.211", + "ips": [ + "103.137.14.211" + ], "tcp": true, "udp": true }, @@ -38551,7 +36260,9 @@ "region": "Australia", "hostname": "au667.nordvpn.com", "number": 667, - "ip": "103.137.14.219", + "ips": [ + "103.137.14.219" + ], "tcp": true, "udp": true }, @@ -38559,7 +36270,9 @@ "region": "Australia", "hostname": "au668.nordvpn.com", "number": 668, - "ip": "103.137.14.227", + "ips": [ + "103.137.14.227" + ], "tcp": true, "udp": true }, @@ -38567,7 +36280,9 @@ "region": "Australia", "hostname": "au669.nordvpn.com", "number": 669, - "ip": "103.137.14.235", + "ips": [ + "103.137.14.235" + ], "tcp": true, "udp": true }, @@ -38575,7 +36290,9 @@ "region": "Australia", "hostname": "au670.nordvpn.com", "number": 670, - "ip": "103.107.196.195", + "ips": [ + "103.107.196.195" + ], "tcp": true, "udp": true }, @@ -38583,7 +36300,9 @@ "region": "Australia", "hostname": "au671.nordvpn.com", "number": 671, - "ip": "103.107.196.211", + "ips": [ + "103.107.196.211" + ], "tcp": true, "udp": true }, @@ -38591,7 +36310,9 @@ "region": "Australia", "hostname": "au673.nordvpn.com", "number": 673, - "ip": "103.107.196.227", + "ips": [ + "103.107.196.227" + ], "tcp": true, "udp": true }, @@ -38599,7 +36320,9 @@ "region": "Australia", "hostname": "au680.nordvpn.com", "number": 680, - "ip": "116.90.72.91", + "ips": [ + "116.90.72.91" + ], "tcp": true, "udp": true }, @@ -38607,7 +36330,9 @@ "region": "Australia", "hostname": "au681.nordvpn.com", "number": 681, - "ip": "116.90.72.99", + "ips": [ + "116.90.72.99" + ], "tcp": true, "udp": true }, @@ -38615,7 +36340,9 @@ "region": "Australia", "hostname": "au682.nordvpn.com", "number": 682, - "ip": "116.90.72.107", + "ips": [ + "116.90.72.107" + ], "tcp": true, "udp": true }, @@ -38623,7 +36350,9 @@ "region": "Australia", "hostname": "au684.nordvpn.com", "number": 684, - "ip": "103.137.12.51", + "ips": [ + "103.137.12.51" + ], "tcp": true, "udp": true }, @@ -38631,7 +36360,9 @@ "region": "Australia", "hostname": "au685.nordvpn.com", "number": 685, - "ip": "103.137.12.43", + "ips": [ + "103.137.12.43" + ], "tcp": true, "udp": true }, @@ -38639,7 +36370,9 @@ "region": "Australia", "hostname": "au686.nordvpn.com", "number": 686, - "ip": "103.137.14.243", + "ips": [ + "103.137.14.243" + ], "tcp": true, "udp": true }, @@ -38647,7 +36380,9 @@ "region": "Australia", "hostname": "au688.nordvpn.com", "number": 688, - "ip": "103.137.15.11", + "ips": [ + "103.137.15.11" + ], "tcp": true, "udp": true }, @@ -38655,7 +36390,9 @@ "region": "Australia", "hostname": "au689.nordvpn.com", "number": 689, - "ip": "103.137.15.19", + "ips": [ + "103.137.15.19" + ], "tcp": true, "udp": true }, @@ -38663,7 +36400,9 @@ "region": "Australia", "hostname": "au690.nordvpn.com", "number": 690, - "ip": "103.137.15.27", + "ips": [ + "103.137.15.27" + ], "tcp": true, "udp": true }, @@ -38671,7 +36410,9 @@ "region": "Australia", "hostname": "au691.nordvpn.com", "number": 691, - "ip": "103.137.15.35", + "ips": [ + "103.137.15.35" + ], "tcp": true, "udp": true }, @@ -38679,7 +36420,9 @@ "region": "Australia", "hostname": "au692.nordvpn.com", "number": 692, - "ip": "103.107.196.235", + "ips": [ + "103.107.196.235" + ], "tcp": true, "udp": true }, @@ -38687,7 +36430,9 @@ "region": "Australia", "hostname": "au693.nordvpn.com", "number": 693, - "ip": "103.107.196.243", + "ips": [ + "103.107.196.243" + ], "tcp": true, "udp": true }, @@ -38695,7 +36440,9 @@ "region": "Australia", "hostname": "au694.nordvpn.com", "number": 694, - "ip": "103.107.197.75", + "ips": [ + "103.107.197.75" + ], "tcp": true, "udp": true }, @@ -38703,7 +36450,9 @@ "region": "Australia", "hostname": "au695.nordvpn.com", "number": 695, - "ip": "103.107.197.83", + "ips": [ + "103.107.197.83" + ], "tcp": true, "udp": true }, @@ -38711,7 +36460,9 @@ "region": "Australia", "hostname": "au700.nordvpn.com", "number": 700, - "ip": "103.1.212.19", + "ips": [ + "103.1.212.19" + ], "tcp": true, "udp": true }, @@ -38719,7 +36470,9 @@ "region": "Australia", "hostname": "au701.nordvpn.com", "number": 701, - "ip": "103.1.212.27", + "ips": [ + "103.1.212.27" + ], "tcp": true, "udp": true }, @@ -38727,15 +36480,9 @@ "region": "Australia", "hostname": "au702.nordvpn.com", "number": 702, - "ip": "103.1.212.35", - "tcp": true, - "udp": true - }, - { - "region": "Australia", - "hostname": "au703.nordvpn.com", - "number": 703, - "ip": "103.1.212.43", + "ips": [ + "103.1.212.35" + ], "tcp": true, "udp": true }, @@ -38743,7 +36490,9 @@ "region": "Australia", "hostname": "au704.nordvpn.com", "number": 704, - "ip": "103.1.212.51", + "ips": [ + "103.1.212.51" + ], "tcp": true, "udp": true }, @@ -38751,7 +36500,9 @@ "region": "Australia", "hostname": "au705.nordvpn.com", "number": 705, - "ip": "103.1.212.59", + "ips": [ + "103.1.212.59" + ], "tcp": true, "udp": true }, @@ -38759,7 +36510,9 @@ "region": "Australia", "hostname": "au706.nordvpn.com", "number": 706, - "ip": "103.1.212.67", + "ips": [ + "103.1.212.67" + ], "tcp": true, "udp": true }, @@ -38767,7 +36520,9 @@ "region": "Australia", "hostname": "au707.nordvpn.com", "number": 707, - "ip": "103.1.212.75", + "ips": [ + "103.1.212.75" + ], "tcp": true, "udp": true }, @@ -38775,7 +36530,9 @@ "region": "Australia", "hostname": "au711.nordvpn.com", "number": 711, - "ip": "103.1.213.139", + "ips": [ + "103.1.213.139" + ], "tcp": true, "udp": true }, @@ -38783,7 +36540,9 @@ "region": "Australia", "hostname": "au712.nordvpn.com", "number": 712, - "ip": "103.1.213.163", + "ips": [ + "103.1.213.163" + ], "tcp": true, "udp": true }, @@ -38791,7 +36550,9 @@ "region": "Australia", "hostname": "au713.nordvpn.com", "number": 713, - "ip": "103.1.212.195", + "ips": [ + "103.1.212.195" + ], "tcp": true, "udp": true }, @@ -38799,7 +36560,9 @@ "region": "Australia", "hostname": "au714.nordvpn.com", "number": 714, - "ip": "103.1.212.187", + "ips": [ + "103.1.212.187" + ], "tcp": true, "udp": true }, @@ -38807,7 +36570,9 @@ "region": "Australia", "hostname": "au725.nordvpn.com", "number": 725, - "ip": "185.218.127.1", + "ips": [ + "185.218.127.1" + ], "tcp": true, "udp": true }, @@ -38815,7 +36580,9 @@ "region": "Australia", "hostname": "au726.nordvpn.com", "number": 726, - "ip": "185.218.127.3", + "ips": [ + "185.218.127.3" + ], "tcp": true, "udp": true }, @@ -38823,7 +36590,9 @@ "region": "Australia", "hostname": "au727.nordvpn.com", "number": 727, - "ip": "185.218.127.5", + "ips": [ + "185.218.127.5" + ], "tcp": true, "udp": true }, @@ -38831,7 +36600,9 @@ "region": "Australia", "hostname": "au728.nordvpn.com", "number": 728, - "ip": "185.218.127.7", + "ips": [ + "185.218.127.7" + ], "tcp": true, "udp": true }, @@ -38839,7 +36610,9 @@ "region": "Australia", "hostname": "au729.nordvpn.com", "number": 729, - "ip": "185.218.127.9", + "ips": [ + "185.218.127.9" + ], "tcp": true, "udp": true }, @@ -38847,7 +36620,9 @@ "region": "Australia", "hostname": "au730.nordvpn.com", "number": 730, - "ip": "185.218.127.11", + "ips": [ + "185.218.127.11" + ], "tcp": true, "udp": true }, @@ -38855,7 +36630,9 @@ "region": "Australia", "hostname": "au731.nordvpn.com", "number": 731, - "ip": "185.218.127.13", + "ips": [ + "185.218.127.13" + ], "tcp": true, "udp": true }, @@ -38863,7 +36640,9 @@ "region": "Australia", "hostname": "au732.nordvpn.com", "number": 732, - "ip": "185.218.127.15", + "ips": [ + "185.218.127.15" + ], "tcp": true, "udp": true }, @@ -38871,7 +36650,9 @@ "region": "Australia", "hostname": "au733.nordvpn.com", "number": 733, - "ip": "116.90.72.115", + "ips": [ + "116.90.72.115" + ], "tcp": true, "udp": true }, @@ -38879,7 +36660,9 @@ "region": "Australia", "hostname": "au734.nordvpn.com", "number": 734, - "ip": "45.248.77.115", + "ips": [ + "45.248.77.115" + ], "tcp": true, "udp": true }, @@ -38887,7 +36670,9 @@ "region": "Australia", "hostname": "au735.nordvpn.com", "number": 735, - "ip": "45.248.77.123", + "ips": [ + "45.248.77.123" + ], "tcp": true, "udp": true }, @@ -38895,7 +36680,9 @@ "region": "Australia", "hostname": "au736.nordvpn.com", "number": 736, - "ip": "144.48.39.3", + "ips": [ + "144.48.39.3" + ], "tcp": true, "udp": true }, @@ -38903,7 +36690,9 @@ "region": "Australia", "hostname": "au737.nordvpn.com", "number": 737, - "ip": "144.48.39.179", + "ips": [ + "144.48.39.179" + ], "tcp": true, "udp": true }, @@ -38911,7 +36700,9 @@ "region": "Australia", "hostname": "au738.nordvpn.com", "number": 738, - "ip": "144.48.39.187", + "ips": [ + "144.48.39.187" + ], "tcp": true, "udp": true }, @@ -38919,7 +36710,9 @@ "region": "Australia", "hostname": "au739.nordvpn.com", "number": 739, - "ip": "144.48.39.203", + "ips": [ + "144.48.39.203" + ], "tcp": true, "udp": true }, @@ -38927,7 +36720,9 @@ "region": "Australia", "hostname": "au740.nordvpn.com", "number": 740, - "ip": "45.248.77.203", + "ips": [ + "45.248.77.203" + ], "tcp": true, "udp": true }, @@ -38935,7 +36730,9 @@ "region": "Australia", "hostname": "au741.nordvpn.com", "number": 741, - "ip": "45.248.77.155", + "ips": [ + "45.248.77.155" + ], "tcp": true, "udp": true }, @@ -38943,7 +36740,9 @@ "region": "Australia", "hostname": "au742.nordvpn.com", "number": 742, - "ip": "45.248.77.163", + "ips": [ + "45.248.77.163" + ], "tcp": true, "udp": true }, @@ -38951,7 +36750,9 @@ "region": "Australia", "hostname": "au743.nordvpn.com", "number": 743, - "ip": "45.248.77.171", + "ips": [ + "45.248.77.171" + ], "tcp": true, "udp": true }, @@ -38959,7 +36760,9 @@ "region": "Australia", "hostname": "au744.nordvpn.com", "number": 744, - "ip": "45.248.77.147", + "ips": [ + "45.248.77.147" + ], "tcp": true, "udp": true }, @@ -38967,7 +36770,9 @@ "region": "Australia", "hostname": "au745.nordvpn.com", "number": 745, - "ip": "45.248.77.107", + "ips": [ + "45.248.77.107" + ], "tcp": true, "udp": true }, @@ -38975,7 +36780,9 @@ "region": "Australia", "hostname": "au746.nordvpn.com", "number": 746, - "ip": "185.218.127.77", + "ips": [ + "185.218.127.77" + ], "tcp": true, "udp": true }, @@ -38983,7 +36790,9 @@ "region": "Australia", "hostname": "au747.nordvpn.com", "number": 747, - "ip": "185.218.127.79", + "ips": [ + "185.218.127.79" + ], "tcp": true, "udp": true }, @@ -38991,7 +36800,9 @@ "region": "Australia", "hostname": "au748.nordvpn.com", "number": 748, - "ip": "185.218.127.81", + "ips": [ + "185.218.127.81" + ], "tcp": true, "udp": true }, @@ -38999,7 +36810,9 @@ "region": "Australia", "hostname": "au749.nordvpn.com", "number": 749, - "ip": "185.218.127.83", + "ips": [ + "185.218.127.83" + ], "tcp": true, "udp": true }, @@ -39007,7 +36820,9 @@ "region": "Australia", "hostname": "au750.nordvpn.com", "number": 750, - "ip": "185.218.127.85", + "ips": [ + "185.218.127.85" + ], "tcp": true, "udp": true }, @@ -39015,7 +36830,9 @@ "region": "Australia", "hostname": "au751.nordvpn.com", "number": 751, - "ip": "185.218.127.87", + "ips": [ + "185.218.127.87" + ], "tcp": true, "udp": true }, @@ -39023,7 +36840,9 @@ "region": "Australia", "hostname": "au752.nordvpn.com", "number": 752, - "ip": "185.218.127.89", + "ips": [ + "185.218.127.89" + ], "tcp": true, "udp": true }, @@ -39031,7 +36850,9 @@ "region": "Australia", "hostname": "au753.nordvpn.com", "number": 753, - "ip": "103.192.80.3", + "ips": [ + "103.192.80.3" + ], "tcp": true, "udp": true }, @@ -39039,7 +36860,9 @@ "region": "Australia", "hostname": "au754.nordvpn.com", "number": 754, - "ip": "144.48.37.3", + "ips": [ + "144.48.37.3" + ], "tcp": true, "udp": true }, @@ -39047,7 +36870,9 @@ "region": "Australia", "hostname": "au755.nordvpn.com", "number": 755, - "ip": "144.48.37.11", + "ips": [ + "144.48.37.11" + ], "tcp": true, "udp": true }, @@ -39055,7 +36880,9 @@ "region": "Australia", "hostname": "au756.nordvpn.com", "number": 756, - "ip": "144.48.37.35", + "ips": [ + "144.48.37.35" + ], "tcp": true, "udp": true }, @@ -39063,7 +36890,9 @@ "region": "Australia", "hostname": "au757.nordvpn.com", "number": 757, - "ip": "144.48.38.3", + "ips": [ + "144.48.38.3" + ], "tcp": true, "udp": true }, @@ -39071,7 +36900,9 @@ "region": "Australia", "hostname": "au758.nordvpn.com", "number": 758, - "ip": "144.48.37.59", + "ips": [ + "144.48.37.59" + ], "tcp": true, "udp": true }, @@ -39079,7 +36910,9 @@ "region": "Australia", "hostname": "au759.nordvpn.com", "number": 759, - "ip": "144.48.37.67", + "ips": [ + "144.48.37.67" + ], "tcp": true, "udp": true }, @@ -39087,7 +36920,9 @@ "region": "Australia", "hostname": "au760.nordvpn.com", "number": 760, - "ip": "144.48.38.171", + "ips": [ + "144.48.38.171" + ], "tcp": true, "udp": true }, @@ -39095,7 +36930,9 @@ "region": "Australia", "hostname": "au761.nordvpn.com", "number": 761, - "ip": "144.48.38.163", + "ips": [ + "144.48.38.163" + ], "tcp": true, "udp": true }, @@ -39103,7 +36940,9 @@ "region": "Australia", "hostname": "au762.nordvpn.com", "number": 762, - "ip": "144.48.38.155", + "ips": [ + "144.48.38.155" + ], "tcp": true, "udp": true }, @@ -39111,7 +36950,9 @@ "region": "Australia", "hostname": "au763.nordvpn.com", "number": 763, - "ip": "144.48.37.131", + "ips": [ + "144.48.37.131" + ], "tcp": true, "udp": true }, @@ -39119,7 +36960,9 @@ "region": "Australia", "hostname": "au764.nordvpn.com", "number": 764, - "ip": "144.48.37.75", + "ips": [ + "144.48.37.75" + ], "tcp": true, "udp": true }, @@ -39127,7 +36970,9 @@ "region": "Australia", "hostname": "au765.nordvpn.com", "number": 765, - "ip": "103.137.15.43", + "ips": [ + "103.137.15.43" + ], "tcp": true, "udp": true }, @@ -39135,7 +36980,9 @@ "region": "Australia", "hostname": "au766.nordvpn.com", "number": 766, - "ip": "103.137.15.51", + "ips": [ + "103.137.15.51" + ], "tcp": true, "udp": true }, @@ -39143,7 +36990,9 @@ "region": "Australia", "hostname": "au767.nordvpn.com", "number": 767, - "ip": "103.137.15.59", + "ips": [ + "103.137.15.59" + ], "tcp": true, "udp": true }, @@ -39151,7 +37000,9 @@ "region": "Australia", "hostname": "au768.nordvpn.com", "number": 768, - "ip": "103.137.15.67", + "ips": [ + "103.137.15.67" + ], "tcp": true, "udp": true }, @@ -39159,7 +37010,9 @@ "region": "Australia", "hostname": "au769.nordvpn.com", "number": 769, - "ip": "103.137.15.75", + "ips": [ + "103.137.15.75" + ], "tcp": true, "udp": true }, @@ -39167,7 +37020,329 @@ "region": "Australia", "hostname": "au770.nordvpn.com", "number": 770, - "ip": "103.137.15.83", + "ips": [ + "103.137.15.83" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au772.nordvpn.com", + "number": 772, + "ips": [ + "45.248.78.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au773.nordvpn.com", + "number": 773, + "ips": [ + "45.248.78.6" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au774.nordvpn.com", + "number": 774, + "ips": [ + "45.248.78.10" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au775.nordvpn.com", + "number": 775, + "ips": [ + "45.248.78.226" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au776.nordvpn.com", + "number": 776, + "ips": [ + "45.248.78.231" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au777.nordvpn.com", + "number": 777, + "ips": [ + "45.248.78.236" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au778.nordvpn.com", + "number": 778, + "ips": [ + "45.248.78.241" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au779.nordvpn.com", + "number": 779, + "ips": [ + "45.248.78.178" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au780.nordvpn.com", + "number": 780, + "ips": [ + "45.248.78.185" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au781.nordvpn.com", + "number": 781, + "ips": [ + "45.248.78.194" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au782.nordvpn.com", + "number": 782, + "ips": [ + "45.248.78.201" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au783.nordvpn.com", + "number": 783, + "ips": [ + "45.248.78.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au784.nordvpn.com", + "number": 784, + "ips": [ + "103.1.212.83" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au785.nordvpn.com", + "number": 785, + "ips": [ + "45.248.79.178" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au786.nordvpn.com", + "number": 786, + "ips": [ + "45.248.79.182" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au787.nordvpn.com", + "number": 787, + "ips": [ + "45.248.79.186" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au788.nordvpn.com", + "number": 788, + "ips": [ + "45.248.79.154" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au789.nordvpn.com", + "number": 789, + "ips": [ + "45.248.79.250" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au790.nordvpn.com", + "number": 790, + "ips": [ + "103.107.197.91" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au791.nordvpn.com", + "number": 791, + "ips": [ + "103.107.197.99" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au792.nordvpn.com", + "number": 792, + "ips": [ + "103.107.197.107" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au793.nordvpn.com", + "number": 793, + "ips": [ + "103.107.197.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au794.nordvpn.com", + "number": 794, + "ips": [ + "103.107.197.123" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au795.nordvpn.com", + "number": 795, + "ips": [ + "103.107.197.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au796.nordvpn.com", + "number": 796, + "ips": [ + "103.107.197.139" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au797.nordvpn.com", + "number": 797, + "ips": [ + "103.137.12.19" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au798.nordvpn.com", + "number": 798, + "ips": [ + "103.137.12.27" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au799.nordvpn.com", + "number": 799, + "ips": [ + "103.137.12.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au800.nordvpn.com", + "number": 800, + "ips": [ + "103.137.12.123" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au801.nordvpn.com", + "number": 801, + "ips": [ + "45.248.79.106" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au802.nordvpn.com", + "number": 802, + "ips": [ + "45.248.79.114" + ], + "tcp": true, + "udp": true + }, + { + "region": "Australia", + "hostname": "au803.nordvpn.com", + "number": 803, + "ips": [ + "45.248.79.119" + ], "tcp": true, "udp": true }, @@ -39175,7 +37350,9 @@ "region": "Austria", "hostname": "at80.nordvpn.com", "number": 80, - "ip": "5.253.207.203", + "ips": [ + "5.253.207.203" + ], "tcp": true, "udp": true }, @@ -39183,7 +37360,9 @@ "region": "Austria", "hostname": "at86.nordvpn.com", "number": 86, - "ip": "185.216.34.100", + "ips": [ + "185.216.34.100" + ], "tcp": true, "udp": true }, @@ -39191,7 +37370,9 @@ "region": "Austria", "hostname": "at88.nordvpn.com", "number": 88, - "ip": "217.64.127.219", + "ips": [ + "217.64.127.219" + ], "tcp": true, "udp": true }, @@ -39199,7 +37380,9 @@ "region": "Austria", "hostname": "at89.nordvpn.com", "number": 89, - "ip": "91.132.139.75", + "ips": [ + "91.132.139.75" + ], "tcp": true, "udp": true }, @@ -39207,7 +37390,9 @@ "region": "Austria", "hostname": "at90.nordvpn.com", "number": 90, - "ip": "91.132.139.83", + "ips": [ + "91.132.139.83" + ], "tcp": true, "udp": true }, @@ -39215,7 +37400,9 @@ "region": "Austria", "hostname": "at91.nordvpn.com", "number": 91, - "ip": "185.180.12.33", + "ips": [ + "185.180.12.33" + ], "tcp": true, "udp": true }, @@ -39223,7 +37410,9 @@ "region": "Austria", "hostname": "at92.nordvpn.com", "number": 92, - "ip": "89.187.168.197", + "ips": [ + "89.187.168.197" + ], "tcp": true, "udp": true }, @@ -39231,7 +37420,9 @@ "region": "Austria", "hostname": "at93.nordvpn.com", "number": 93, - "ip": "89.187.168.202", + "ips": [ + "89.187.168.202" + ], "tcp": true, "udp": true }, @@ -39239,7 +37430,9 @@ "region": "Austria", "hostname": "at94.nordvpn.com", "number": 94, - "ip": "185.216.34.219", + "ips": [ + "185.216.34.219" + ], "tcp": true, "udp": true }, @@ -39247,7 +37440,9 @@ "region": "Austria", "hostname": "at95.nordvpn.com", "number": 95, - "ip": "185.216.34.171", + "ips": [ + "185.216.34.171" + ], "tcp": true, "udp": true }, @@ -39255,7 +37450,9 @@ "region": "Austria", "hostname": "at96.nordvpn.com", "number": 96, - "ip": "185.236.202.83", + "ips": [ + "185.236.202.83" + ], "tcp": true, "udp": true }, @@ -39263,7 +37460,9 @@ "region": "Austria", "hostname": "at97.nordvpn.com", "number": 97, - "ip": "185.236.202.88", + "ips": [ + "185.236.202.88" + ], "tcp": true, "udp": true }, @@ -39271,7 +37470,9 @@ "region": "Austria", "hostname": "at98.nordvpn.com", "number": 98, - "ip": "37.120.155.227", + "ips": [ + "37.120.155.227" + ], "tcp": true, "udp": true }, @@ -39279,7 +37480,9 @@ "region": "Austria", "hostname": "at99.nordvpn.com", "number": 99, - "ip": "37.120.155.232", + "ips": [ + "37.120.155.232" + ], "tcp": true, "udp": true }, @@ -39287,7 +37490,9 @@ "region": "Austria", "hostname": "at100.nordvpn.com", "number": 100, - "ip": "37.120.155.211", + "ips": [ + "37.120.155.211" + ], "tcp": true, "udp": true }, @@ -39295,7 +37500,9 @@ "region": "Austria", "hostname": "at101.nordvpn.com", "number": 101, - "ip": "37.120.155.216", + "ips": [ + "37.120.155.216" + ], "tcp": true, "udp": true }, @@ -39303,7 +37510,9 @@ "region": "Austria", "hostname": "at102.nordvpn.com", "number": 102, - "ip": "89.187.168.220", + "ips": [ + "89.187.168.220" + ], "tcp": true, "udp": true }, @@ -39311,7 +37520,9 @@ "region": "Austria", "hostname": "at103.nordvpn.com", "number": 103, - "ip": "89.187.168.216", + "ips": [ + "89.187.168.216" + ], "tcp": true, "udp": true }, @@ -39319,7 +37530,9 @@ "region": "Austria", "hostname": "at104.nordvpn.com", "number": 104, - "ip": "89.187.168.225", + "ips": [ + "89.187.168.225" + ], "tcp": true, "udp": true }, @@ -39327,7 +37540,9 @@ "region": "Austria", "hostname": "at105.nordvpn.com", "number": 105, - "ip": "91.132.139.59", + "ips": [ + "91.132.139.59" + ], "tcp": true, "udp": true }, @@ -39335,7 +37550,9 @@ "region": "Austria", "hostname": "at106.nordvpn.com", "number": 106, - "ip": "185.244.212.51", + "ips": [ + "185.244.212.51" + ], "tcp": true, "udp": true }, @@ -39343,7 +37560,9 @@ "region": "Austria", "hostname": "at107.nordvpn.com", "number": 107, - "ip": "5.253.207.19", + "ips": [ + "5.253.207.19" + ], "tcp": true, "udp": true }, @@ -39351,7 +37570,9 @@ "region": "Austria", "hostname": "at108.nordvpn.com", "number": 108, - "ip": "5.253.207.195", + "ips": [ + "5.253.207.195" + ], "tcp": true, "udp": true }, @@ -39359,7 +37580,9 @@ "region": "Austria", "hostname": "at109.nordvpn.com", "number": 109, - "ip": "5.253.207.211", + "ips": [ + "5.253.207.211" + ], "tcp": true, "udp": true }, @@ -39367,7 +37590,9 @@ "region": "Austria", "hostname": "at110.nordvpn.com", "number": 110, - "ip": "5.253.207.219", + "ips": [ + "5.253.207.219" + ], "tcp": true, "udp": true }, @@ -39375,7 +37600,9 @@ "region": "Austria", "hostname": "at111.nordvpn.com", "number": 111, - "ip": "37.120.212.3", + "ips": [ + "37.120.212.3" + ], "tcp": true, "udp": true }, @@ -39383,7 +37610,9 @@ "region": "Austria", "hostname": "at112.nordvpn.com", "number": 112, - "ip": "37.120.212.11", + "ips": [ + "37.120.212.11" + ], "tcp": true, "udp": true }, @@ -39391,7 +37620,9 @@ "region": "Austria", "hostname": "at113.nordvpn.com", "number": 113, - "ip": "37.120.212.19", + "ips": [ + "37.120.212.19" + ], "tcp": true, "udp": true }, @@ -39399,7 +37630,9 @@ "region": "Austria", "hostname": "at114.nordvpn.com", "number": 114, - "ip": "185.180.12.43", + "ips": [ + "185.180.12.43" + ], "tcp": true, "udp": true }, @@ -39407,7 +37640,9 @@ "region": "Austria", "hostname": "at115.nordvpn.com", "number": 115, - "ip": "185.180.12.56", + "ips": [ + "185.180.12.56" + ], "tcp": true, "udp": true }, @@ -39415,7 +37650,9 @@ "region": "Austria", "hostname": "at116.nordvpn.com", "number": 116, - "ip": "185.180.12.248", + "ips": [ + "185.180.12.248" + ], "tcp": true, "udp": true }, @@ -39423,7 +37660,9 @@ "region": "Austria", "hostname": "at117.nordvpn.com", "number": 117, - "ip": "185.180.12.242", + "ips": [ + "185.180.12.242" + ], "tcp": true, "udp": true }, @@ -39431,7 +37670,9 @@ "region": "Austria", "hostname": "at118.nordvpn.com", "number": 118, - "ip": "185.180.12.245", + "ips": [ + "185.180.12.245" + ], "tcp": true, "udp": true }, @@ -39439,7 +37680,9 @@ "region": "Austria", "hostname": "at119.nordvpn.com", "number": 119, - "ip": "37.19.223.75", + "ips": [ + "37.19.223.75" + ], "tcp": true, "udp": true }, @@ -39447,7 +37690,9 @@ "region": "Austria", "hostname": "at120.nordvpn.com", "number": 120, - "ip": "37.19.223.80", + "ips": [ + "37.19.223.80" + ], "tcp": true, "udp": true }, @@ -39455,7 +37700,9 @@ "region": "Austria", "hostname": "at121.nordvpn.com", "number": 121, - "ip": "37.19.223.85", + "ips": [ + "37.19.223.85" + ], "tcp": true, "udp": true }, @@ -39463,7 +37710,9 @@ "region": "Austria", "hostname": "at122.nordvpn.com", "number": 122, - "ip": "37.19.195.2", + "ips": [ + "37.19.195.2" + ], "tcp": true, "udp": true }, @@ -39471,7 +37720,9 @@ "region": "Austria", "hostname": "at123.nordvpn.com", "number": 123, - "ip": "37.19.195.7", + "ips": [ + "37.19.195.7" + ], "tcp": true, "udp": true }, @@ -39479,7 +37730,9 @@ "region": "Austria", "hostname": "at124.nordvpn.com", "number": 124, - "ip": "37.19.195.12", + "ips": [ + "37.19.195.12" + ], "tcp": true, "udp": true }, @@ -39487,7 +37740,9 @@ "region": "Austria", "hostname": "at125.nordvpn.com", "number": 125, - "ip": "37.19.195.17", + "ips": [ + "37.19.195.17" + ], "tcp": true, "udp": true }, @@ -39495,7 +37750,9 @@ "region": "Austria", "hostname": "at126.nordvpn.com", "number": 126, - "ip": "37.19.195.22", + "ips": [ + "37.19.195.22" + ], "tcp": true, "udp": true }, @@ -39503,7 +37760,9 @@ "region": "Austria", "hostname": "at127.nordvpn.com", "number": 127, - "ip": "37.19.195.27", + "ips": [ + "37.19.195.27" + ], "tcp": true, "udp": true }, @@ -39511,7 +37770,9 @@ "region": "Austria", "hostname": "at128.nordvpn.com", "number": 128, - "ip": "37.19.195.32", + "ips": [ + "37.19.195.32" + ], "tcp": true, "udp": true }, @@ -39519,7 +37780,9 @@ "region": "Austria", "hostname": "at129.nordvpn.com", "number": 129, - "ip": "37.19.195.37", + "ips": [ + "37.19.195.37" + ], "tcp": true, "udp": true }, @@ -39527,7 +37790,9 @@ "region": "Austria", "hostname": "at130.nordvpn.com", "number": 130, - "ip": "37.19.195.129", + "ips": [ + "37.19.195.129" + ], "tcp": true, "udp": true }, @@ -39535,7 +37800,9 @@ "region": "Austria", "hostname": "at131.nordvpn.com", "number": 131, - "ip": "37.19.195.133", + "ips": [ + "37.19.195.133" + ], "tcp": true, "udp": true }, @@ -39543,7 +37810,9 @@ "region": "Austria", "hostname": "at132.nordvpn.com", "number": 132, - "ip": "37.19.195.137", + "ips": [ + "37.19.195.137" + ], "tcp": true, "udp": true }, @@ -39551,7 +37820,9 @@ "region": "Austria", "hostname": "at133.nordvpn.com", "number": 133, - "ip": "37.19.195.141", + "ips": [ + "37.19.195.141" + ], "tcp": true, "udp": true }, @@ -39559,7 +37830,9 @@ "region": "Austria", "hostname": "at134.nordvpn.com", "number": 134, - "ip": "37.19.195.145", + "ips": [ + "37.19.195.145" + ], "tcp": true, "udp": true }, @@ -39567,7 +37840,9 @@ "region": "Austria", "hostname": "at135.nordvpn.com", "number": 135, - "ip": "37.19.195.149", + "ips": [ + "37.19.195.149" + ], "tcp": true, "udp": true }, @@ -39575,7 +37850,109 @@ "region": "Austria", "hostname": "at136.nordvpn.com", "number": 136, - "ip": "37.19.195.153", + "ips": [ + "37.19.195.153" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at137.nordvpn.com", + "number": 137, + "ips": [ + "37.19.195.218" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at138.nordvpn.com", + "number": 138, + "ips": [ + "37.19.195.213" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at139.nordvpn.com", + "number": 139, + "ips": [ + "37.19.195.208" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at140.nordvpn.com", + "number": 140, + "ips": [ + "37.19.195.203" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at141.nordvpn.com", + "number": 141, + "ips": [ + "37.19.195.198" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at142.nordvpn.com", + "number": 142, + "ips": [ + "37.19.195.193" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at143.nordvpn.com", + "number": 143, + "ips": [ + "37.19.195.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at144.nordvpn.com", + "number": 144, + "ips": [ + "37.19.195.120" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at145.nordvpn.com", + "number": 145, + "ips": [ + "146.70.81.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "Austria", + "hostname": "at146.nordvpn.com", + "number": 146, + "ips": [ + "146.70.81.163" + ], "tcp": true, "udp": true }, @@ -39583,7 +37960,9 @@ "region": "Belgium", "hostname": "be148.nordvpn.com", "number": 148, - "ip": "82.102.19.137", + "ips": [ + "82.102.19.137" + ], "tcp": true, "udp": true }, @@ -39591,7 +37970,9 @@ "region": "Belgium", "hostname": "be149.nordvpn.com", "number": 149, - "ip": "77.243.191.250", + "ips": [ + "77.243.191.250" + ], "tcp": true, "udp": true }, @@ -39599,7 +37980,9 @@ "region": "Belgium", "hostname": "be150.nordvpn.com", "number": 150, - "ip": "185.210.217.115", + "ips": [ + "185.210.217.115" + ], "tcp": true, "udp": true }, @@ -39607,7 +37990,9 @@ "region": "Belgium", "hostname": "be151.nordvpn.com", "number": 151, - "ip": "185.210.217.120", + "ips": [ + "185.210.217.120" + ], "tcp": true, "udp": true }, @@ -39615,7 +38000,9 @@ "region": "Belgium", "hostname": "be152.nordvpn.com", "number": 152, - "ip": "82.102.19.131", + "ips": [ + "82.102.19.131" + ], "tcp": true, "udp": true }, @@ -39623,7 +38010,9 @@ "region": "Belgium", "hostname": "be153.nordvpn.com", "number": 153, - "ip": "82.102.19.211", + "ips": [ + "82.102.19.211" + ], "tcp": true, "udp": true }, @@ -39631,7 +38020,9 @@ "region": "Belgium", "hostname": "be154.nordvpn.com", "number": 154, - "ip": "82.102.19.216", + "ips": [ + "82.102.19.216" + ], "tcp": true, "udp": true }, @@ -39639,7 +38030,9 @@ "region": "Belgium", "hostname": "be155.nordvpn.com", "number": 155, - "ip": "82.102.19.51", + "ips": [ + "82.102.19.51" + ], "tcp": true, "udp": true }, @@ -39647,7 +38040,9 @@ "region": "Belgium", "hostname": "be156.nordvpn.com", "number": 156, - "ip": "185.232.21.99", + "ips": [ + "185.232.21.99" + ], "tcp": true, "udp": true }, @@ -39655,7 +38050,9 @@ "region": "Belgium", "hostname": "be157.nordvpn.com", "number": 157, - "ip": "77.243.191.243", + "ips": [ + "77.243.191.243" + ], "tcp": true, "udp": true }, @@ -39663,7 +38060,9 @@ "region": "Belgium", "hostname": "be158.nordvpn.com", "number": 158, - "ip": "37.120.143.211", + "ips": [ + "37.120.143.211" + ], "tcp": true, "udp": true }, @@ -39671,7 +38070,9 @@ "region": "Belgium", "hostname": "be159.nordvpn.com", "number": 159, - "ip": "37.120.143.219", + "ips": [ + "37.120.143.219" + ], "tcp": true, "udp": true }, @@ -39679,7 +38080,9 @@ "region": "Belgium", "hostname": "be160.nordvpn.com", "number": 160, - "ip": "37.120.143.227", + "ips": [ + "37.120.143.227" + ], "tcp": true, "udp": true }, @@ -39687,7 +38090,9 @@ "region": "Belgium", "hostname": "be161.nordvpn.com", "number": 161, - "ip": "82.102.19.99", + "ips": [ + "82.102.19.99" + ], "tcp": true, "udp": true }, @@ -39695,7 +38100,9 @@ "region": "Belgium", "hostname": "be162.nordvpn.com", "number": 162, - "ip": "82.102.19.123", + "ips": [ + "82.102.19.123" + ], "tcp": true, "udp": true }, @@ -39703,7 +38110,9 @@ "region": "Belgium", "hostname": "be163.nordvpn.com", "number": 163, - "ip": "82.102.19.195", + "ips": [ + "82.102.19.195" + ], "tcp": true, "udp": true }, @@ -39711,7 +38120,9 @@ "region": "Belgium", "hostname": "be164.nordvpn.com", "number": 164, - "ip": "82.102.19.203", + "ips": [ + "82.102.19.203" + ], "tcp": true, "udp": true }, @@ -39719,7 +38130,9 @@ "region": "Belgium", "hostname": "be165.nordvpn.com", "number": 165, - "ip": "194.187.251.51", + "ips": [ + "194.187.251.51" + ], "tcp": true, "udp": true }, @@ -39727,7 +38140,9 @@ "region": "Belgium", "hostname": "be166.nordvpn.com", "number": 166, - "ip": "194.187.251.56", + "ips": [ + "194.187.251.56" + ], "tcp": true, "udp": true }, @@ -39735,7 +38150,9 @@ "region": "Belgium", "hostname": "be167.nordvpn.com", "number": 167, - "ip": "194.187.251.61", + "ips": [ + "194.187.251.61" + ], "tcp": true, "udp": true }, @@ -39743,7 +38160,9 @@ "region": "Belgium", "hostname": "be168.nordvpn.com", "number": 168, - "ip": "91.207.57.251", + "ips": [ + "91.207.57.251" + ], "tcp": true, "udp": true }, @@ -39751,7 +38170,9 @@ "region": "Belgium", "hostname": "be169.nordvpn.com", "number": 169, - "ip": "77.243.191.83", + "ips": [ + "77.243.191.83" + ], "tcp": true, "udp": true }, @@ -39759,7 +38180,9 @@ "region": "Belgium", "hostname": "be170.nordvpn.com", "number": 170, - "ip": "77.243.191.107", + "ips": [ + "77.243.191.107" + ], "tcp": true, "udp": true }, @@ -39767,7 +38190,9 @@ "region": "Belgium", "hostname": "be171.nordvpn.com", "number": 171, - "ip": "77.243.191.195", + "ips": [ + "77.243.191.195" + ], "tcp": true, "udp": true }, @@ -39775,7 +38200,9 @@ "region": "Belgium", "hostname": "be172.nordvpn.com", "number": 172, - "ip": "185.210.217.99", + "ips": [ + "185.210.217.99" + ], "tcp": true, "udp": true }, @@ -39783,7 +38210,9 @@ "region": "Belgium", "hostname": "be173.nordvpn.com", "number": 173, - "ip": "185.210.217.131", + "ips": [ + "185.210.217.131" + ], "tcp": true, "udp": true }, @@ -39791,7 +38220,9 @@ "region": "Belgium", "hostname": "be174.nordvpn.com", "number": 174, - "ip": "185.210.217.139", + "ips": [ + "185.210.217.139" + ], "tcp": true, "udp": true }, @@ -39799,7 +38230,9 @@ "region": "Belgium", "hostname": "be175.nordvpn.com", "number": 175, - "ip": "82.102.19.146", + "ips": [ + "82.102.19.146" + ], "tcp": true, "udp": true }, @@ -39807,7 +38240,9 @@ "region": "Belgium", "hostname": "be176.nordvpn.com", "number": 176, - "ip": "185.210.217.165", + "ips": [ + "185.210.217.165" + ], "tcp": true, "udp": true }, @@ -39815,7 +38250,9 @@ "region": "Belgium", "hostname": "be177.nordvpn.com", "number": 177, - "ip": "185.210.217.170", + "ips": [ + "185.210.217.170" + ], "tcp": true, "udp": true }, @@ -39823,7 +38260,9 @@ "region": "Belgium", "hostname": "be178.nordvpn.com", "number": 178, - "ip": "37.120.143.3", + "ips": [ + "37.120.143.3" + ], "tcp": true, "udp": true }, @@ -39831,7 +38270,9 @@ "region": "Belgium", "hostname": "be179.nordvpn.com", "number": 179, - "ip": "37.120.143.11", + "ips": [ + "37.120.143.11" + ], "tcp": true, "udp": true }, @@ -39839,7 +38280,9 @@ "region": "Belgium", "hostname": "be180.nordvpn.com", "number": 180, - "ip": "37.120.143.19", + "ips": [ + "37.120.143.19" + ], "tcp": true, "udp": true }, @@ -39847,7 +38290,9 @@ "region": "Belgium", "hostname": "be181.nordvpn.com", "number": 181, - "ip": "37.120.143.27", + "ips": [ + "37.120.143.27" + ], "tcp": true, "udp": true }, @@ -39855,7 +38300,9 @@ "region": "Belgium", "hostname": "be182.nordvpn.com", "number": 182, - "ip": "37.120.143.35", + "ips": [ + "37.120.143.35" + ], "tcp": true, "udp": true }, @@ -39863,7 +38310,9 @@ "region": "Belgium", "hostname": "be183.nordvpn.com", "number": 183, - "ip": "82.102.19.141", + "ips": [ + "82.102.19.141" + ], "tcp": true, "udp": true }, @@ -39871,7 +38320,9 @@ "region": "Belgium", "hostname": "be184.nordvpn.com", "number": 184, - "ip": "188.95.55.3", + "ips": [ + "188.95.55.3" + ], "tcp": true, "udp": true }, @@ -39879,7 +38330,9 @@ "region": "Belgium", "hostname": "be185.nordvpn.com", "number": 185, - "ip": "188.95.55.8", + "ips": [ + "188.95.55.8" + ], "tcp": true, "udp": true }, @@ -39887,7 +38340,9 @@ "region": "Belgium", "hostname": "be186.nordvpn.com", "number": 186, - "ip": "188.95.55.13", + "ips": [ + "188.95.55.13" + ], "tcp": true, "udp": true }, @@ -39895,7 +38350,9 @@ "region": "Belgium", "hostname": "be187.nordvpn.com", "number": 187, - "ip": "188.95.55.18", + "ips": [ + "188.95.55.18" + ], "tcp": true, "udp": true }, @@ -39903,7 +38360,9 @@ "region": "Belgium", "hostname": "be188.nordvpn.com", "number": 188, - "ip": "188.95.55.23", + "ips": [ + "188.95.55.23" + ], "tcp": true, "udp": true }, @@ -39911,7 +38370,9 @@ "region": "Belgium", "hostname": "be189.nordvpn.com", "number": 189, - "ip": "188.95.55.28", + "ips": [ + "188.95.55.28" + ], "tcp": true, "udp": true }, @@ -39919,7 +38380,9 @@ "region": "Belgium", "hostname": "be190.nordvpn.com", "number": 190, - "ip": "188.95.55.33", + "ips": [ + "188.95.55.33" + ], "tcp": true, "udp": true }, @@ -39927,7 +38390,9 @@ "region": "Belgium", "hostname": "be191.nordvpn.com", "number": 191, - "ip": "188.95.55.38", + "ips": [ + "188.95.55.38" + ], "tcp": true, "udp": true }, @@ -39935,7 +38400,9 @@ "region": "Belgium", "hostname": "be192.nordvpn.com", "number": 192, - "ip": "188.95.55.43", + "ips": [ + "188.95.55.43" + ], "tcp": true, "udp": true }, @@ -39943,7 +38410,9 @@ "region": "Belgium", "hostname": "be193.nordvpn.com", "number": 193, - "ip": "188.95.55.48", + "ips": [ + "188.95.55.48" + ], "tcp": true, "udp": true }, @@ -39951,7 +38420,9 @@ "region": "Belgium", "hostname": "be194.nordvpn.com", "number": 194, - "ip": "188.95.55.53", + "ips": [ + "188.95.55.53" + ], "tcp": true, "udp": true }, @@ -39959,7 +38430,9 @@ "region": "Belgium", "hostname": "be195.nordvpn.com", "number": 195, - "ip": "188.95.55.58", + "ips": [ + "188.95.55.58" + ], "tcp": true, "udp": true }, @@ -39967,7 +38440,9 @@ "region": "Belgium", "hostname": "be196.nordvpn.com", "number": 196, - "ip": "188.95.55.63", + "ips": [ + "188.95.55.63" + ], "tcp": true, "udp": true }, @@ -39975,7 +38450,9 @@ "region": "Belgium", "hostname": "be197.nordvpn.com", "number": 197, - "ip": "188.95.55.68", + "ips": [ + "188.95.55.68" + ], "tcp": true, "udp": true }, @@ -39983,7 +38460,9 @@ "region": "Belgium", "hostname": "be198.nordvpn.com", "number": 198, - "ip": "188.95.55.73", + "ips": [ + "188.95.55.73" + ], "tcp": true, "udp": true }, @@ -39991,7 +38470,9 @@ "region": "Belgium", "hostname": "be199.nordvpn.com", "number": 199, - "ip": "188.95.55.78", + "ips": [ + "188.95.55.78" + ], "tcp": true, "udp": true }, @@ -39999,7 +38480,9 @@ "region": "Belgium", "hostname": "be200.nordvpn.com", "number": 200, - "ip": "188.95.55.83", + "ips": [ + "188.95.55.83" + ], "tcp": true, "udp": true }, @@ -40007,7 +38490,9 @@ "region": "Belgium", "hostname": "be201.nordvpn.com", "number": 201, - "ip": "188.95.55.88", + "ips": [ + "188.95.55.88" + ], "tcp": true, "udp": true }, @@ -40015,7 +38500,9 @@ "region": "Belgium", "hostname": "be202.nordvpn.com", "number": 202, - "ip": "188.95.55.93", + "ips": [ + "188.95.55.93" + ], "tcp": true, "udp": true }, @@ -40023,7 +38510,49 @@ "region": "Belgium", "hostname": "be203.nordvpn.com", "number": 203, - "ip": "188.95.55.98", + "ips": [ + "188.95.55.98" + ], + "tcp": true, + "udp": true + }, + { + "region": "Belgium", + "hostname": "be204.nordvpn.com", + "number": 204, + "ips": [ + "91.90.123.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "Belgium", + "hostname": "be205.nordvpn.com", + "number": 205, + "ips": [ + "91.90.123.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "Belgium", + "hostname": "be206.nordvpn.com", + "number": 206, + "ips": [ + "5.253.205.3" + ], + "tcp": true, + "udp": true + }, + { + "region": "Belgium", + "hostname": "be207.nordvpn.com", + "number": 207, + "ips": [ + "146.70.55.43" + ], "tcp": true, "udp": true }, @@ -40031,7 +38560,9 @@ "region": "Bosnia and Herzegovina", "hostname": "ba9.nordvpn.com", "number": 9, - "ip": "185.99.3.104", + "ips": [ + "185.99.3.104" + ], "tcp": true, "udp": true }, @@ -40039,7 +38570,9 @@ "region": "Bosnia and Herzegovina", "hostname": "ba10.nordvpn.com", "number": 10, - "ip": "185.99.3.18", + "ips": [ + "185.99.3.18" + ], "tcp": true, "udp": true }, @@ -40047,71 +38580,9 @@ "region": "Bosnia and Herzegovina", "hostname": "ba11.nordvpn.com", "number": 11, - "ip": "185.99.3.20", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br45.nordvpn.com", - "number": 45, - "ip": "192.154.198.15", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br46.nordvpn.com", - "number": 46, - "ip": "192.154.198.17", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br47.nordvpn.com", - "number": 47, - "ip": "192.154.198.19", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br48.nordvpn.com", - "number": 48, - "ip": "192.154.198.21", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br49.nordvpn.com", - "number": 49, - "ip": "192.154.198.23", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br50.nordvpn.com", - "number": 50, - "ip": "192.154.198.25", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br51.nordvpn.com", - "number": 51, - "ip": "192.154.198.27", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br52.nordvpn.com", - "number": 52, - "ip": "192.154.198.29", + "ips": [ + "185.99.3.20" + ], "tcp": true, "udp": true }, @@ -40119,15 +38590,9 @@ "region": "Brazil", "hostname": "br53.nordvpn.com", "number": 53, - "ip": "177.54.151.174", - "tcp": true, - "udp": true - }, - { - "region": "Brazil", - "hostname": "br69.nordvpn.com", - "number": 69, - "ip": "192.154.198.13", + "ips": [ + "177.54.151.174" + ], "tcp": true, "udp": true }, @@ -40135,7 +38600,19 @@ "region": "Brazil", "hostname": "br70.nordvpn.com", "number": 70, - "ip": "177.54.145.153", + "ips": [ + "177.54.145.153" + ], + "tcp": true, + "udp": true + }, + { + "region": "Brazil", + "hostname": "br71.nordvpn.com", + "number": 71, + "ips": [ + "189.1.170.129" + ], "tcp": true, "udp": true }, @@ -40143,7 +38620,9 @@ "region": "Brazil", "hostname": "br72.nordvpn.com", "number": 72, - "ip": "189.1.168.146", + "ips": [ + "189.1.168.146" + ], "tcp": true, "udp": true }, @@ -40151,7 +38630,9 @@ "region": "Brazil", "hostname": "br73.nordvpn.com", "number": 73, - "ip": "189.1.168.154", + "ips": [ + "189.1.168.154" + ], "tcp": true, "udp": true }, @@ -40159,7 +38640,9 @@ "region": "Brazil", "hostname": "br74.nordvpn.com", "number": 74, - "ip": "177.54.145.229", + "ips": [ + "177.54.145.229" + ], "tcp": true, "udp": true }, @@ -40167,7 +38650,9 @@ "region": "Brazil", "hostname": "br75.nordvpn.com", "number": 75, - "ip": "185.153.176.1", + "ips": [ + "185.153.176.1" + ], "tcp": true, "udp": true }, @@ -40175,7 +38660,9 @@ "region": "Brazil", "hostname": "br76.nordvpn.com", "number": 76, - "ip": "185.153.176.17", + "ips": [ + "185.153.176.17" + ], "tcp": true, "udp": true }, @@ -40183,7 +38670,9 @@ "region": "Brazil", "hostname": "br77.nordvpn.com", "number": 77, - "ip": "185.153.176.33", + "ips": [ + "185.153.176.33" + ], "tcp": true, "udp": true }, @@ -40191,7 +38680,9 @@ "region": "Brazil", "hostname": "br78.nordvpn.com", "number": 78, - "ip": "185.153.176.49", + "ips": [ + "185.153.176.49" + ], "tcp": true, "udp": true }, @@ -40199,7 +38690,9 @@ "region": "Brazil", "hostname": "br79.nordvpn.com", "number": 79, - "ip": "185.153.176.64", + "ips": [ + "185.153.176.64" + ], "tcp": true, "udp": true }, @@ -40207,7 +38700,9 @@ "region": "Brazil", "hostname": "br80.nordvpn.com", "number": 80, - "ip": "185.153.176.79", + "ips": [ + "185.153.176.79" + ], "tcp": true, "udp": true }, @@ -40215,7 +38710,9 @@ "region": "Brazil", "hostname": "br81.nordvpn.com", "number": 81, - "ip": "185.153.176.94", + "ips": [ + "185.153.176.94" + ], "tcp": true, "udp": true }, @@ -40223,7 +38720,9 @@ "region": "Brazil", "hostname": "br82.nordvpn.com", "number": 82, - "ip": "185.153.176.109", + "ips": [ + "185.153.176.109" + ], "tcp": true, "udp": true }, @@ -40231,7 +38730,9 @@ "region": "Brazil", "hostname": "br83.nordvpn.com", "number": 83, - "ip": "185.153.176.129", + "ips": [ + "185.153.176.129" + ], "tcp": true, "udp": true }, @@ -40239,7 +38740,9 @@ "region": "Brazil", "hostname": "br84.nordvpn.com", "number": 84, - "ip": "185.153.176.147", + "ips": [ + "185.153.176.147" + ], "tcp": true, "udp": true }, @@ -40247,7 +38750,9 @@ "region": "Brazil", "hostname": "br85.nordvpn.com", "number": 85, - "ip": "185.153.176.165", + "ips": [ + "185.153.176.165" + ], "tcp": true, "udp": true }, @@ -40255,7 +38760,9 @@ "region": "Brazil", "hostname": "br86.nordvpn.com", "number": 86, - "ip": "185.153.176.183", + "ips": [ + "185.153.176.183" + ], "tcp": true, "udp": true }, @@ -40263,7 +38770,9 @@ "region": "Brazil", "hostname": "br87.nordvpn.com", "number": 87, - "ip": "185.153.176.201", + "ips": [ + "185.153.176.201" + ], "tcp": true, "udp": true }, @@ -40271,7 +38780,9 @@ "region": "Brazil", "hostname": "br88.nordvpn.com", "number": 88, - "ip": "185.153.176.218", + "ips": [ + "185.153.176.218" + ], "tcp": true, "udp": true }, @@ -40279,7 +38790,9 @@ "region": "Brazil", "hostname": "br89.nordvpn.com", "number": 89, - "ip": "185.153.176.235", + "ips": [ + "185.153.176.235" + ], "tcp": true, "udp": true }, @@ -40287,7 +38800,9 @@ "region": "Brazil", "hostname": "br90.nordvpn.com", "number": 90, - "ip": "185.153.176.145", + "ips": [ + "185.153.176.145" + ], "tcp": true, "udp": true }, @@ -40295,7 +38810,9 @@ "region": "Bulgaria", "hostname": "bg38.nordvpn.com", "number": 38, - "ip": "217.138.202.147", + "ips": [ + "217.138.202.147" + ], "tcp": true, "udp": true }, @@ -40303,7 +38820,9 @@ "region": "Bulgaria", "hostname": "bg39.nordvpn.com", "number": 39, - "ip": "185.94.192.179", + "ips": [ + "185.94.192.179" + ], "tcp": true, "udp": true }, @@ -40311,7 +38830,9 @@ "region": "Bulgaria", "hostname": "bg40.nordvpn.com", "number": 40, - "ip": "82.102.23.83", + "ips": [ + "82.102.23.83" + ], "tcp": true, "udp": true }, @@ -40319,7 +38840,9 @@ "region": "Bulgaria", "hostname": "bg41.nordvpn.com", "number": 41, - "ip": "82.102.23.11", + "ips": [ + "82.102.23.11" + ], "tcp": true, "udp": true }, @@ -40327,7 +38850,9 @@ "region": "Bulgaria", "hostname": "bg42.nordvpn.com", "number": 42, - "ip": "185.216.32.179", + "ips": [ + "185.216.32.179" + ], "tcp": true, "udp": true }, @@ -40335,7 +38860,9 @@ "region": "Bulgaria", "hostname": "bg43.nordvpn.com", "number": 43, - "ip": "185.216.32.155", + "ips": [ + "185.216.32.155" + ], "tcp": true, "udp": true }, @@ -40343,7 +38870,9 @@ "region": "Bulgaria", "hostname": "bg44.nordvpn.com", "number": 44, - "ip": "185.216.32.251", + "ips": [ + "185.216.32.251" + ], "tcp": true, "udp": true }, @@ -40351,7 +38880,9 @@ "region": "Bulgaria", "hostname": "bg45.nordvpn.com", "number": 45, - "ip": "185.216.32.139", + "ips": [ + "185.216.32.139" + ], "tcp": true, "udp": true }, @@ -40359,7 +38890,9 @@ "region": "Bulgaria", "hostname": "bg46.nordvpn.com", "number": 46, - "ip": "217.138.202.91", + "ips": [ + "217.138.202.91" + ], "tcp": true, "udp": true }, @@ -40367,7 +38900,9 @@ "region": "Bulgaria", "hostname": "bg47.nordvpn.com", "number": 47, - "ip": "217.138.202.99", + "ips": [ + "217.138.202.99" + ], "tcp": true, "udp": true }, @@ -40375,7 +38910,9 @@ "region": "Bulgaria", "hostname": "bg48.nordvpn.com", "number": 48, - "ip": "217.138.202.107", + "ips": [ + "217.138.202.107" + ], "tcp": true, "udp": true }, @@ -40383,7 +38920,9 @@ "region": "Bulgaria", "hostname": "bg49.nordvpn.com", "number": 49, - "ip": "217.138.202.115", + "ips": [ + "217.138.202.115" + ], "tcp": true, "udp": true }, @@ -40391,7 +38930,9 @@ "region": "Bulgaria", "hostname": "bg50.nordvpn.com", "number": 50, - "ip": "217.138.202.123", + "ips": [ + "217.138.202.123" + ], "tcp": true, "udp": true }, @@ -40399,7 +38940,9 @@ "region": "Bulgaria", "hostname": "bg51.nordvpn.com", "number": 51, - "ip": "217.138.202.131", + "ips": [ + "217.138.202.131" + ], "tcp": true, "udp": true }, @@ -40407,7 +38950,9 @@ "region": "Bulgaria", "hostname": "bg52.nordvpn.com", "number": 52, - "ip": "217.138.202.139", + "ips": [ + "217.138.202.139" + ], "tcp": true, "udp": true }, @@ -40415,7 +38960,9 @@ "region": "Bulgaria", "hostname": "bg53.nordvpn.com", "number": 53, - "ip": "217.138.202.75", + "ips": [ + "217.138.202.75" + ], "tcp": true, "udp": true }, @@ -40423,7 +38970,59 @@ "region": "Bulgaria", "hostname": "bg54.nordvpn.com", "number": 54, - "ip": "217.138.202.83", + "ips": [ + "217.138.202.83" + ], + "tcp": true, + "udp": true + }, + { + "region": "Bulgaria", + "hostname": "bg55.nordvpn.com", + "number": 55, + "ips": [ + "156.146.55.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "Bulgaria", + "hostname": "bg56.nordvpn.com", + "number": 56, + "ips": [ + "156.146.55.14" + ], + "tcp": true, + "udp": true + }, + { + "region": "Bulgaria", + "hostname": "bg57.nordvpn.com", + "number": 57, + "ips": [ + "156.146.55.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "Bulgaria", + "hostname": "bg58.nordvpn.com", + "number": 58, + "ips": [ + "156.146.55.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "Bulgaria", + "hostname": "bg59.nordvpn.com", + "number": 59, + "ips": [ + "156.146.55.50" + ], "tcp": true, "udp": true }, @@ -40431,7 +39030,9 @@ "region": "Canada", "hostname": "ca-us37.nordvpn.com", "number": 37, - "ip": "37.19.212.209", + "ips": [ + "37.19.212.209" + ], "tcp": true, "udp": true }, @@ -40439,7 +39040,9 @@ "region": "Canada", "hostname": "ca-us38.nordvpn.com", "number": 38, - "ip": "37.19.212.210", + "ips": [ + "37.19.212.210" + ], "tcp": true, "udp": true }, @@ -40447,7 +39050,9 @@ "region": "Canada", "hostname": "ca-us39.nordvpn.com", "number": 39, - "ip": "86.106.90.211", + "ips": [ + "86.106.90.211" + ], "tcp": true, "udp": true }, @@ -40455,7 +39060,9 @@ "region": "Canada", "hostname": "ca-us40.nordvpn.com", "number": 40, - "ip": "86.106.90.212", + "ips": [ + "86.106.90.212" + ], "tcp": true, "udp": true }, @@ -40463,7 +39070,9 @@ "region": "Canada", "hostname": "ca-us41.nordvpn.com", "number": 41, - "ip": "86.106.90.214", + "ips": [ + "86.106.90.214" + ], "tcp": true, "udp": true }, @@ -40471,7 +39080,9 @@ "region": "Canada", "hostname": "ca-us42.nordvpn.com", "number": 42, - "ip": "86.106.90.215", + "ips": [ + "86.106.90.215" + ], "tcp": true, "udp": true }, @@ -40479,7 +39090,9 @@ "region": "Canada", "hostname": "ca-us43.nordvpn.com", "number": 43, - "ip": "139.28.218.43", + "ips": [ + "139.28.218.43" + ], "tcp": true, "udp": true }, @@ -40487,7 +39100,9 @@ "region": "Canada", "hostname": "ca-us44.nordvpn.com", "number": 44, - "ip": "139.28.218.44", + "ips": [ + "139.28.218.44" + ], "tcp": true, "udp": true }, @@ -40495,7 +39110,9 @@ "region": "Canada", "hostname": "ca-us47.nordvpn.com", "number": 47, - "ip": "139.28.218.75", + "ips": [ + "139.28.218.75" + ], "tcp": true, "udp": true }, @@ -40503,7 +39120,9 @@ "region": "Canada", "hostname": "ca-us48.nordvpn.com", "number": 48, - "ip": "139.28.218.76", + "ips": [ + "139.28.218.76" + ], "tcp": true, "udp": true }, @@ -40511,7 +39130,9 @@ "region": "Canada", "hostname": "ca-us49.nordvpn.com", "number": 49, - "ip": "217.138.213.123", + "ips": [ + "217.138.213.123" + ], "tcp": true, "udp": true }, @@ -40519,7 +39140,9 @@ "region": "Canada", "hostname": "ca-us50.nordvpn.com", "number": 50, - "ip": "217.138.213.124", + "ips": [ + "217.138.213.124" + ], "tcp": true, "udp": true }, @@ -40527,7 +39150,9 @@ "region": "Canada", "hostname": "ca-us51.nordvpn.com", "number": 51, - "ip": "217.138.213.147", + "ips": [ + "217.138.213.147" + ], "tcp": true, "udp": true }, @@ -40535,7 +39160,9 @@ "region": "Canada", "hostname": "ca-us52.nordvpn.com", "number": 52, - "ip": "217.138.213.148", + "ips": [ + "217.138.213.148" + ], "tcp": true, "udp": true }, @@ -40543,7 +39170,9 @@ "region": "Canada", "hostname": "ca-us53.nordvpn.com", "number": 53, - "ip": "217.138.213.171", + "ips": [ + "217.138.213.171" + ], "tcp": true, "udp": true }, @@ -40551,7 +39180,9 @@ "region": "Canada", "hostname": "ca-us54.nordvpn.com", "number": 54, - "ip": "217.138.213.172", + "ips": [ + "217.138.213.172" + ], "tcp": true, "udp": true }, @@ -40559,7 +39190,9 @@ "region": "Canada", "hostname": "ca-us55.nordvpn.com", "number": 55, - "ip": "217.138.200.251", + "ips": [ + "217.138.200.251" + ], "tcp": true, "udp": true }, @@ -40567,7 +39200,9 @@ "region": "Canada", "hostname": "ca-us56.nordvpn.com", "number": 56, - "ip": "217.138.200.252", + "ips": [ + "217.138.200.252" + ], "tcp": true, "udp": true }, @@ -40575,7 +39210,9 @@ "region": "Canada", "hostname": "ca-us57.nordvpn.com", "number": 57, - "ip": "217.138.213.155", + "ips": [ + "217.138.213.155" + ], "tcp": true, "udp": true }, @@ -40583,7 +39220,9 @@ "region": "Canada", "hostname": "ca-us58.nordvpn.com", "number": 58, - "ip": "217.138.213.156", + "ips": [ + "217.138.213.156" + ], "tcp": true, "udp": true }, @@ -40591,7 +39230,9 @@ "region": "Canada", "hostname": "ca-us59.nordvpn.com", "number": 59, - "ip": "217.138.213.163", + "ips": [ + "217.138.213.163" + ], "tcp": true, "udp": true }, @@ -40599,7 +39240,9 @@ "region": "Canada", "hostname": "ca-us60.nordvpn.com", "number": 60, - "ip": "217.138.213.164", + "ips": [ + "217.138.213.164" + ], "tcp": true, "udp": true }, @@ -40607,7 +39250,9 @@ "region": "Canada", "hostname": "ca-us61.nordvpn.com", "number": 61, - "ip": "37.120.130.5", + "ips": [ + "37.120.130.5" + ], "tcp": true, "udp": true }, @@ -40615,7 +39260,9 @@ "region": "Canada", "hostname": "ca-us62.nordvpn.com", "number": 62, - "ip": "37.120.130.6", + "ips": [ + "37.120.130.6" + ], "tcp": true, "udp": true }, @@ -40623,7 +39270,9 @@ "region": "Canada", "hostname": "ca852.nordvpn.com", "number": 852, - "ip": "217.138.200.179", + "ips": [ + "217.138.200.179" + ], "tcp": true, "udp": true }, @@ -40631,7 +39280,9 @@ "region": "Canada", "hostname": "ca944.nordvpn.com", "number": 944, - "ip": "172.83.40.219", + "ips": [ + "172.83.40.219" + ], "tcp": true, "udp": true }, @@ -40639,7 +39290,9 @@ "region": "Canada", "hostname": "ca950.nordvpn.com", "number": 950, - "ip": "217.138.213.179", + "ips": [ + "217.138.213.179" + ], "tcp": true, "udp": true }, @@ -40647,7 +39300,9 @@ "region": "Canada", "hostname": "ca951.nordvpn.com", "number": 951, - "ip": "217.138.213.187", + "ips": [ + "217.138.213.187" + ], "tcp": true, "udp": true }, @@ -40655,7 +39310,9 @@ "region": "Canada", "hostname": "ca952.nordvpn.com", "number": 952, - "ip": "217.138.213.195", + "ips": [ + "217.138.213.195" + ], "tcp": true, "udp": true }, @@ -40663,7 +39320,9 @@ "region": "Canada", "hostname": "ca953.nordvpn.com", "number": 953, - "ip": "217.138.213.203", + "ips": [ + "217.138.213.203" + ], "tcp": true, "udp": true }, @@ -40671,7 +39330,9 @@ "region": "Canada", "hostname": "ca955.nordvpn.com", "number": 955, - "ip": "217.138.213.219", + "ips": [ + "217.138.213.219" + ], "tcp": true, "udp": true }, @@ -40679,7 +39340,9 @@ "region": "Canada", "hostname": "ca956.nordvpn.com", "number": 956, - "ip": "217.138.213.227", + "ips": [ + "217.138.213.227" + ], "tcp": true, "udp": true }, @@ -40687,7 +39350,9 @@ "region": "Canada", "hostname": "ca957.nordvpn.com", "number": 957, - "ip": "217.138.213.235", + "ips": [ + "217.138.213.235" + ], "tcp": true, "udp": true }, @@ -40695,7 +39360,9 @@ "region": "Canada", "hostname": "ca958.nordvpn.com", "number": 958, - "ip": "217.138.213.243", + "ips": [ + "217.138.213.243" + ], "tcp": true, "udp": true }, @@ -40703,7 +39370,9 @@ "region": "Canada", "hostname": "ca960.nordvpn.com", "number": 960, - "ip": "45.133.182.163", + "ips": [ + "45.133.182.163" + ], "tcp": true, "udp": true }, @@ -40711,7 +39380,9 @@ "region": "Canada", "hostname": "ca961.nordvpn.com", "number": 961, - "ip": "217.138.200.3", + "ips": [ + "217.138.200.3" + ], "tcp": true, "udp": true }, @@ -40719,7 +39390,9 @@ "region": "Canada", "hostname": "ca962.nordvpn.com", "number": 962, - "ip": "217.138.200.51", + "ips": [ + "217.138.200.51" + ], "tcp": true, "udp": true }, @@ -40727,7 +39400,9 @@ "region": "Canada", "hostname": "ca973.nordvpn.com", "number": 973, - "ip": "66.115.147.131", + "ips": [ + "66.115.147.131" + ], "tcp": true, "udp": true }, @@ -40735,7 +39410,9 @@ "region": "Canada", "hostname": "ca974.nordvpn.com", "number": 974, - "ip": "66.115.147.134", + "ips": [ + "66.115.147.134" + ], "tcp": true, "udp": true }, @@ -40743,7 +39420,9 @@ "region": "Canada", "hostname": "ca975.nordvpn.com", "number": 975, - "ip": "66.115.147.137", + "ips": [ + "66.115.147.137" + ], "tcp": true, "udp": true }, @@ -40751,7 +39430,9 @@ "region": "Canada", "hostname": "ca976.nordvpn.com", "number": 976, - "ip": "66.115.147.140", + "ips": [ + "66.115.147.140" + ], "tcp": true, "udp": true }, @@ -40759,7 +39440,9 @@ "region": "Canada", "hostname": "ca977.nordvpn.com", "number": 977, - "ip": "66.115.147.143", + "ips": [ + "66.115.147.143" + ], "tcp": true, "udp": true }, @@ -40767,7 +39450,9 @@ "region": "Canada", "hostname": "ca978.nordvpn.com", "number": 978, - "ip": "66.115.147.148", + "ips": [ + "66.115.147.148" + ], "tcp": true, "udp": true }, @@ -40775,7 +39460,9 @@ "region": "Canada", "hostname": "ca979.nordvpn.com", "number": 979, - "ip": "66.115.147.151", + "ips": [ + "66.115.147.151" + ], "tcp": true, "udp": true }, @@ -40783,7 +39470,9 @@ "region": "Canada", "hostname": "ca980.nordvpn.com", "number": 980, - "ip": "66.115.147.154", + "ips": [ + "66.115.147.154" + ], "tcp": true, "udp": true }, @@ -40791,7 +39480,9 @@ "region": "Canada", "hostname": "ca981.nordvpn.com", "number": 981, - "ip": "66.115.147.157", + "ips": [ + "66.115.147.157" + ], "tcp": true, "udp": true }, @@ -40799,7 +39490,9 @@ "region": "Canada", "hostname": "ca982.nordvpn.com", "number": 982, - "ip": "66.115.147.160", + "ips": [ + "66.115.147.160" + ], "tcp": true, "udp": true }, @@ -40807,7 +39500,9 @@ "region": "Canada", "hostname": "ca983.nordvpn.com", "number": 983, - "ip": "66.115.147.163", + "ips": [ + "66.115.147.163" + ], "tcp": true, "udp": true }, @@ -40815,7 +39510,9 @@ "region": "Canada", "hostname": "ca984.nordvpn.com", "number": 984, - "ip": "66.115.147.166", + "ips": [ + "66.115.147.166" + ], "tcp": true, "udp": true }, @@ -40823,7 +39520,9 @@ "region": "Canada", "hostname": "ca985.nordvpn.com", "number": 985, - "ip": "66.115.147.169", + "ips": [ + "66.115.147.169" + ], "tcp": true, "udp": true }, @@ -40831,7 +39530,9 @@ "region": "Canada", "hostname": "ca986.nordvpn.com", "number": 986, - "ip": "66.115.147.172", + "ips": [ + "66.115.147.172" + ], "tcp": true, "udp": true }, @@ -40839,15 +39540,9 @@ "region": "Canada", "hostname": "ca987.nordvpn.com", "number": 987, - "ip": "66.115.147.175", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca988.nordvpn.com", - "number": 988, - "ip": "66.115.147.178", + "ips": [ + "66.115.147.175" + ], "tcp": true, "udp": true }, @@ -40855,15 +39550,9 @@ "region": "Canada", "hostname": "ca989.nordvpn.com", "number": 989, - "ip": "66.115.147.181", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca990.nordvpn.com", - "number": 990, - "ip": "66.115.147.184", + "ips": [ + "66.115.147.181" + ], "tcp": true, "udp": true }, @@ -40871,7 +39560,9 @@ "region": "Canada", "hostname": "ca991.nordvpn.com", "number": 991, - "ip": "66.115.147.187", + "ips": [ + "66.115.147.187" + ], "tcp": true, "udp": true }, @@ -40879,7 +39570,9 @@ "region": "Canada", "hostname": "ca992.nordvpn.com", "number": 992, - "ip": "66.115.147.190", + "ips": [ + "66.115.147.190" + ], "tcp": true, "udp": true }, @@ -40887,15 +39580,9 @@ "region": "Canada", "hostname": "ca993.nordvpn.com", "number": 993, - "ip": "66.115.147.193", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca994.nordvpn.com", - "number": 994, - "ip": "66.115.147.196", + "ips": [ + "66.115.147.193" + ], "tcp": true, "udp": true }, @@ -40903,7 +39590,9 @@ "region": "Canada", "hostname": "ca995.nordvpn.com", "number": 995, - "ip": "66.115.147.199", + "ips": [ + "66.115.147.199" + ], "tcp": true, "udp": true }, @@ -40911,7 +39600,9 @@ "region": "Canada", "hostname": "ca996.nordvpn.com", "number": 996, - "ip": "66.115.147.202", + "ips": [ + "66.115.147.202" + ], "tcp": true, "udp": true }, @@ -40919,7 +39610,9 @@ "region": "Canada", "hostname": "ca997.nordvpn.com", "number": 997, - "ip": "66.115.147.205", + "ips": [ + "66.115.147.205" + ], "tcp": true, "udp": true }, @@ -40927,7 +39620,9 @@ "region": "Canada", "hostname": "ca998.nordvpn.com", "number": 998, - "ip": "66.115.147.208", + "ips": [ + "66.115.147.208" + ], "tcp": true, "udp": true }, @@ -40935,7 +39630,9 @@ "region": "Canada", "hostname": "ca999.nordvpn.com", "number": 999, - "ip": "66.115.147.211", + "ips": [ + "66.115.147.211" + ], "tcp": true, "udp": true }, @@ -40943,7 +39640,9 @@ "region": "Canada", "hostname": "ca1000.nordvpn.com", "number": 1000, - "ip": "66.115.147.214", + "ips": [ + "66.115.147.214" + ], "tcp": true, "udp": true }, @@ -40951,7 +39650,9 @@ "region": "Canada", "hostname": "ca1001.nordvpn.com", "number": 1001, - "ip": "66.115.147.217", + "ips": [ + "66.115.147.217" + ], "tcp": true, "udp": true }, @@ -40959,7 +39660,9 @@ "region": "Canada", "hostname": "ca1002.nordvpn.com", "number": 1002, - "ip": "66.115.147.220", + "ips": [ + "66.115.147.220" + ], "tcp": true, "udp": true }, @@ -40967,7 +39670,9 @@ "region": "Canada", "hostname": "ca1003.nordvpn.com", "number": 1003, - "ip": "172.83.40.226", + "ips": [ + "172.83.40.226" + ], "tcp": true, "udp": true }, @@ -40975,7 +39680,9 @@ "region": "Canada", "hostname": "ca1004.nordvpn.com", "number": 1004, - "ip": "87.101.92.107", + "ips": [ + "87.101.92.107" + ], "tcp": true, "udp": true }, @@ -40983,7 +39690,9 @@ "region": "Canada", "hostname": "ca1006.nordvpn.com", "number": 1006, - "ip": "87.101.92.67", + "ips": [ + "87.101.92.67" + ], "tcp": true, "udp": true }, @@ -40991,7 +39700,9 @@ "region": "Canada", "hostname": "ca1007.nordvpn.com", "number": 1007, - "ip": "87.101.92.77", + "ips": [ + "87.101.92.77" + ], "tcp": true, "udp": true }, @@ -40999,7 +39710,9 @@ "region": "Canada", "hostname": "ca1010.nordvpn.com", "number": 1010, - "ip": "172.83.40.194", + "ips": [ + "172.83.40.194" + ], "tcp": true, "udp": true }, @@ -41007,7 +39720,9 @@ "region": "Canada", "hostname": "ca1011.nordvpn.com", "number": 1011, - "ip": "172.83.40.210", + "ips": [ + "172.83.40.210" + ], "tcp": true, "udp": true }, @@ -41015,7 +39730,9 @@ "region": "Canada", "hostname": "ca1012.nordvpn.com", "number": 1012, - "ip": "66.115.145.3", + "ips": [ + "66.115.145.3" + ], "tcp": true, "udp": true }, @@ -41023,7 +39740,9 @@ "region": "Canada", "hostname": "ca1013.nordvpn.com", "number": 1013, - "ip": "66.115.145.6", + "ips": [ + "66.115.145.6" + ], "tcp": true, "udp": true }, @@ -41031,7 +39750,9 @@ "region": "Canada", "hostname": "ca1014.nordvpn.com", "number": 1014, - "ip": "66.115.145.9", + "ips": [ + "66.115.145.9" + ], "tcp": true, "udp": true }, @@ -41039,7 +39760,9 @@ "region": "Canada", "hostname": "ca1015.nordvpn.com", "number": 1015, - "ip": "66.115.145.12", + "ips": [ + "66.115.145.12" + ], "tcp": true, "udp": true }, @@ -41047,7 +39770,9 @@ "region": "Canada", "hostname": "ca1016.nordvpn.com", "number": 1016, - "ip": "66.115.145.15", + "ips": [ + "66.115.145.15" + ], "tcp": true, "udp": true }, @@ -41055,7 +39780,9 @@ "region": "Canada", "hostname": "ca1017.nordvpn.com", "number": 1017, - "ip": "66.115.145.18", + "ips": [ + "66.115.145.18" + ], "tcp": true, "udp": true }, @@ -41063,7 +39790,9 @@ "region": "Canada", "hostname": "ca1018.nordvpn.com", "number": 1018, - "ip": "66.115.145.21", + "ips": [ + "66.115.145.21" + ], "tcp": true, "udp": true }, @@ -41071,7 +39800,9 @@ "region": "Canada", "hostname": "ca1019.nordvpn.com", "number": 1019, - "ip": "66.115.145.24", + "ips": [ + "66.115.145.24" + ], "tcp": true, "udp": true }, @@ -41079,7 +39810,9 @@ "region": "Canada", "hostname": "ca1020.nordvpn.com", "number": 1020, - "ip": "66.115.145.27", + "ips": [ + "66.115.145.27" + ], "tcp": true, "udp": true }, @@ -41087,15 +39820,9 @@ "region": "Canada", "hostname": "ca1021.nordvpn.com", "number": 1021, - "ip": "66.115.145.30", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1022.nordvpn.com", - "number": 1022, - "ip": "66.115.145.33", + "ips": [ + "66.115.145.30" + ], "tcp": true, "udp": true }, @@ -41103,7 +39830,9 @@ "region": "Canada", "hostname": "ca1023.nordvpn.com", "number": 1023, - "ip": "66.115.145.36", + "ips": [ + "66.115.145.36" + ], "tcp": true, "udp": true }, @@ -41111,7 +39840,9 @@ "region": "Canada", "hostname": "ca1024.nordvpn.com", "number": 1024, - "ip": "66.115.145.39", + "ips": [ + "66.115.145.39" + ], "tcp": true, "udp": true }, @@ -41119,23 +39850,9 @@ "region": "Canada", "hostname": "ca1025.nordvpn.com", "number": 1025, - "ip": "66.115.145.42", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1026.nordvpn.com", - "number": 1026, - "ip": "66.115.145.45", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1027.nordvpn.com", - "number": 1027, - "ip": "66.115.145.48", + "ips": [ + "66.115.145.42" + ], "tcp": true, "udp": true }, @@ -41143,7 +39860,9 @@ "region": "Canada", "hostname": "ca1028.nordvpn.com", "number": 1028, - "ip": "66.115.145.51", + "ips": [ + "66.115.145.51" + ], "tcp": true, "udp": true }, @@ -41151,7 +39870,9 @@ "region": "Canada", "hostname": "ca1029.nordvpn.com", "number": 1029, - "ip": "66.115.145.54", + "ips": [ + "66.115.145.54" + ], "tcp": true, "udp": true }, @@ -41159,7 +39880,9 @@ "region": "Canada", "hostname": "ca1030.nordvpn.com", "number": 1030, - "ip": "66.115.145.57", + "ips": [ + "66.115.145.57" + ], "tcp": true, "udp": true }, @@ -41167,7 +39890,9 @@ "region": "Canada", "hostname": "ca1031.nordvpn.com", "number": 1031, - "ip": "66.115.145.67", + "ips": [ + "66.115.145.67" + ], "tcp": true, "udp": true }, @@ -41175,7 +39900,9 @@ "region": "Canada", "hostname": "ca1032.nordvpn.com", "number": 1032, - "ip": "66.115.145.70", + "ips": [ + "66.115.145.70" + ], "tcp": true, "udp": true }, @@ -41183,7 +39910,9 @@ "region": "Canada", "hostname": "ca1033.nordvpn.com", "number": 1033, - "ip": "66.115.145.73", + "ips": [ + "66.115.145.73" + ], "tcp": true, "udp": true }, @@ -41191,7 +39920,9 @@ "region": "Canada", "hostname": "ca1034.nordvpn.com", "number": 1034, - "ip": "66.115.145.76", + "ips": [ + "66.115.145.76" + ], "tcp": true, "udp": true }, @@ -41199,7 +39930,9 @@ "region": "Canada", "hostname": "ca1035.nordvpn.com", "number": 1035, - "ip": "66.115.145.79", + "ips": [ + "66.115.145.79" + ], "tcp": true, "udp": true }, @@ -41207,7 +39940,9 @@ "region": "Canada", "hostname": "ca1036.nordvpn.com", "number": 1036, - "ip": "66.115.145.82", + "ips": [ + "66.115.145.82" + ], "tcp": true, "udp": true }, @@ -41215,7 +39950,9 @@ "region": "Canada", "hostname": "ca1037.nordvpn.com", "number": 1037, - "ip": "66.115.146.3", + "ips": [ + "66.115.146.3" + ], "tcp": true, "udp": true }, @@ -41223,15 +39960,9 @@ "region": "Canada", "hostname": "ca1038.nordvpn.com", "number": 1038, - "ip": "66.115.146.6", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1039.nordvpn.com", - "number": 1039, - "ip": "66.115.146.9", + "ips": [ + "66.115.146.6" + ], "tcp": true, "udp": true }, @@ -41239,7 +39970,9 @@ "region": "Canada", "hostname": "ca1040.nordvpn.com", "number": 1040, - "ip": "66.115.146.12", + "ips": [ + "66.115.146.12" + ], "tcp": true, "udp": true }, @@ -41247,7 +39980,9 @@ "region": "Canada", "hostname": "ca1041.nordvpn.com", "number": 1041, - "ip": "66.115.146.15", + "ips": [ + "66.115.146.15" + ], "tcp": true, "udp": true }, @@ -41255,7 +39990,9 @@ "region": "Canada", "hostname": "ca1042.nordvpn.com", "number": 1042, - "ip": "66.115.146.18", + "ips": [ + "66.115.146.18" + ], "tcp": true, "udp": true }, @@ -41263,7 +40000,9 @@ "region": "Canada", "hostname": "ca1043.nordvpn.com", "number": 1043, - "ip": "66.115.146.21", + "ips": [ + "66.115.146.21" + ], "tcp": true, "udp": true }, @@ -41271,7 +40010,9 @@ "region": "Canada", "hostname": "ca1044.nordvpn.com", "number": 1044, - "ip": "66.115.146.24", + "ips": [ + "66.115.146.24" + ], "tcp": true, "udp": true }, @@ -41279,7 +40020,9 @@ "region": "Canada", "hostname": "ca1045.nordvpn.com", "number": 1045, - "ip": "66.115.146.27", + "ips": [ + "66.115.146.27" + ], "tcp": true, "udp": true }, @@ -41287,7 +40030,9 @@ "region": "Canada", "hostname": "ca1046.nordvpn.com", "number": 1046, - "ip": "66.115.146.30", + "ips": [ + "66.115.146.30" + ], "tcp": true, "udp": true }, @@ -41295,7 +40040,9 @@ "region": "Canada", "hostname": "ca1047.nordvpn.com", "number": 1047, - "ip": "87.101.92.87", + "ips": [ + "87.101.92.87" + ], "tcp": true, "udp": true }, @@ -41303,7 +40050,9 @@ "region": "Canada", "hostname": "ca1048.nordvpn.com", "number": 1048, - "ip": "87.101.92.97", + "ips": [ + "87.101.92.97" + ], "tcp": true, "udp": true }, @@ -41311,7 +40060,9 @@ "region": "Canada", "hostname": "ca1049.nordvpn.com", "number": 1049, - "ip": "176.113.74.251", + "ips": [ + "176.113.74.251" + ], "tcp": true, "udp": true }, @@ -41319,15 +40070,9 @@ "region": "Canada", "hostname": "ca1050.nordvpn.com", "number": 1050, - "ip": "139.28.218.3", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1056.nordvpn.com", - "number": 1056, - "ip": "104.200.132.167", + "ips": [ + "139.28.218.3" + ], "tcp": true, "udp": true }, @@ -41335,7 +40080,9 @@ "region": "Canada", "hostname": "ca1057.nordvpn.com", "number": 1057, - "ip": "104.200.132.169", + "ips": [ + "104.200.132.169" + ], "tcp": true, "udp": true }, @@ -41343,7 +40090,9 @@ "region": "Canada", "hostname": "ca1058.nordvpn.com", "number": 1058, - "ip": "104.200.132.171", + "ips": [ + "104.200.132.171" + ], "tcp": true, "udp": true }, @@ -41351,7 +40100,9 @@ "region": "Canada", "hostname": "ca1059.nordvpn.com", "number": 1059, - "ip": "104.200.132.173", + "ips": [ + "104.200.132.173" + ], "tcp": true, "udp": true }, @@ -41359,7 +40110,9 @@ "region": "Canada", "hostname": "ca1066.nordvpn.com", "number": 1066, - "ip": "86.106.90.243", + "ips": [ + "86.106.90.243" + ], "tcp": true, "udp": true }, @@ -41367,7 +40120,9 @@ "region": "Canada", "hostname": "ca1078.nordvpn.com", "number": 1078, - "ip": "139.28.218.11", + "ips": [ + "139.28.218.11" + ], "tcp": true, "udp": true }, @@ -41375,7 +40130,9 @@ "region": "Canada", "hostname": "ca1079.nordvpn.com", "number": 1079, - "ip": "139.28.218.19", + "ips": [ + "139.28.218.19" + ], "tcp": true, "udp": true }, @@ -41383,7 +40140,9 @@ "region": "Canada", "hostname": "ca1080.nordvpn.com", "number": 1080, - "ip": "139.28.218.27", + "ips": [ + "139.28.218.27" + ], "tcp": true, "udp": true }, @@ -41391,7 +40150,9 @@ "region": "Canada", "hostname": "ca1081.nordvpn.com", "number": 1081, - "ip": "176.113.74.243", + "ips": [ + "176.113.74.243" + ], "tcp": true, "udp": true }, @@ -41399,7 +40160,9 @@ "region": "Canada", "hostname": "ca1082.nordvpn.com", "number": 1082, - "ip": "172.98.66.3", + "ips": [ + "172.98.66.3" + ], "tcp": true, "udp": true }, @@ -41407,7 +40170,9 @@ "region": "Canada", "hostname": "ca1083.nordvpn.com", "number": 1083, - "ip": "172.98.66.6", + "ips": [ + "172.98.66.6" + ], "tcp": true, "udp": true }, @@ -41415,7 +40180,9 @@ "region": "Canada", "hostname": "ca1084.nordvpn.com", "number": 1084, - "ip": "172.98.66.9", + "ips": [ + "172.98.66.9" + ], "tcp": true, "udp": true }, @@ -41423,7 +40190,9 @@ "region": "Canada", "hostname": "ca1085.nordvpn.com", "number": 1085, - "ip": "172.98.66.12", + "ips": [ + "172.98.66.12" + ], "tcp": true, "udp": true }, @@ -41431,7 +40200,9 @@ "region": "Canada", "hostname": "ca1086.nordvpn.com", "number": 1086, - "ip": "172.98.66.15", + "ips": [ + "172.98.66.15" + ], "tcp": true, "udp": true }, @@ -41439,7 +40210,9 @@ "region": "Canada", "hostname": "ca1087.nordvpn.com", "number": 1087, - "ip": "104.200.132.175", + "ips": [ + "104.200.132.175" + ], "tcp": true, "udp": true }, @@ -41447,7 +40220,9 @@ "region": "Canada", "hostname": "ca1088.nordvpn.com", "number": 1088, - "ip": "104.200.132.177", + "ips": [ + "104.200.132.177" + ], "tcp": true, "udp": true }, @@ -41455,7 +40230,9 @@ "region": "Canada", "hostname": "ca1089.nordvpn.com", "number": 1089, - "ip": "104.200.132.179", + "ips": [ + "104.200.132.179" + ], "tcp": true, "udp": true }, @@ -41463,7 +40240,9 @@ "region": "Canada", "hostname": "ca1090.nordvpn.com", "number": 1090, - "ip": "104.200.132.181", + "ips": [ + "104.200.132.181" + ], "tcp": true, "udp": true }, @@ -41471,15 +40250,9 @@ "region": "Canada", "hostname": "ca1091.nordvpn.com", "number": 1091, - "ip": "66.115.146.67", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1092.nordvpn.com", - "number": 1092, - "ip": "66.115.146.70", + "ips": [ + "66.115.146.67" + ], "tcp": true, "udp": true }, @@ -41487,7 +40260,9 @@ "region": "Canada", "hostname": "ca1093.nordvpn.com", "number": 1093, - "ip": "66.115.146.73", + "ips": [ + "66.115.146.73" + ], "tcp": true, "udp": true }, @@ -41495,7 +40270,9 @@ "region": "Canada", "hostname": "ca1094.nordvpn.com", "number": 1094, - "ip": "66.115.146.76", + "ips": [ + "66.115.146.76" + ], "tcp": true, "udp": true }, @@ -41503,7 +40280,9 @@ "region": "Canada", "hostname": "ca1095.nordvpn.com", "number": 1095, - "ip": "66.115.146.79", + "ips": [ + "66.115.146.79" + ], "tcp": true, "udp": true }, @@ -41511,7 +40290,9 @@ "region": "Canada", "hostname": "ca1096.nordvpn.com", "number": 1096, - "ip": "66.115.146.82", + "ips": [ + "66.115.146.82" + ], "tcp": true, "udp": true }, @@ -41519,7 +40300,9 @@ "region": "Canada", "hostname": "ca1097.nordvpn.com", "number": 1097, - "ip": "66.115.146.85", + "ips": [ + "66.115.146.85" + ], "tcp": true, "udp": true }, @@ -41527,7 +40310,9 @@ "region": "Canada", "hostname": "ca1098.nordvpn.com", "number": 1098, - "ip": "66.115.146.88", + "ips": [ + "66.115.146.88" + ], "tcp": true, "udp": true }, @@ -41535,7 +40320,9 @@ "region": "Canada", "hostname": "ca1099.nordvpn.com", "number": 1099, - "ip": "176.113.74.163", + "ips": [ + "176.113.74.163" + ], "tcp": true, "udp": true }, @@ -41543,7 +40330,9 @@ "region": "Canada", "hostname": "ca1100.nordvpn.com", "number": 1100, - "ip": "176.113.74.171", + "ips": [ + "176.113.74.171" + ], "tcp": true, "udp": true }, @@ -41551,7 +40340,9 @@ "region": "Canada", "hostname": "ca1101.nordvpn.com", "number": 1101, - "ip": "176.113.74.227", + "ips": [ + "176.113.74.227" + ], "tcp": true, "udp": true }, @@ -41559,7 +40350,9 @@ "region": "Canada", "hostname": "ca1102.nordvpn.com", "number": 1102, - "ip": "176.113.74.235", + "ips": [ + "176.113.74.235" + ], "tcp": true, "udp": true }, @@ -41567,7 +40360,9 @@ "region": "Canada", "hostname": "ca1103.nordvpn.com", "number": 1103, - "ip": "139.28.218.171", + "ips": [ + "139.28.218.171" + ], "tcp": true, "udp": true }, @@ -41575,7 +40370,9 @@ "region": "Canada", "hostname": "ca1104.nordvpn.com", "number": 1104, - "ip": "139.28.218.179", + "ips": [ + "139.28.218.179" + ], "tcp": true, "udp": true }, @@ -41583,7 +40380,9 @@ "region": "Canada", "hostname": "ca1105.nordvpn.com", "number": 1105, - "ip": "45.133.182.179", + "ips": [ + "45.133.182.179" + ], "tcp": true, "udp": true }, @@ -41591,7 +40390,9 @@ "region": "Canada", "hostname": "ca1114.nordvpn.com", "number": 1114, - "ip": "104.200.132.183", + "ips": [ + "104.200.132.183" + ], "tcp": true, "udp": true }, @@ -41599,7 +40400,9 @@ "region": "Canada", "hostname": "ca1115.nordvpn.com", "number": 1115, - "ip": "104.200.132.185", + "ips": [ + "104.200.132.185" + ], "tcp": true, "udp": true }, @@ -41607,7 +40410,9 @@ "region": "Canada", "hostname": "ca1116.nordvpn.com", "number": 1116, - "ip": "104.200.132.187", + "ips": [ + "104.200.132.187" + ], "tcp": true, "udp": true }, @@ -41615,7 +40420,9 @@ "region": "Canada", "hostname": "ca1117.nordvpn.com", "number": 1117, - "ip": "104.200.132.214", + "ips": [ + "104.200.132.214" + ], "tcp": true, "udp": true }, @@ -41623,7 +40430,9 @@ "region": "Canada", "hostname": "ca1118.nordvpn.com", "number": 1118, - "ip": "104.200.132.216", + "ips": [ + "104.200.132.216" + ], "tcp": true, "udp": true }, @@ -41631,7 +40440,9 @@ "region": "Canada", "hostname": "ca1119.nordvpn.com", "number": 1119, - "ip": "104.200.132.218", + "ips": [ + "104.200.132.218" + ], "tcp": true, "udp": true }, @@ -41639,7 +40450,9 @@ "region": "Canada", "hostname": "ca1187.nordvpn.com", "number": 1187, - "ip": "139.28.218.187", + "ips": [ + "139.28.218.187" + ], "tcp": true, "udp": true }, @@ -41647,7 +40460,9 @@ "region": "Canada", "hostname": "ca1188.nordvpn.com", "number": 1188, - "ip": "139.28.218.195", + "ips": [ + "139.28.218.195" + ], "tcp": true, "udp": true }, @@ -41655,7 +40470,9 @@ "region": "Canada", "hostname": "ca1189.nordvpn.com", "number": 1189, - "ip": "139.28.218.203", + "ips": [ + "139.28.218.203" + ], "tcp": true, "udp": true }, @@ -41663,7 +40480,9 @@ "region": "Canada", "hostname": "ca1190.nordvpn.com", "number": 1190, - "ip": "139.28.218.211", + "ips": [ + "139.28.218.211" + ], "tcp": true, "udp": true }, @@ -41671,7 +40490,9 @@ "region": "Canada", "hostname": "ca1191.nordvpn.com", "number": 1191, - "ip": "139.28.218.219", + "ips": [ + "139.28.218.219" + ], "tcp": true, "udp": true }, @@ -41679,7 +40500,9 @@ "region": "Canada", "hostname": "ca1192.nordvpn.com", "number": 1192, - "ip": "5.181.233.3", + "ips": [ + "5.181.233.3" + ], "tcp": true, "udp": true }, @@ -41687,7 +40510,9 @@ "region": "Canada", "hostname": "ca1193.nordvpn.com", "number": 1193, - "ip": "5.181.233.11", + "ips": [ + "5.181.233.11" + ], "tcp": true, "udp": true }, @@ -41695,7 +40520,9 @@ "region": "Canada", "hostname": "ca1202.nordvpn.com", "number": 1202, - "ip": "104.200.132.220", + "ips": [ + "104.200.132.220" + ], "tcp": true, "udp": true }, @@ -41703,7 +40530,9 @@ "region": "Canada", "hostname": "ca1203.nordvpn.com", "number": 1203, - "ip": "104.200.132.222", + "ips": [ + "104.200.132.222" + ], "tcp": true, "udp": true }, @@ -41711,7 +40540,9 @@ "region": "Canada", "hostname": "ca1204.nordvpn.com", "number": 1204, - "ip": "104.200.132.224", + "ips": [ + "104.200.132.224" + ], "tcp": true, "udp": true }, @@ -41719,7 +40550,9 @@ "region": "Canada", "hostname": "ca1205.nordvpn.com", "number": 1205, - "ip": "104.200.132.226", + "ips": [ + "104.200.132.226" + ], "tcp": true, "udp": true }, @@ -41727,15 +40560,9 @@ "region": "Canada", "hostname": "ca1206.nordvpn.com", "number": 1206, - "ip": "104.200.132.228", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1207.nordvpn.com", - "number": 1207, - "ip": "104.200.132.230", + "ips": [ + "104.200.132.228" + ], "tcp": true, "udp": true }, @@ -41743,7 +40570,9 @@ "region": "Canada", "hostname": "ca1208.nordvpn.com", "number": 1208, - "ip": "89.47.234.155", + "ips": [ + "89.47.234.155" + ], "tcp": true, "udp": true }, @@ -41751,7 +40580,9 @@ "region": "Canada", "hostname": "ca1209.nordvpn.com", "number": 1209, - "ip": "89.47.234.163", + "ips": [ + "89.47.234.163" + ], "tcp": true, "udp": true }, @@ -41759,7 +40590,9 @@ "region": "Canada", "hostname": "ca1210.nordvpn.com", "number": 1210, - "ip": "89.47.234.171", + "ips": [ + "89.47.234.171" + ], "tcp": true, "udp": true }, @@ -41767,7 +40600,9 @@ "region": "Canada", "hostname": "ca1211.nordvpn.com", "number": 1211, - "ip": "89.47.234.179", + "ips": [ + "89.47.234.179" + ], "tcp": true, "udp": true }, @@ -41775,7 +40610,9 @@ "region": "Canada", "hostname": "ca1212.nordvpn.com", "number": 1212, - "ip": "89.47.234.187", + "ips": [ + "89.47.234.187" + ], "tcp": true, "udp": true }, @@ -41783,7 +40620,9 @@ "region": "Canada", "hostname": "ca1213.nordvpn.com", "number": 1213, - "ip": "89.47.234.195", + "ips": [ + "89.47.234.195" + ], "tcp": true, "udp": true }, @@ -41791,7 +40630,9 @@ "region": "Canada", "hostname": "ca1214.nordvpn.com", "number": 1214, - "ip": "89.47.234.203", + "ips": [ + "89.47.234.203" + ], "tcp": true, "udp": true }, @@ -41799,7 +40640,9 @@ "region": "Canada", "hostname": "ca1215.nordvpn.com", "number": 1215, - "ip": "89.47.234.251", + "ips": [ + "89.47.234.251" + ], "tcp": true, "udp": true }, @@ -41807,7 +40650,9 @@ "region": "Canada", "hostname": "ca1216.nordvpn.com", "number": 1216, - "ip": "89.47.234.219", + "ips": [ + "89.47.234.219" + ], "tcp": true, "udp": true }, @@ -41815,7 +40660,9 @@ "region": "Canada", "hostname": "ca1217.nordvpn.com", "number": 1217, - "ip": "89.47.234.243", + "ips": [ + "89.47.234.243" + ], "tcp": true, "udp": true }, @@ -41823,7 +40670,9 @@ "region": "Canada", "hostname": "ca1218.nordvpn.com", "number": 1218, - "ip": "5.181.233.19", + "ips": [ + "5.181.233.19" + ], "tcp": true, "udp": true }, @@ -41831,7 +40680,9 @@ "region": "Canada", "hostname": "ca1219.nordvpn.com", "number": 1219, - "ip": "5.181.233.27", + "ips": [ + "5.181.233.27" + ], "tcp": true, "udp": true }, @@ -41839,7 +40690,9 @@ "region": "Canada", "hostname": "ca1220.nordvpn.com", "number": 1220, - "ip": "5.181.233.35", + "ips": [ + "5.181.233.35" + ], "tcp": true, "udp": true }, @@ -41847,7 +40700,9 @@ "region": "Canada", "hostname": "ca1221.nordvpn.com", "number": 1221, - "ip": "5.181.233.115", + "ips": [ + "5.181.233.115" + ], "tcp": true, "udp": true }, @@ -41855,7 +40710,9 @@ "region": "Canada", "hostname": "ca1222.nordvpn.com", "number": 1222, - "ip": "5.181.233.107", + "ips": [ + "5.181.233.107" + ], "tcp": true, "udp": true }, @@ -41863,7 +40720,9 @@ "region": "Canada", "hostname": "ca1223.nordvpn.com", "number": 1223, - "ip": "5.181.233.99", + "ips": [ + "5.181.233.99" + ], "tcp": true, "udp": true }, @@ -41871,7 +40730,9 @@ "region": "Canada", "hostname": "ca1224.nordvpn.com", "number": 1224, - "ip": "5.181.233.59", + "ips": [ + "5.181.233.59" + ], "tcp": true, "udp": true }, @@ -41879,7 +40740,9 @@ "region": "Canada", "hostname": "ca1225.nordvpn.com", "number": 1225, - "ip": "5.181.233.43", + "ips": [ + "5.181.233.43" + ], "tcp": true, "udp": true }, @@ -41887,7 +40750,9 @@ "region": "Canada", "hostname": "ca1226.nordvpn.com", "number": 1226, - "ip": "45.133.182.187", + "ips": [ + "45.133.182.187" + ], "tcp": true, "udp": true }, @@ -41895,7 +40760,9 @@ "region": "Canada", "hostname": "ca1227.nordvpn.com", "number": 1227, - "ip": "45.133.182.195", + "ips": [ + "45.133.182.195" + ], "tcp": true, "udp": true }, @@ -41903,7 +40770,9 @@ "region": "Canada", "hostname": "ca1228.nordvpn.com", "number": 1228, - "ip": "45.133.182.203", + "ips": [ + "45.133.182.203" + ], "tcp": true, "udp": true }, @@ -41911,7 +40780,9 @@ "region": "Canada", "hostname": "ca1242.nordvpn.com", "number": 1242, - "ip": "104.200.132.232", + "ips": [ + "104.200.132.232" + ], "tcp": true, "udp": true }, @@ -41919,7 +40790,9 @@ "region": "Canada", "hostname": "ca1243.nordvpn.com", "number": 1243, - "ip": "104.200.132.236", + "ips": [ + "104.200.132.236" + ], "tcp": true, "udp": true }, @@ -41927,7 +40800,9 @@ "region": "Canada", "hostname": "ca1244.nordvpn.com", "number": 1244, - "ip": "104.200.132.240", + "ips": [ + "104.200.132.240" + ], "tcp": true, "udp": true }, @@ -41935,7 +40810,9 @@ "region": "Canada", "hostname": "ca1245.nordvpn.com", "number": 1245, - "ip": "104.200.132.244", + "ips": [ + "104.200.132.244" + ], "tcp": true, "udp": true }, @@ -41943,7 +40820,9 @@ "region": "Canada", "hostname": "ca1246.nordvpn.com", "number": 1246, - "ip": "104.200.132.248", + "ips": [ + "104.200.132.248" + ], "tcp": true, "udp": true }, @@ -41951,7 +40830,9 @@ "region": "Canada", "hostname": "ca1257.nordvpn.com", "number": 1257, - "ip": "37.120.130.19", + "ips": [ + "37.120.130.19" + ], "tcp": true, "udp": true }, @@ -41959,7 +40840,9 @@ "region": "Canada", "hostname": "ca1258.nordvpn.com", "number": 1258, - "ip": "176.113.74.3", + "ips": [ + "176.113.74.3" + ], "tcp": true, "udp": true }, @@ -41967,7 +40850,9 @@ "region": "Canada", "hostname": "ca1259.nordvpn.com", "number": 1259, - "ip": "176.113.74.8", + "ips": [ + "176.113.74.8" + ], "tcp": true, "udp": true }, @@ -41975,7 +40860,9 @@ "region": "Canada", "hostname": "ca1260.nordvpn.com", "number": 1260, - "ip": "172.98.66.211", + "ips": [ + "172.98.66.211" + ], "tcp": true, "udp": true }, @@ -41983,7 +40870,9 @@ "region": "Canada", "hostname": "ca1261.nordvpn.com", "number": 1261, - "ip": "172.98.66.214", + "ips": [ + "172.98.66.214" + ], "tcp": true, "udp": true }, @@ -41991,7 +40880,9 @@ "region": "Canada", "hostname": "ca1262.nordvpn.com", "number": 1262, - "ip": "172.98.66.217", + "ips": [ + "172.98.66.217" + ], "tcp": true, "udp": true }, @@ -41999,15 +40890,9 @@ "region": "Canada", "hostname": "ca1263.nordvpn.com", "number": 1263, - "ip": "172.98.66.220", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1264.nordvpn.com", - "number": 1264, - "ip": "162.253.71.35", + "ips": [ + "172.98.66.220" + ], "tcp": true, "udp": true }, @@ -42015,7 +40900,9 @@ "region": "Canada", "hostname": "ca1265.nordvpn.com", "number": 1265, - "ip": "162.253.71.38", + "ips": [ + "162.253.71.38" + ], "tcp": true, "udp": true }, @@ -42023,7 +40910,9 @@ "region": "Canada", "hostname": "ca1266.nordvpn.com", "number": 1266, - "ip": "162.253.71.41", + "ips": [ + "162.253.71.41" + ], "tcp": true, "udp": true }, @@ -42031,7 +40920,9 @@ "region": "Canada", "hostname": "ca1267.nordvpn.com", "number": 1267, - "ip": "162.253.71.44", + "ips": [ + "162.253.71.44" + ], "tcp": true, "udp": true }, @@ -42039,7 +40930,9 @@ "region": "Canada", "hostname": "ca1268.nordvpn.com", "number": 1268, - "ip": "162.253.71.47", + "ips": [ + "162.253.71.47" + ], "tcp": true, "udp": true }, @@ -42047,7 +40940,9 @@ "region": "Canada", "hostname": "ca1276.nordvpn.com", "number": 1276, - "ip": "104.200.132.3", + "ips": [ + "104.200.132.3" + ], "tcp": true, "udp": true }, @@ -42055,7 +40950,9 @@ "region": "Canada", "hostname": "ca1277.nordvpn.com", "number": 1277, - "ip": "104.200.132.6", + "ips": [ + "104.200.132.6" + ], "tcp": true, "udp": true }, @@ -42063,7 +40960,9 @@ "region": "Canada", "hostname": "ca1278.nordvpn.com", "number": 1278, - "ip": "104.200.132.9", + "ips": [ + "104.200.132.9" + ], "tcp": true, "udp": true }, @@ -42071,7 +40970,9 @@ "region": "Canada", "hostname": "ca1286.nordvpn.com", "number": 1286, - "ip": "162.253.71.50", + "ips": [ + "162.253.71.50" + ], "tcp": true, "udp": true }, @@ -42079,15 +40980,9 @@ "region": "Canada", "hostname": "ca1287.nordvpn.com", "number": 1287, - "ip": "162.253.71.53", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1288.nordvpn.com", - "number": 1288, - "ip": "162.253.71.56", + "ips": [ + "162.253.71.53" + ], "tcp": true, "udp": true }, @@ -42095,15 +40990,9 @@ "region": "Canada", "hostname": "ca1289.nordvpn.com", "number": 1289, - "ip": "162.253.71.59", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1290.nordvpn.com", - "number": 1290, - "ip": "162.253.71.163", + "ips": [ + "162.253.71.59" + ], "tcp": true, "udp": true }, @@ -42111,7 +41000,9 @@ "region": "Canada", "hostname": "ca1291.nordvpn.com", "number": 1291, - "ip": "172.98.66.18", + "ips": [ + "172.98.66.18" + ], "tcp": true, "udp": true }, @@ -42119,7 +41010,9 @@ "region": "Canada", "hostname": "ca1292.nordvpn.com", "number": 1292, - "ip": "172.98.66.21", + "ips": [ + "172.98.66.21" + ], "tcp": true, "udp": true }, @@ -42127,7 +41020,9 @@ "region": "Canada", "hostname": "ca1293.nordvpn.com", "number": 1293, - "ip": "172.98.66.24", + "ips": [ + "172.98.66.24" + ], "tcp": true, "udp": true }, @@ -42135,7 +41030,9 @@ "region": "Canada", "hostname": "ca1294.nordvpn.com", "number": 1294, - "ip": "162.253.71.227", + "ips": [ + "162.253.71.227" + ], "tcp": true, "udp": true }, @@ -42143,7 +41040,9 @@ "region": "Canada", "hostname": "ca1295.nordvpn.com", "number": 1295, - "ip": "104.200.132.12", + "ips": [ + "104.200.132.12" + ], "tcp": true, "udp": true }, @@ -42151,7 +41050,9 @@ "region": "Canada", "hostname": "ca1296.nordvpn.com", "number": 1296, - "ip": "104.200.132.15", + "ips": [ + "104.200.132.15" + ], "tcp": true, "udp": true }, @@ -42159,7 +41060,9 @@ "region": "Canada", "hostname": "ca1298.nordvpn.com", "number": 1298, - "ip": "104.200.132.99", + "ips": [ + "104.200.132.99" + ], "tcp": true, "udp": true }, @@ -42167,7 +41070,9 @@ "region": "Canada", "hostname": "ca1299.nordvpn.com", "number": 1299, - "ip": "104.200.132.102", + "ips": [ + "104.200.132.102" + ], "tcp": true, "udp": true }, @@ -42175,7 +41080,9 @@ "region": "Canada", "hostname": "ca1300.nordvpn.com", "number": 1300, - "ip": "104.200.132.105", + "ips": [ + "104.200.132.105" + ], "tcp": true, "udp": true }, @@ -42183,15 +41090,9 @@ "region": "Canada", "hostname": "ca1301.nordvpn.com", "number": 1301, - "ip": "104.200.132.108", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1302.nordvpn.com", - "number": 1302, - "ip": "104.200.132.111", + "ips": [ + "104.200.132.108" + ], "tcp": true, "udp": true }, @@ -42199,7 +41100,9 @@ "region": "Canada", "hostname": "ca1303.nordvpn.com", "number": 1303, - "ip": "107.181.177.3", + "ips": [ + "107.181.177.3" + ], "tcp": true, "udp": true }, @@ -42207,7 +41110,9 @@ "region": "Canada", "hostname": "ca1305.nordvpn.com", "number": 1305, - "ip": "5.181.233.203", + "ips": [ + "5.181.233.203" + ], "tcp": true, "udp": true }, @@ -42215,7 +41120,9 @@ "region": "Canada", "hostname": "ca1306.nordvpn.com", "number": 1306, - "ip": "5.181.233.211", + "ips": [ + "5.181.233.211" + ], "tcp": true, "udp": true }, @@ -42223,7 +41130,9 @@ "region": "Canada", "hostname": "ca1307.nordvpn.com", "number": 1307, - "ip": "5.181.233.219", + "ips": [ + "5.181.233.219" + ], "tcp": true, "udp": true }, @@ -42231,7 +41140,9 @@ "region": "Canada", "hostname": "ca1308.nordvpn.com", "number": 1308, - "ip": "5.181.233.227", + "ips": [ + "5.181.233.227" + ], "tcp": true, "udp": true }, @@ -42239,7 +41150,9 @@ "region": "Canada", "hostname": "ca1309.nordvpn.com", "number": 1309, - "ip": "5.181.233.235", + "ips": [ + "5.181.233.235" + ], "tcp": true, "udp": true }, @@ -42247,7 +41160,9 @@ "region": "Canada", "hostname": "ca1310.nordvpn.com", "number": 1310, - "ip": "5.181.233.243", + "ips": [ + "5.181.233.243" + ], "tcp": true, "udp": true }, @@ -42255,7 +41170,9 @@ "region": "Canada", "hostname": "ca1311.nordvpn.com", "number": 1311, - "ip": "5.181.233.251", + "ips": [ + "5.181.233.251" + ], "tcp": true, "udp": true }, @@ -42263,7 +41180,9 @@ "region": "Canada", "hostname": "ca1312.nordvpn.com", "number": 1312, - "ip": "37.120.205.243", + "ips": [ + "37.120.205.243" + ], "tcp": true, "udp": true }, @@ -42271,7 +41190,9 @@ "region": "Canada", "hostname": "ca1313.nordvpn.com", "number": 1313, - "ip": "162.253.71.230", + "ips": [ + "162.253.71.230" + ], "tcp": true, "udp": true }, @@ -42279,15 +41200,9 @@ "region": "Canada", "hostname": "ca1314.nordvpn.com", "number": 1314, - "ip": "162.253.71.233", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1315.nordvpn.com", - "number": 1315, - "ip": "162.253.71.236", + "ips": [ + "162.253.71.233" + ], "tcp": true, "udp": true }, @@ -42295,7 +41210,9 @@ "region": "Canada", "hostname": "ca1316.nordvpn.com", "number": 1316, - "ip": "162.253.71.239", + "ips": [ + "162.253.71.239" + ], "tcp": true, "udp": true }, @@ -42303,15 +41220,9 @@ "region": "Canada", "hostname": "ca1317.nordvpn.com", "number": 1317, - "ip": "162.253.71.242", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1318.nordvpn.com", - "number": 1318, - "ip": "162.253.71.245", + "ips": [ + "162.253.71.242" + ], "tcp": true, "udp": true }, @@ -42319,7 +41230,9 @@ "region": "Canada", "hostname": "ca1319.nordvpn.com", "number": 1319, - "ip": "162.253.71.248", + "ips": [ + "162.253.71.248" + ], "tcp": true, "udp": true }, @@ -42327,7 +41240,9 @@ "region": "Canada", "hostname": "ca1320.nordvpn.com", "number": 1320, - "ip": "162.253.71.251", + "ips": [ + "162.253.71.251" + ], "tcp": true, "udp": true }, @@ -42335,7 +41250,9 @@ "region": "Canada", "hostname": "ca1321.nordvpn.com", "number": 1321, - "ip": "107.181.177.6", + "ips": [ + "107.181.177.6" + ], "tcp": true, "udp": true }, @@ -42343,7 +41260,9 @@ "region": "Canada", "hostname": "ca1322.nordvpn.com", "number": 1322, - "ip": "107.181.177.9", + "ips": [ + "107.181.177.9" + ], "tcp": true, "udp": true }, @@ -42351,7 +41270,9 @@ "region": "Canada", "hostname": "ca1323.nordvpn.com", "number": 1323, - "ip": "107.181.177.12", + "ips": [ + "107.181.177.12" + ], "tcp": true, "udp": true }, @@ -42359,7 +41280,9 @@ "region": "Canada", "hostname": "ca1324.nordvpn.com", "number": 1324, - "ip": "107.181.177.15", + "ips": [ + "107.181.177.15" + ], "tcp": true, "udp": true }, @@ -42367,7 +41290,9 @@ "region": "Canada", "hostname": "ca1325.nordvpn.com", "number": 1325, - "ip": "107.181.177.18", + "ips": [ + "107.181.177.18" + ], "tcp": true, "udp": true }, @@ -42375,7 +41300,9 @@ "region": "Canada", "hostname": "ca1326.nordvpn.com", "number": 1326, - "ip": "107.181.177.21", + "ips": [ + "107.181.177.21" + ], "tcp": true, "udp": true }, @@ -42383,15 +41310,9 @@ "region": "Canada", "hostname": "ca1327.nordvpn.com", "number": 1327, - "ip": "107.181.177.24", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1328.nordvpn.com", - "number": 1328, - "ip": "107.181.177.27", + "ips": [ + "107.181.177.24" + ], "tcp": true, "udp": true }, @@ -42399,7 +41320,79 @@ "region": "Canada", "hostname": "ca1329.nordvpn.com", "number": 1329, - "ip": "107.181.177.35", + "ips": [ + "107.181.177.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1330.nordvpn.com", + "number": 1330, + "ips": [ + "104.200.138.32" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1331.nordvpn.com", + "number": 1331, + "ips": [ + "104.200.138.34" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1332.nordvpn.com", + "number": 1332, + "ips": [ + "104.200.138.36" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1333.nordvpn.com", + "number": 1333, + "ips": [ + "104.200.138.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1334.nordvpn.com", + "number": 1334, + "ips": [ + "104.200.138.40" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1335.nordvpn.com", + "number": 1335, + "ips": [ + "104.200.138.42" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1336.nordvpn.com", + "number": 1336, + "ips": [ + "104.200.138.44" + ], "tcp": true, "udp": true }, @@ -42407,15 +41400,9 @@ "region": "Canada", "hostname": "ca1340.nordvpn.com", "number": 1340, - "ip": "208.78.41.67", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1341.nordvpn.com", - "number": 1341, - "ip": "208.78.41.70", + "ips": [ + "208.78.41.67" + ], "tcp": true, "udp": true }, @@ -42423,7 +41410,9 @@ "region": "Canada", "hostname": "ca1342.nordvpn.com", "number": 1342, - "ip": "208.78.41.73", + "ips": [ + "208.78.41.73" + ], "tcp": true, "udp": true }, @@ -42431,7 +41420,9 @@ "region": "Canada", "hostname": "ca1343.nordvpn.com", "number": 1343, - "ip": "208.78.41.76", + "ips": [ + "208.78.41.76" + ], "tcp": true, "udp": true }, @@ -42439,7 +41430,9 @@ "region": "Canada", "hostname": "ca1344.nordvpn.com", "number": 1344, - "ip": "208.78.41.79", + "ips": [ + "208.78.41.79" + ], "tcp": true, "udp": true }, @@ -42447,7 +41440,9 @@ "region": "Canada", "hostname": "ca1345.nordvpn.com", "number": 1345, - "ip": "208.78.41.82", + "ips": [ + "208.78.41.82" + ], "tcp": true, "udp": true }, @@ -42455,7 +41450,9 @@ "region": "Canada", "hostname": "ca1346.nordvpn.com", "number": 1346, - "ip": "37.120.205.251", + "ips": [ + "37.120.205.251" + ], "tcp": true, "udp": true }, @@ -42463,7 +41460,9 @@ "region": "Canada", "hostname": "ca1347.nordvpn.com", "number": 1347, - "ip": "139.28.218.99", + "ips": [ + "139.28.218.99" + ], "tcp": true, "udp": true }, @@ -42471,7 +41470,9 @@ "region": "Canada", "hostname": "ca1348.nordvpn.com", "number": 1348, - "ip": "139.28.218.131", + "ips": [ + "139.28.218.131" + ], "tcp": true, "udp": true }, @@ -42479,7 +41480,9 @@ "region": "Canada", "hostname": "ca1349.nordvpn.com", "number": 1349, - "ip": "139.28.218.139", + "ips": [ + "139.28.218.139" + ], "tcp": true, "udp": true }, @@ -42487,7 +41490,9 @@ "region": "Canada", "hostname": "ca1350.nordvpn.com", "number": 1350, - "ip": "139.28.218.147", + "ips": [ + "139.28.218.147" + ], "tcp": true, "udp": true }, @@ -42495,7 +41500,9 @@ "region": "Canada", "hostname": "ca1351.nordvpn.com", "number": 1351, - "ip": "139.28.218.155", + "ips": [ + "139.28.218.155" + ], "tcp": true, "udp": true }, @@ -42503,7 +41510,9 @@ "region": "Canada", "hostname": "ca1352.nordvpn.com", "number": 1352, - "ip": "5.181.233.75", + "ips": [ + "5.181.233.75" + ], "tcp": true, "udp": true }, @@ -42511,7 +41520,9 @@ "region": "Canada", "hostname": "ca1353.nordvpn.com", "number": 1353, - "ip": "5.181.233.83", + "ips": [ + "5.181.233.83" + ], "tcp": true, "udp": true }, @@ -42519,7 +41530,9 @@ "region": "Canada", "hostname": "ca1354.nordvpn.com", "number": 1354, - "ip": "5.181.233.91", + "ips": [ + "5.181.233.91" + ], "tcp": true, "udp": true }, @@ -42527,7 +41540,9 @@ "region": "Canada", "hostname": "ca1355.nordvpn.com", "number": 1355, - "ip": "45.133.182.211", + "ips": [ + "45.133.182.211" + ], "tcp": true, "udp": true }, @@ -42535,7 +41550,9 @@ "region": "Canada", "hostname": "ca1365.nordvpn.com", "number": 1365, - "ip": "208.78.41.85", + "ips": [ + "208.78.41.85" + ], "tcp": true, "udp": true }, @@ -42543,7 +41560,9 @@ "region": "Canada", "hostname": "ca1366.nordvpn.com", "number": 1366, - "ip": "208.78.41.88", + "ips": [ + "208.78.41.88" + ], "tcp": true, "udp": true }, @@ -42551,7 +41570,9 @@ "region": "Canada", "hostname": "ca1367.nordvpn.com", "number": 1367, - "ip": "208.78.41.91", + "ips": [ + "208.78.41.91" + ], "tcp": true, "udp": true }, @@ -42559,15 +41580,9 @@ "region": "Canada", "hostname": "ca1368.nordvpn.com", "number": 1368, - "ip": "208.78.41.94", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1369.nordvpn.com", - "number": 1369, - "ip": "172.83.40.202", + "ips": [ + "208.78.41.94" + ], "tcp": true, "udp": true }, @@ -42575,7 +41590,9 @@ "region": "Canada", "hostname": "ca1370.nordvpn.com", "number": 1370, - "ip": "45.133.182.219", + "ips": [ + "45.133.182.219" + ], "tcp": true, "udp": true }, @@ -42583,7 +41600,9 @@ "region": "Canada", "hostname": "ca1371.nordvpn.com", "number": 1371, - "ip": "45.133.182.227", + "ips": [ + "45.133.182.227" + ], "tcp": true, "udp": true }, @@ -42591,7 +41610,9 @@ "region": "Canada", "hostname": "ca1372.nordvpn.com", "number": 1372, - "ip": "45.133.182.235", + "ips": [ + "45.133.182.235" + ], "tcp": true, "udp": true }, @@ -42599,7 +41620,9 @@ "region": "Canada", "hostname": "ca1373.nordvpn.com", "number": 1373, - "ip": "45.133.182.243", + "ips": [ + "45.133.182.243" + ], "tcp": true, "udp": true }, @@ -42607,7 +41630,9 @@ "region": "Canada", "hostname": "ca1374.nordvpn.com", "number": 1374, - "ip": "45.133.182.251", + "ips": [ + "45.133.182.251" + ], "tcp": true, "udp": true }, @@ -42615,7 +41640,9 @@ "region": "Canada", "hostname": "ca1375.nordvpn.com", "number": 1375, - "ip": "45.133.182.147", + "ips": [ + "45.133.182.147" + ], "tcp": true, "udp": true }, @@ -42623,7 +41650,9 @@ "region": "Canada", "hostname": "ca1376.nordvpn.com", "number": 1376, - "ip": "45.133.182.155", + "ips": [ + "45.133.182.155" + ], "tcp": true, "udp": true }, @@ -42631,7 +41660,9 @@ "region": "Canada", "hostname": "ca1377.nordvpn.com", "number": 1377, - "ip": "45.133.182.171", + "ips": [ + "45.133.182.171" + ], "tcp": true, "udp": true }, @@ -42639,7 +41670,9 @@ "region": "Canada", "hostname": "ca1378.nordvpn.com", "number": 1378, - "ip": "217.138.200.83", + "ips": [ + "217.138.200.83" + ], "tcp": true, "udp": true }, @@ -42647,7 +41680,9 @@ "region": "Canada", "hostname": "ca1379.nordvpn.com", "number": 1379, - "ip": "217.138.200.59", + "ips": [ + "217.138.200.59" + ], "tcp": true, "udp": true }, @@ -42655,7 +41690,9 @@ "region": "Canada", "hostname": "ca1388.nordvpn.com", "number": 1388, - "ip": "217.138.200.67", + "ips": [ + "217.138.200.67" + ], "tcp": true, "udp": true }, @@ -42663,7 +41700,9 @@ "region": "Canada", "hostname": "ca1389.nordvpn.com", "number": 1389, - "ip": "217.138.200.75", + "ips": [ + "217.138.200.75" + ], "tcp": true, "udp": true }, @@ -42671,7 +41710,9 @@ "region": "Canada", "hostname": "ca1390.nordvpn.com", "number": 1390, - "ip": "217.138.200.91", + "ips": [ + "217.138.200.91" + ], "tcp": true, "udp": true }, @@ -42679,7 +41720,9 @@ "region": "Canada", "hostname": "ca1391.nordvpn.com", "number": 1391, - "ip": "217.138.200.115", + "ips": [ + "217.138.200.115" + ], "tcp": true, "udp": true }, @@ -42687,7 +41730,9 @@ "region": "Canada", "hostname": "ca1392.nordvpn.com", "number": 1392, - "ip": "217.138.200.123", + "ips": [ + "217.138.200.123" + ], "tcp": true, "udp": true }, @@ -42695,7 +41740,9 @@ "region": "Canada", "hostname": "ca1393.nordvpn.com", "number": 1393, - "ip": "217.138.200.131", + "ips": [ + "217.138.200.131" + ], "tcp": true, "udp": true }, @@ -42703,7 +41750,9 @@ "region": "Canada", "hostname": "ca1394.nordvpn.com", "number": 1394, - "ip": "217.138.200.139", + "ips": [ + "217.138.200.139" + ], "tcp": true, "udp": true }, @@ -42711,7 +41760,9 @@ "region": "Canada", "hostname": "ca1395.nordvpn.com", "number": 1395, - "ip": "217.138.200.147", + "ips": [ + "217.138.200.147" + ], "tcp": true, "udp": true }, @@ -42719,7 +41770,9 @@ "region": "Canada", "hostname": "ca1396.nordvpn.com", "number": 1396, - "ip": "217.138.200.155", + "ips": [ + "217.138.200.155" + ], "tcp": true, "udp": true }, @@ -42727,7 +41780,9 @@ "region": "Canada", "hostname": "ca1397.nordvpn.com", "number": 1397, - "ip": "217.138.200.163", + "ips": [ + "217.138.200.163" + ], "tcp": true, "udp": true }, @@ -42735,7 +41790,9 @@ "region": "Canada", "hostname": "ca1404.nordvpn.com", "number": 1404, - "ip": "217.138.200.171", + "ips": [ + "217.138.200.171" + ], "tcp": true, "udp": true }, @@ -42743,15 +41800,9 @@ "region": "Canada", "hostname": "ca1421.nordvpn.com", "number": 1421, - "ip": "172.83.40.99", - "tcp": true, - "udp": true - }, - { - "region": "Canada", - "hostname": "ca1422.nordvpn.com", - "number": 1422, - "ip": "172.83.40.102", + "ips": [ + "172.83.40.99" + ], "tcp": true, "udp": true }, @@ -42759,7 +41810,9 @@ "region": "Canada", "hostname": "ca1423.nordvpn.com", "number": 1423, - "ip": "172.83.40.105", + "ips": [ + "172.83.40.105" + ], "tcp": true, "udp": true }, @@ -42767,7 +41820,9 @@ "region": "Canada", "hostname": "ca1424.nordvpn.com", "number": 1424, - "ip": "172.83.40.108", + "ips": [ + "172.83.40.108" + ], "tcp": true, "udp": true }, @@ -42775,7 +41830,9 @@ "region": "Canada", "hostname": "ca1425.nordvpn.com", "number": 1425, - "ip": "172.83.40.111", + "ips": [ + "172.83.40.111" + ], "tcp": true, "udp": true }, @@ -42783,7 +41840,9 @@ "region": "Canada", "hostname": "ca1426.nordvpn.com", "number": 1426, - "ip": "172.83.40.114", + "ips": [ + "172.83.40.114" + ], "tcp": true, "udp": true }, @@ -42791,7 +41850,9 @@ "region": "Canada", "hostname": "ca1427.nordvpn.com", "number": 1427, - "ip": "172.83.40.117", + "ips": [ + "172.83.40.117" + ], "tcp": true, "udp": true }, @@ -42799,7 +41860,9 @@ "region": "Canada", "hostname": "ca1428.nordvpn.com", "number": 1428, - "ip": "172.83.40.120", + "ips": [ + "172.83.40.120" + ], "tcp": true, "udp": true }, @@ -42807,7 +41870,9 @@ "region": "Canada", "hostname": "ca1429.nordvpn.com", "number": 1429, - "ip": "172.83.40.123", + "ips": [ + "172.83.40.123" + ], "tcp": true, "udp": true }, @@ -42815,7 +41880,9 @@ "region": "Canada", "hostname": "ca1430.nordvpn.com", "number": 1430, - "ip": "66.115.146.227", + "ips": [ + "66.115.146.227" + ], "tcp": true, "udp": true }, @@ -42823,7 +41890,9 @@ "region": "Canada", "hostname": "ca1431.nordvpn.com", "number": 1431, - "ip": "66.115.146.230", + "ips": [ + "66.115.146.230" + ], "tcp": true, "udp": true }, @@ -42831,7 +41900,9 @@ "region": "Canada", "hostname": "ca1432.nordvpn.com", "number": 1432, - "ip": "66.115.146.233", + "ips": [ + "66.115.146.233" + ], "tcp": true, "udp": true }, @@ -42839,7 +41910,9 @@ "region": "Canada", "hostname": "ca1433.nordvpn.com", "number": 1433, - "ip": "66.115.146.236", + "ips": [ + "66.115.146.236" + ], "tcp": true, "udp": true }, @@ -42847,7 +41920,9 @@ "region": "Canada", "hostname": "ca1434.nordvpn.com", "number": 1434, - "ip": "66.115.146.239", + "ips": [ + "66.115.146.239" + ], "tcp": true, "udp": true }, @@ -42855,7 +41930,9 @@ "region": "Canada", "hostname": "ca1435.nordvpn.com", "number": 1435, - "ip": "66.115.146.242", + "ips": [ + "66.115.146.242" + ], "tcp": true, "udp": true }, @@ -42863,7 +41940,9 @@ "region": "Canada", "hostname": "ca1437.nordvpn.com", "number": 1437, - "ip": "37.19.213.2", + "ips": [ + "37.19.213.2" + ], "tcp": true, "udp": true }, @@ -42871,7 +41950,9 @@ "region": "Canada", "hostname": "ca1438.nordvpn.com", "number": 1438, - "ip": "37.19.213.7", + "ips": [ + "37.19.213.7" + ], "tcp": true, "udp": true }, @@ -42879,7 +41960,9 @@ "region": "Canada", "hostname": "ca1439.nordvpn.com", "number": 1439, - "ip": "37.19.213.12", + "ips": [ + "37.19.213.12" + ], "tcp": true, "udp": true }, @@ -42887,7 +41970,9 @@ "region": "Canada", "hostname": "ca1440.nordvpn.com", "number": 1440, - "ip": "37.19.213.17", + "ips": [ + "37.19.213.17" + ], "tcp": true, "udp": true }, @@ -42895,7 +41980,9 @@ "region": "Canada", "hostname": "ca1441.nordvpn.com", "number": 1441, - "ip": "37.19.213.22", + "ips": [ + "37.19.213.22" + ], "tcp": true, "udp": true }, @@ -42903,7 +41990,9 @@ "region": "Canada", "hostname": "ca1442.nordvpn.com", "number": 1442, - "ip": "37.19.213.27", + "ips": [ + "37.19.213.27" + ], "tcp": true, "udp": true }, @@ -42911,7 +42000,9 @@ "region": "Canada", "hostname": "ca1443.nordvpn.com", "number": 1443, - "ip": "37.19.213.32", + "ips": [ + "37.19.213.32" + ], "tcp": true, "udp": true }, @@ -42919,7 +42010,9 @@ "region": "Canada", "hostname": "ca1444.nordvpn.com", "number": 1444, - "ip": "37.19.213.37", + "ips": [ + "37.19.213.37" + ], "tcp": true, "udp": true }, @@ -42927,7 +42020,9 @@ "region": "Canada", "hostname": "ca1445.nordvpn.com", "number": 1445, - "ip": "37.19.213.42", + "ips": [ + "37.19.213.42" + ], "tcp": true, "udp": true }, @@ -42935,7 +42030,9 @@ "region": "Canada", "hostname": "ca1446.nordvpn.com", "number": 1446, - "ip": "37.19.213.47", + "ips": [ + "37.19.213.47" + ], "tcp": true, "udp": true }, @@ -42943,7 +42040,9 @@ "region": "Canada", "hostname": "ca1447.nordvpn.com", "number": 1447, - "ip": "37.19.213.52", + "ips": [ + "37.19.213.52" + ], "tcp": true, "udp": true }, @@ -42951,7 +42050,9 @@ "region": "Canada", "hostname": "ca1448.nordvpn.com", "number": 1448, - "ip": "37.19.213.57", + "ips": [ + "37.19.213.57" + ], "tcp": true, "udp": true }, @@ -42959,7 +42060,9 @@ "region": "Canada", "hostname": "ca1449.nordvpn.com", "number": 1449, - "ip": "37.19.213.62", + "ips": [ + "37.19.213.62" + ], "tcp": true, "udp": true }, @@ -42967,7 +42070,9 @@ "region": "Canada", "hostname": "ca1450.nordvpn.com", "number": 1450, - "ip": "37.19.213.67", + "ips": [ + "37.19.213.67" + ], "tcp": true, "udp": true }, @@ -42975,7 +42080,9 @@ "region": "Canada", "hostname": "ca1451.nordvpn.com", "number": 1451, - "ip": "37.19.213.72", + "ips": [ + "37.19.213.72" + ], "tcp": true, "udp": true }, @@ -42983,7 +42090,9 @@ "region": "Canada", "hostname": "ca1452.nordvpn.com", "number": 1452, - "ip": "37.19.213.77", + "ips": [ + "37.19.213.77" + ], "tcp": true, "udp": true }, @@ -42991,7 +42100,9 @@ "region": "Canada", "hostname": "ca1453.nordvpn.com", "number": 1453, - "ip": "37.19.213.82", + "ips": [ + "37.19.213.82" + ], "tcp": true, "udp": true }, @@ -42999,7 +42110,9 @@ "region": "Canada", "hostname": "ca1454.nordvpn.com", "number": 1454, - "ip": "37.19.213.87", + "ips": [ + "37.19.213.87" + ], "tcp": true, "udp": true }, @@ -43007,7 +42120,9 @@ "region": "Canada", "hostname": "ca1455.nordvpn.com", "number": 1455, - "ip": "37.19.213.92", + "ips": [ + "37.19.213.92" + ], "tcp": true, "udp": true }, @@ -43015,7 +42130,9 @@ "region": "Canada", "hostname": "ca1456.nordvpn.com", "number": 1456, - "ip": "37.19.213.97", + "ips": [ + "37.19.213.97" + ], "tcp": true, "udp": true }, @@ -43023,7 +42140,9 @@ "region": "Canada", "hostname": "ca1457.nordvpn.com", "number": 1457, - "ip": "37.19.213.102", + "ips": [ + "37.19.213.102" + ], "tcp": true, "udp": true }, @@ -43031,7 +42150,9 @@ "region": "Canada", "hostname": "ca1458.nordvpn.com", "number": 1458, - "ip": "37.19.213.107", + "ips": [ + "37.19.213.107" + ], "tcp": true, "udp": true }, @@ -43039,7 +42160,9 @@ "region": "Canada", "hostname": "ca1459.nordvpn.com", "number": 1459, - "ip": "37.19.213.112", + "ips": [ + "37.19.213.112" + ], "tcp": true, "udp": true }, @@ -43047,7 +42170,9 @@ "region": "Canada", "hostname": "ca1460.nordvpn.com", "number": 1460, - "ip": "37.19.213.117", + "ips": [ + "37.19.213.117" + ], "tcp": true, "udp": true }, @@ -43055,7 +42180,9 @@ "region": "Canada", "hostname": "ca1461.nordvpn.com", "number": 1461, - "ip": "37.19.213.122", + "ips": [ + "37.19.213.122" + ], "tcp": true, "udp": true }, @@ -43063,7 +42190,9 @@ "region": "Canada", "hostname": "ca1462.nordvpn.com", "number": 1462, - "ip": "37.19.213.127", + "ips": [ + "37.19.213.127" + ], "tcp": true, "udp": true }, @@ -43071,7 +42200,9 @@ "region": "Canada", "hostname": "ca1463.nordvpn.com", "number": 1463, - "ip": "37.19.213.132", + "ips": [ + "37.19.213.132" + ], "tcp": true, "udp": true }, @@ -43079,7 +42210,9 @@ "region": "Canada", "hostname": "ca1464.nordvpn.com", "number": 1464, - "ip": "37.19.213.137", + "ips": [ + "37.19.213.137" + ], "tcp": true, "udp": true }, @@ -43087,7 +42220,9 @@ "region": "Canada", "hostname": "ca1465.nordvpn.com", "number": 1465, - "ip": "37.19.213.142", + "ips": [ + "37.19.213.142" + ], "tcp": true, "udp": true }, @@ -43095,7 +42230,9 @@ "region": "Canada", "hostname": "ca1466.nordvpn.com", "number": 1466, - "ip": "37.19.213.147", + "ips": [ + "37.19.213.147" + ], "tcp": true, "udp": true }, @@ -43103,7 +42240,9 @@ "region": "Canada", "hostname": "ca1467.nordvpn.com", "number": 1467, - "ip": "37.19.213.152", + "ips": [ + "37.19.213.152" + ], "tcp": true, "udp": true }, @@ -43111,7 +42250,9 @@ "region": "Canada", "hostname": "ca1468.nordvpn.com", "number": 1468, - "ip": "37.19.213.157", + "ips": [ + "37.19.213.157" + ], "tcp": true, "udp": true }, @@ -43119,7 +42260,9 @@ "region": "Canada", "hostname": "ca1469.nordvpn.com", "number": 1469, - "ip": "37.19.213.162", + "ips": [ + "37.19.213.162" + ], "tcp": true, "udp": true }, @@ -43127,7 +42270,9 @@ "region": "Canada", "hostname": "ca1470.nordvpn.com", "number": 1470, - "ip": "37.19.213.167", + "ips": [ + "37.19.213.167" + ], "tcp": true, "udp": true }, @@ -43135,7 +42280,9 @@ "region": "Canada", "hostname": "ca1471.nordvpn.com", "number": 1471, - "ip": "37.19.213.172", + "ips": [ + "37.19.213.172" + ], "tcp": true, "udp": true }, @@ -43143,7 +42290,9 @@ "region": "Canada", "hostname": "ca1472.nordvpn.com", "number": 1472, - "ip": "37.19.213.177", + "ips": [ + "37.19.213.177" + ], "tcp": true, "udp": true }, @@ -43151,7 +42300,9 @@ "region": "Canada", "hostname": "ca1473.nordvpn.com", "number": 1473, - "ip": "37.19.213.182", + "ips": [ + "37.19.213.182" + ], "tcp": true, "udp": true }, @@ -43159,7 +42310,9 @@ "region": "Canada", "hostname": "ca1474.nordvpn.com", "number": 1474, - "ip": "37.19.213.187", + "ips": [ + "37.19.213.187" + ], "tcp": true, "udp": true }, @@ -43167,7 +42320,9 @@ "region": "Canada", "hostname": "ca1475.nordvpn.com", "number": 1475, - "ip": "37.19.213.192", + "ips": [ + "37.19.213.192" + ], "tcp": true, "udp": true }, @@ -43175,7 +42330,9 @@ "region": "Canada", "hostname": "ca1476.nordvpn.com", "number": 1476, - "ip": "37.19.213.197", + "ips": [ + "37.19.213.197" + ], "tcp": true, "udp": true }, @@ -43183,7 +42340,9 @@ "region": "Canada", "hostname": "ca1477.nordvpn.com", "number": 1477, - "ip": "37.19.213.202", + "ips": [ + "37.19.213.202" + ], "tcp": true, "udp": true }, @@ -43191,7 +42350,9 @@ "region": "Canada", "hostname": "ca1478.nordvpn.com", "number": 1478, - "ip": "37.19.213.207", + "ips": [ + "37.19.213.207" + ], "tcp": true, "udp": true }, @@ -43199,7 +42360,9 @@ "region": "Canada", "hostname": "ca1479.nordvpn.com", "number": 1479, - "ip": "37.19.213.212", + "ips": [ + "37.19.213.212" + ], "tcp": true, "udp": true }, @@ -43207,7 +42370,9 @@ "region": "Canada", "hostname": "ca1480.nordvpn.com", "number": 1480, - "ip": "37.19.213.217", + "ips": [ + "37.19.213.217" + ], "tcp": true, "udp": true }, @@ -43215,7 +42380,9 @@ "region": "Canada", "hostname": "ca1481.nordvpn.com", "number": 1481, - "ip": "37.19.213.222", + "ips": [ + "37.19.213.222" + ], "tcp": true, "udp": true }, @@ -43223,7 +42390,9 @@ "region": "Canada", "hostname": "ca1482.nordvpn.com", "number": 1482, - "ip": "37.19.213.227", + "ips": [ + "37.19.213.227" + ], "tcp": true, "udp": true }, @@ -43231,7 +42400,9 @@ "region": "Canada", "hostname": "ca1483.nordvpn.com", "number": 1483, - "ip": "37.19.213.232", + "ips": [ + "37.19.213.232" + ], "tcp": true, "udp": true }, @@ -43239,7 +42410,9 @@ "region": "Canada", "hostname": "ca1484.nordvpn.com", "number": 1484, - "ip": "37.19.213.237", + "ips": [ + "37.19.213.237" + ], "tcp": true, "udp": true }, @@ -43247,7 +42420,9 @@ "region": "Canada", "hostname": "ca1485.nordvpn.com", "number": 1485, - "ip": "37.19.213.242", + "ips": [ + "37.19.213.242" + ], "tcp": true, "udp": true }, @@ -43255,7 +42430,9 @@ "region": "Canada", "hostname": "ca1486.nordvpn.com", "number": 1486, - "ip": "37.19.213.247", + "ips": [ + "37.19.213.247" + ], "tcp": true, "udp": true }, @@ -43263,7 +42440,9 @@ "region": "Canada", "hostname": "ca1487.nordvpn.com", "number": 1487, - "ip": "37.19.212.2", + "ips": [ + "37.19.212.2" + ], "tcp": true, "udp": true }, @@ -43271,7 +42450,9 @@ "region": "Canada", "hostname": "ca1488.nordvpn.com", "number": 1488, - "ip": "37.19.212.7", + "ips": [ + "37.19.212.7" + ], "tcp": true, "udp": true }, @@ -43279,7 +42460,9 @@ "region": "Canada", "hostname": "ca1489.nordvpn.com", "number": 1489, - "ip": "37.19.212.12", + "ips": [ + "37.19.212.12" + ], "tcp": true, "udp": true }, @@ -43287,7 +42470,9 @@ "region": "Canada", "hostname": "ca1490.nordvpn.com", "number": 1490, - "ip": "37.19.212.17", + "ips": [ + "37.19.212.17" + ], "tcp": true, "udp": true }, @@ -43295,7 +42480,9 @@ "region": "Canada", "hostname": "ca1491.nordvpn.com", "number": 1491, - "ip": "37.19.212.22", + "ips": [ + "37.19.212.22" + ], "tcp": true, "udp": true }, @@ -43303,7 +42490,9 @@ "region": "Canada", "hostname": "ca1492.nordvpn.com", "number": 1492, - "ip": "37.19.212.27", + "ips": [ + "37.19.212.27" + ], "tcp": true, "udp": true }, @@ -43311,7 +42500,9 @@ "region": "Canada", "hostname": "ca1493.nordvpn.com", "number": 1493, - "ip": "37.19.212.32", + "ips": [ + "37.19.212.32" + ], "tcp": true, "udp": true }, @@ -43319,7 +42510,9 @@ "region": "Canada", "hostname": "ca1494.nordvpn.com", "number": 1494, - "ip": "37.19.212.37", + "ips": [ + "37.19.212.37" + ], "tcp": true, "udp": true }, @@ -43327,7 +42520,9 @@ "region": "Canada", "hostname": "ca1495.nordvpn.com", "number": 1495, - "ip": "37.19.212.42", + "ips": [ + "37.19.212.42" + ], "tcp": true, "udp": true }, @@ -43335,7 +42530,9 @@ "region": "Canada", "hostname": "ca1496.nordvpn.com", "number": 1496, - "ip": "37.19.212.47", + "ips": [ + "37.19.212.47" + ], "tcp": true, "udp": true }, @@ -43343,7 +42540,9 @@ "region": "Canada", "hostname": "ca1497.nordvpn.com", "number": 1497, - "ip": "37.19.212.52", + "ips": [ + "37.19.212.52" + ], "tcp": true, "udp": true }, @@ -43351,7 +42550,9 @@ "region": "Canada", "hostname": "ca1498.nordvpn.com", "number": 1498, - "ip": "37.19.212.57", + "ips": [ + "37.19.212.57" + ], "tcp": true, "udp": true }, @@ -43359,7 +42560,9 @@ "region": "Canada", "hostname": "ca1499.nordvpn.com", "number": 1499, - "ip": "37.19.212.62", + "ips": [ + "37.19.212.62" + ], "tcp": true, "udp": true }, @@ -43367,7 +42570,9 @@ "region": "Canada", "hostname": "ca1500.nordvpn.com", "number": 1500, - "ip": "37.19.212.67", + "ips": [ + "37.19.212.67" + ], "tcp": true, "udp": true }, @@ -43375,7 +42580,9 @@ "region": "Canada", "hostname": "ca1501.nordvpn.com", "number": 1501, - "ip": "37.19.212.72", + "ips": [ + "37.19.212.72" + ], "tcp": true, "udp": true }, @@ -43383,7 +42590,9 @@ "region": "Canada", "hostname": "ca1502.nordvpn.com", "number": 1502, - "ip": "37.19.212.77", + "ips": [ + "37.19.212.77" + ], "tcp": true, "udp": true }, @@ -43391,7 +42600,9 @@ "region": "Canada", "hostname": "ca1503.nordvpn.com", "number": 1503, - "ip": "37.19.212.82", + "ips": [ + "37.19.212.82" + ], "tcp": true, "udp": true }, @@ -43399,7 +42610,9 @@ "region": "Canada", "hostname": "ca1504.nordvpn.com", "number": 1504, - "ip": "37.19.212.87", + "ips": [ + "37.19.212.87" + ], "tcp": true, "udp": true }, @@ -43407,7 +42620,9 @@ "region": "Canada", "hostname": "ca1505.nordvpn.com", "number": 1505, - "ip": "37.19.212.92", + "ips": [ + "37.19.212.92" + ], "tcp": true, "udp": true }, @@ -43415,7 +42630,9 @@ "region": "Canada", "hostname": "ca1506.nordvpn.com", "number": 1506, - "ip": "37.19.212.97", + "ips": [ + "37.19.212.97" + ], "tcp": true, "udp": true }, @@ -43423,7 +42640,9 @@ "region": "Canada", "hostname": "ca1507.nordvpn.com", "number": 1507, - "ip": "37.19.212.102", + "ips": [ + "37.19.212.102" + ], "tcp": true, "udp": true }, @@ -43431,7 +42650,9 @@ "region": "Canada", "hostname": "ca1508.nordvpn.com", "number": 1508, - "ip": "37.19.212.107", + "ips": [ + "37.19.212.107" + ], "tcp": true, "udp": true }, @@ -43439,7 +42660,9 @@ "region": "Canada", "hostname": "ca1509.nordvpn.com", "number": 1509, - "ip": "37.19.212.112", + "ips": [ + "37.19.212.112" + ], "tcp": true, "udp": true }, @@ -43447,7 +42670,9 @@ "region": "Canada", "hostname": "ca1510.nordvpn.com", "number": 1510, - "ip": "37.19.212.117", + "ips": [ + "37.19.212.117" + ], "tcp": true, "udp": true }, @@ -43455,7 +42680,9 @@ "region": "Canada", "hostname": "ca1511.nordvpn.com", "number": 1511, - "ip": "37.19.212.122", + "ips": [ + "37.19.212.122" + ], "tcp": true, "udp": true }, @@ -43463,7 +42690,9 @@ "region": "Canada", "hostname": "ca1512.nordvpn.com", "number": 1512, - "ip": "37.19.212.127", + "ips": [ + "37.19.212.127" + ], "tcp": true, "udp": true }, @@ -43471,7 +42700,9 @@ "region": "Canada", "hostname": "ca1513.nordvpn.com", "number": 1513, - "ip": "37.19.212.132", + "ips": [ + "37.19.212.132" + ], "tcp": true, "udp": true }, @@ -43479,7 +42710,9 @@ "region": "Canada", "hostname": "ca1514.nordvpn.com", "number": 1514, - "ip": "37.19.212.137", + "ips": [ + "37.19.212.137" + ], "tcp": true, "udp": true }, @@ -43487,7 +42720,9 @@ "region": "Canada", "hostname": "ca1515.nordvpn.com", "number": 1515, - "ip": "37.19.212.142", + "ips": [ + "37.19.212.142" + ], "tcp": true, "udp": true }, @@ -43495,7 +42730,9 @@ "region": "Canada", "hostname": "ca1516.nordvpn.com", "number": 1516, - "ip": "37.19.212.147", + "ips": [ + "37.19.212.147" + ], "tcp": true, "udp": true }, @@ -43503,7 +42740,9 @@ "region": "Canada", "hostname": "ca1517.nordvpn.com", "number": 1517, - "ip": "37.19.212.152", + "ips": [ + "37.19.212.152" + ], "tcp": true, "udp": true }, @@ -43511,7 +42750,9 @@ "region": "Canada", "hostname": "ca1518.nordvpn.com", "number": 1518, - "ip": "37.19.212.157", + "ips": [ + "37.19.212.157" + ], "tcp": true, "udp": true }, @@ -43519,7 +42760,9 @@ "region": "Canada", "hostname": "ca1519.nordvpn.com", "number": 1519, - "ip": "37.19.212.162", + "ips": [ + "37.19.212.162" + ], "tcp": true, "udp": true }, @@ -43527,7 +42770,9 @@ "region": "Canada", "hostname": "ca1520.nordvpn.com", "number": 1520, - "ip": "37.19.212.167", + "ips": [ + "37.19.212.167" + ], "tcp": true, "udp": true }, @@ -43535,7 +42780,9 @@ "region": "Canada", "hostname": "ca1521.nordvpn.com", "number": 1521, - "ip": "37.19.212.247", + "ips": [ + "37.19.212.247" + ], "tcp": true, "udp": true }, @@ -43543,7 +42790,9 @@ "region": "Canada", "hostname": "ca1522.nordvpn.com", "number": 1522, - "ip": "37.19.212.172", + "ips": [ + "37.19.212.172" + ], "tcp": true, "udp": true }, @@ -43551,7 +42800,9 @@ "region": "Canada", "hostname": "ca1523.nordvpn.com", "number": 1523, - "ip": "37.19.212.177", + "ips": [ + "37.19.212.177" + ], "tcp": true, "udp": true }, @@ -43559,7 +42810,9 @@ "region": "Canada", "hostname": "ca1524.nordvpn.com", "number": 1524, - "ip": "37.19.212.182", + "ips": [ + "37.19.212.182" + ], "tcp": true, "udp": true }, @@ -43567,7 +42820,9 @@ "region": "Canada", "hostname": "ca1525.nordvpn.com", "number": 1525, - "ip": "37.19.212.187", + "ips": [ + "37.19.212.187" + ], "tcp": true, "udp": true }, @@ -43575,7 +42830,9 @@ "region": "Canada", "hostname": "ca1526.nordvpn.com", "number": 1526, - "ip": "37.19.212.192", + "ips": [ + "37.19.212.192" + ], "tcp": true, "udp": true }, @@ -43583,7 +42840,9 @@ "region": "Canada", "hostname": "ca1527.nordvpn.com", "number": 1527, - "ip": "37.19.212.197", + "ips": [ + "37.19.212.197" + ], "tcp": true, "udp": true }, @@ -43591,7 +42850,9 @@ "region": "Canada", "hostname": "ca1528.nordvpn.com", "number": 1528, - "ip": "37.19.212.202", + "ips": [ + "37.19.212.202" + ], "tcp": true, "udp": true }, @@ -43599,7 +42860,9 @@ "region": "Canada", "hostname": "ca1538.nordvpn.com", "number": 1538, - "ip": "217.138.213.27", + "ips": [ + "217.138.213.27" + ], "tcp": true, "udp": true }, @@ -43607,7 +42870,9 @@ "region": "Canada", "hostname": "ca1539.nordvpn.com", "number": 1539, - "ip": "146.70.75.3", + "ips": [ + "146.70.75.3" + ], "tcp": true, "udp": true }, @@ -43615,7 +42880,9 @@ "region": "Canada", "hostname": "ca1540.nordvpn.com", "number": 1540, - "ip": "146.70.75.11", + "ips": [ + "146.70.75.11" + ], "tcp": true, "udp": true }, @@ -43623,7 +42890,9 @@ "region": "Canada", "hostname": "ca1541.nordvpn.com", "number": 1541, - "ip": "146.70.75.19", + "ips": [ + "146.70.75.19" + ], "tcp": true, "udp": true }, @@ -43631,7 +42900,9 @@ "region": "Canada", "hostname": "ca1542.nordvpn.com", "number": 1542, - "ip": "146.70.75.27", + "ips": [ + "146.70.75.27" + ], "tcp": true, "udp": true }, @@ -43639,7 +42910,9 @@ "region": "Canada", "hostname": "ca1543.nordvpn.com", "number": 1543, - "ip": "146.70.75.35", + "ips": [ + "146.70.75.35" + ], "tcp": true, "udp": true }, @@ -43647,7 +42920,9 @@ "region": "Canada", "hostname": "ca1544.nordvpn.com", "number": 1544, - "ip": "146.70.75.43", + "ips": [ + "146.70.75.43" + ], "tcp": true, "udp": true }, @@ -43655,7 +42930,9 @@ "region": "Canada", "hostname": "ca1545.nordvpn.com", "number": 1545, - "ip": "146.70.75.51", + "ips": [ + "146.70.75.51" + ], "tcp": true, "udp": true }, @@ -43663,7 +42940,9 @@ "region": "Canada", "hostname": "ca1546.nordvpn.com", "number": 1546, - "ip": "146.70.75.59", + "ips": [ + "146.70.75.59" + ], "tcp": true, "udp": true }, @@ -43671,7 +42950,9 @@ "region": "Canada", "hostname": "ca1547.nordvpn.com", "number": 1547, - "ip": "146.70.75.67", + "ips": [ + "146.70.75.67" + ], "tcp": true, "udp": true }, @@ -43679,7 +42960,9 @@ "region": "Canada", "hostname": "ca1548.nordvpn.com", "number": 1548, - "ip": "146.70.75.75", + "ips": [ + "146.70.75.75" + ], "tcp": true, "udp": true }, @@ -43687,7 +42970,9 @@ "region": "Canada", "hostname": "ca1549.nordvpn.com", "number": 1549, - "ip": "146.70.75.83", + "ips": [ + "146.70.75.83" + ], "tcp": true, "udp": true }, @@ -43695,7 +42980,9 @@ "region": "Canada", "hostname": "ca1550.nordvpn.com", "number": 1550, - "ip": "146.70.75.91", + "ips": [ + "146.70.75.91" + ], "tcp": true, "udp": true }, @@ -43703,7 +42990,9 @@ "region": "Canada", "hostname": "ca1551.nordvpn.com", "number": 1551, - "ip": "146.70.75.99", + "ips": [ + "146.70.75.99" + ], "tcp": true, "udp": true }, @@ -43711,7 +43000,9 @@ "region": "Canada", "hostname": "ca1552.nordvpn.com", "number": 1552, - "ip": "146.70.75.107", + "ips": [ + "146.70.75.107" + ], "tcp": true, "udp": true }, @@ -43719,7 +43010,9 @@ "region": "Canada", "hostname": "ca1553.nordvpn.com", "number": 1553, - "ip": "146.70.75.115", + "ips": [ + "146.70.75.115" + ], "tcp": true, "udp": true }, @@ -43727,7 +43020,9 @@ "region": "Canada", "hostname": "ca1554.nordvpn.com", "number": 1554, - "ip": "146.70.75.123", + "ips": [ + "146.70.75.123" + ], "tcp": true, "udp": true }, @@ -43735,7 +43030,9 @@ "region": "Canada", "hostname": "ca1555.nordvpn.com", "number": 1555, - "ip": "146.70.75.131", + "ips": [ + "146.70.75.131" + ], "tcp": true, "udp": true }, @@ -43743,7 +43040,9 @@ "region": "Canada", "hostname": "ca1556.nordvpn.com", "number": 1556, - "ip": "146.70.75.139", + "ips": [ + "146.70.75.139" + ], "tcp": true, "udp": true }, @@ -43751,7 +43050,9 @@ "region": "Canada", "hostname": "ca1557.nordvpn.com", "number": 1557, - "ip": "146.70.75.147", + "ips": [ + "146.70.75.147" + ], "tcp": true, "udp": true }, @@ -43759,7 +43060,9 @@ "region": "Canada", "hostname": "ca1558.nordvpn.com", "number": 1558, - "ip": "146.70.75.155", + "ips": [ + "146.70.75.155" + ], "tcp": true, "udp": true }, @@ -43767,7 +43070,9 @@ "region": "Canada", "hostname": "ca1559.nordvpn.com", "number": 1559, - "ip": "146.70.75.163", + "ips": [ + "146.70.75.163" + ], "tcp": true, "udp": true }, @@ -43775,7 +43080,9 @@ "region": "Canada", "hostname": "ca1560.nordvpn.com", "number": 1560, - "ip": "146.70.75.171", + "ips": [ + "146.70.75.171" + ], "tcp": true, "udp": true }, @@ -43783,7 +43090,9 @@ "region": "Canada", "hostname": "ca1561.nordvpn.com", "number": 1561, - "ip": "146.70.75.179", + "ips": [ + "146.70.75.179" + ], "tcp": true, "udp": true }, @@ -43791,7 +43100,9 @@ "region": "Canada", "hostname": "ca1562.nordvpn.com", "number": 1562, - "ip": "146.70.75.187", + "ips": [ + "146.70.75.187" + ], "tcp": true, "udp": true }, @@ -43799,7 +43110,9 @@ "region": "Canada", "hostname": "ca1563.nordvpn.com", "number": 1563, - "ip": "146.70.75.195", + "ips": [ + "146.70.75.195" + ], "tcp": true, "udp": true }, @@ -43807,7 +43120,9 @@ "region": "Canada", "hostname": "ca1564.nordvpn.com", "number": 1564, - "ip": "146.70.75.203", + "ips": [ + "146.70.75.203" + ], "tcp": true, "udp": true }, @@ -43815,7 +43130,399 @@ "region": "Canada", "hostname": "ca1565.nordvpn.com", "number": 1565, - "ip": "146.70.75.211", + "ips": [ + "146.70.75.211" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1566.nordvpn.com", + "number": 1566, + "ips": [ + "185.153.179.100" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1567.nordvpn.com", + "number": 1567, + "ips": [ + "185.153.179.102" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1568.nordvpn.com", + "number": 1568, + "ips": [ + "185.153.179.104" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1569.nordvpn.com", + "number": 1569, + "ips": [ + "185.153.179.106" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1570.nordvpn.com", + "number": 1570, + "ips": [ + "185.153.179.108" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1571.nordvpn.com", + "number": 1571, + "ips": [ + "185.153.179.110" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1572.nordvpn.com", + "number": 1572, + "ips": [ + "185.153.179.112" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1573.nordvpn.com", + "number": 1573, + "ips": [ + "185.153.179.114" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1574.nordvpn.com", + "number": 1574, + "ips": [ + "185.153.179.116" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1575.nordvpn.com", + "number": 1575, + "ips": [ + "185.153.179.118" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1576.nordvpn.com", + "number": 1576, + "ips": [ + "185.153.179.120" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1577.nordvpn.com", + "number": 1577, + "ips": [ + "185.153.179.122" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1578.nordvpn.com", + "number": 1578, + "ips": [ + "185.153.179.124" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1579.nordvpn.com", + "number": 1579, + "ips": [ + "185.153.179.126" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1580.nordvpn.com", + "number": 1580, + "ips": [ + "185.153.179.128" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1581.nordvpn.com", + "number": 1581, + "ips": [ + "185.153.179.130" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1582.nordvpn.com", + "number": 1582, + "ips": [ + "185.153.179.132" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1583.nordvpn.com", + "number": 1583, + "ips": [ + "185.153.179.134" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1584.nordvpn.com", + "number": 1584, + "ips": [ + "185.153.179.136" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1585.nordvpn.com", + "number": 1585, + "ips": [ + "185.153.179.138" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1586.nordvpn.com", + "number": 1586, + "ips": [ + "185.153.179.140" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1587.nordvpn.com", + "number": 1587, + "ips": [ + "185.153.179.142" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1588.nordvpn.com", + "number": 1588, + "ips": [ + "185.153.179.144" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1589.nordvpn.com", + "number": 1589, + "ips": [ + "185.153.179.146" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1590.nordvpn.com", + "number": 1590, + "ips": [ + "185.153.179.148" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1591.nordvpn.com", + "number": 1591, + "ips": [ + "185.153.179.150" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1592.nordvpn.com", + "number": 1592, + "ips": [ + "185.153.179.152" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1593.nordvpn.com", + "number": 1593, + "ips": [ + "185.153.179.154" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1594.nordvpn.com", + "number": 1594, + "ips": [ + "185.153.179.156" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1595.nordvpn.com", + "number": 1595, + "ips": [ + "185.153.179.158" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1596.nordvpn.com", + "number": 1596, + "ips": [ + "185.153.179.160" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1597.nordvpn.com", + "number": 1597, + "ips": [ + "185.153.179.162" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1598.nordvpn.com", + "number": 1598, + "ips": [ + "23.230.46.100" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1599.nordvpn.com", + "number": 1599, + "ips": [ + "23.230.46.102" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1600.nordvpn.com", + "number": 1600, + "ips": [ + "23.230.46.104" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1601.nordvpn.com", + "number": 1601, + "ips": [ + "23.230.46.106" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1602.nordvpn.com", + "number": 1602, + "ips": [ + "23.230.46.108" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1603.nordvpn.com", + "number": 1603, + "ips": [ + "23.230.46.110" + ], + "tcp": true, + "udp": true + }, + { + "region": "Canada", + "hostname": "ca1604.nordvpn.com", + "number": 1604, + "ips": [ + "23.230.46.112" + ], "tcp": true, "udp": true }, @@ -43823,7 +43530,9 @@ "region": "Chile", "hostname": "cl19.nordvpn.com", "number": 19, - "ip": "45.228.209.43", + "ips": [ + "45.228.209.43" + ], "tcp": true, "udp": true }, @@ -43831,15 +43540,9 @@ "region": "Chile", "hostname": "cl20.nordvpn.com", "number": 20, - "ip": "45.228.209.51", - "tcp": true, - "udp": true - }, - { - "region": "Chile", - "hostname": "cl23.nordvpn.com", - "number": 23, - "ip": "45.228.209.115", + "ips": [ + "45.228.209.51" + ], "tcp": true, "udp": true }, @@ -43847,7 +43550,9 @@ "region": "Chile", "hostname": "cl24.nordvpn.com", "number": 24, - "ip": "45.228.209.124", + "ips": [ + "45.228.209.124" + ], "tcp": true, "udp": true }, @@ -43855,7 +43560,9 @@ "region": "Chile", "hostname": "cl25.nordvpn.com", "number": 25, - "ip": "45.228.209.146", + "ips": [ + "45.228.209.146" + ], "tcp": true, "udp": true }, @@ -43863,7 +43570,9 @@ "region": "Chile", "hostname": "cl26.nordvpn.com", "number": 26, - "ip": "45.228.209.118", + "ips": [ + "45.228.209.118" + ], "tcp": true, "udp": true }, @@ -43871,7 +43580,9 @@ "region": "Chile", "hostname": "cl27.nordvpn.com", "number": 27, - "ip": "45.228.209.121", + "ips": [ + "45.228.209.121" + ], "tcp": true, "udp": true }, @@ -43879,7 +43590,9 @@ "region": "Chile", "hostname": "cl28.nordvpn.com", "number": 28, - "ip": "66.203.113.173", + "ips": [ + "66.203.113.173" + ], "tcp": true, "udp": true }, @@ -43887,7 +43600,9 @@ "region": "Chile", "hostname": "cl29.nordvpn.com", "number": 29, - "ip": "66.203.113.252", + "ips": [ + "66.203.113.252" + ], "tcp": true, "udp": true }, @@ -43895,7 +43610,9 @@ "region": "Chile", "hostname": "cl30.nordvpn.com", "number": 30, - "ip": "66.203.113.247", + "ips": [ + "66.203.113.247" + ], "tcp": true, "udp": true }, @@ -43903,7 +43620,9 @@ "region": "Chile", "hostname": "cl31.nordvpn.com", "number": 31, - "ip": "66.203.113.245", + "ips": [ + "66.203.113.245" + ], "tcp": true, "udp": true }, @@ -43911,7 +43630,9 @@ "region": "Chile", "hostname": "cl32.nordvpn.com", "number": 32, - "ip": "66.203.113.243", + "ips": [ + "66.203.113.243" + ], "tcp": true, "udp": true }, @@ -43919,7 +43640,9 @@ "region": "Costa Rica", "hostname": "cr36.nordvpn.com", "number": 36, - "ip": "179.48.249.195", + "ips": [ + "179.48.249.195" + ], "tcp": true, "udp": true }, @@ -43927,7 +43650,9 @@ "region": "Costa Rica", "hostname": "cr37.nordvpn.com", "number": 37, - "ip": "179.48.249.203", + "ips": [ + "179.48.249.203" + ], "tcp": true, "udp": true }, @@ -43935,7 +43660,9 @@ "region": "Costa Rica", "hostname": "cr38.nordvpn.com", "number": 38, - "ip": "179.48.249.211", + "ips": [ + "179.48.249.211" + ], "tcp": true, "udp": true }, @@ -43943,7 +43670,9 @@ "region": "Costa Rica", "hostname": "cr39.nordvpn.com", "number": 39, - "ip": "179.48.249.219", + "ips": [ + "179.48.249.219" + ], "tcp": true, "udp": true }, @@ -43951,7 +43680,9 @@ "region": "Costa Rica", "hostname": "cr40.nordvpn.com", "number": 40, - "ip": "179.48.249.227", + "ips": [ + "179.48.249.227" + ], "tcp": true, "udp": true }, @@ -43959,55 +43690,69 @@ "region": "Costa Rica", "hostname": "cr41.nordvpn.com", "number": 41, - "ip": "179.48.249.235", + "ips": [ + "179.48.249.235" + ], "tcp": true, "udp": true }, { "region": "Costa Rica", - "hostname": "cr42.nordvpn.com", - "number": 42, - "ip": "185.184.143.35", + "hostname": "cr48.nordvpn.com", + "number": 48, + "ips": [ + "179.48.248.3" + ], "tcp": true, "udp": true }, { "region": "Costa Rica", - "hostname": "cr43.nordvpn.com", - "number": 43, - "ip": "185.184.143.43", + "hostname": "cr49.nordvpn.com", + "number": 49, + "ips": [ + "179.48.248.11" + ], "tcp": true, "udp": true }, { "region": "Costa Rica", - "hostname": "cr44.nordvpn.com", - "number": 44, - "ip": "185.184.143.51", + "hostname": "cr50.nordvpn.com", + "number": 50, + "ips": [ + "179.48.248.19" + ], "tcp": true, "udp": true }, { "region": "Costa Rica", - "hostname": "cr45.nordvpn.com", - "number": 45, - "ip": "185.184.143.59", + "hostname": "cr51.nordvpn.com", + "number": 51, + "ips": [ + "179.48.248.27" + ], "tcp": true, "udp": true }, { "region": "Costa Rica", - "hostname": "cr46.nordvpn.com", - "number": 46, - "ip": "185.184.143.99", + "hostname": "cr52.nordvpn.com", + "number": 52, + "ips": [ + "179.48.248.35" + ], "tcp": true, "udp": true }, { "region": "Costa Rica", - "hostname": "cr47.nordvpn.com", - "number": 47, - "ip": "185.184.143.107", + "hostname": "cr53.nordvpn.com", + "number": 53, + "ips": [ + "179.48.248.43" + ], "tcp": true, "udp": true }, @@ -44015,7 +43760,9 @@ "region": "Croatia", "hostname": "hr25.nordvpn.com", "number": 25, - "ip": "85.10.51.63", + "ips": [ + "85.10.51.63" + ], "tcp": true, "udp": true }, @@ -44023,7 +43770,9 @@ "region": "Croatia", "hostname": "hr26.nordvpn.com", "number": 26, - "ip": "85.10.51.9", + "ips": [ + "85.10.51.9" + ], "tcp": true, "udp": true }, @@ -44031,7 +43780,9 @@ "region": "Croatia", "hostname": "hr27.nordvpn.com", "number": 27, - "ip": "85.10.56.196", + "ips": [ + "85.10.56.196" + ], "tcp": true, "udp": true }, @@ -44039,7 +43790,9 @@ "region": "Croatia", "hostname": "hr28.nordvpn.com", "number": 28, - "ip": "85.10.51.85", + "ips": [ + "85.10.51.85" + ], "tcp": true, "udp": true }, @@ -44047,7 +43800,9 @@ "region": "Croatia", "hostname": "hr29.nordvpn.com", "number": 29, - "ip": "85.10.50.175", + "ips": [ + "85.10.50.175" + ], "tcp": true, "udp": true }, @@ -44055,7 +43810,9 @@ "region": "Croatia", "hostname": "hr30.nordvpn.com", "number": 30, - "ip": "176.222.34.110", + "ips": [ + "176.222.34.110" + ], "tcp": true, "udp": true }, @@ -44063,7 +43820,9 @@ "region": "Croatia", "hostname": "hr31.nordvpn.com", "number": 31, - "ip": "89.164.99.106", + "ips": [ + "89.164.99.106" + ], "tcp": true, "udp": true }, @@ -44071,7 +43830,9 @@ "region": "Croatia", "hostname": "hr32.nordvpn.com", "number": 32, - "ip": "85.10.56.103", + "ips": [ + "85.10.56.103" + ], "tcp": true, "udp": true }, @@ -44079,7 +43840,9 @@ "region": "Cyprus", "hostname": "cy12.nordvpn.com", "number": 12, - "ip": "185.106.102.201", + "ips": [ + "185.106.102.201" + ], "tcp": true, "udp": true }, @@ -44087,7 +43850,9 @@ "region": "Cyprus", "hostname": "cy13.nordvpn.com", "number": 13, - "ip": "185.106.102.244", + "ips": [ + "185.106.102.244" + ], "tcp": true, "udp": true }, @@ -44095,7 +43860,9 @@ "region": "Cyprus", "hostname": "cy14.nordvpn.com", "number": 14, - "ip": "185.106.102.200", + "ips": [ + "185.106.102.200" + ], "tcp": true, "udp": true }, @@ -44103,7 +43870,9 @@ "region": "Cyprus", "hostname": "cy15.nordvpn.com", "number": 15, - "ip": "185.106.102.216", + "ips": [ + "185.106.102.216" + ], "tcp": true, "udp": true }, @@ -44111,7 +43880,9 @@ "region": "Cyprus", "hostname": "cy16.nordvpn.com", "number": 16, - "ip": "185.191.206.3", + "ips": [ + "185.191.206.3" + ], "tcp": true, "udp": true }, @@ -44119,15 +43890,9 @@ "region": "Cyprus", "hostname": "cy17.nordvpn.com", "number": 17, - "ip": "185.191.206.8", - "tcp": true, - "udp": true - }, - { - "region": "Cyprus", - "hostname": "cy18.nordvpn.com", - "number": 18, - "ip": "195.47.194.45", + "ips": [ + "185.191.206.8" + ], "tcp": true, "udp": true }, @@ -44135,7 +43900,9 @@ "region": "Cyprus", "hostname": "cy19.nordvpn.com", "number": 19, - "ip": "185.191.206.13", + "ips": [ + "185.191.206.13" + ], "tcp": true, "udp": true }, @@ -44143,7 +43910,9 @@ "region": "Cyprus", "hostname": "cy20.nordvpn.com", "number": 20, - "ip": "185.191.206.23", + "ips": [ + "185.191.206.23" + ], "tcp": true, "udp": true }, @@ -44151,7 +43920,9 @@ "region": "Cyprus", "hostname": "cy21.nordvpn.com", "number": 21, - "ip": "185.191.206.28", + "ips": [ + "185.191.206.28" + ], "tcp": true, "udp": true }, @@ -44159,7 +43930,9 @@ "region": "Cyprus", "hostname": "cy22.nordvpn.com", "number": 22, - "ip": "185.191.206.18", + "ips": [ + "185.191.206.18" + ], "tcp": true, "udp": true }, @@ -44167,7 +43940,9 @@ "region": "Cyprus", "hostname": "cy23.nordvpn.com", "number": 23, - "ip": "185.191.206.131", + "ips": [ + "185.191.206.131" + ], "tcp": true, "udp": true }, @@ -44175,7 +43950,9 @@ "region": "Cyprus", "hostname": "cy24.nordvpn.com", "number": 24, - "ip": "185.191.206.136", + "ips": [ + "185.191.206.136" + ], "tcp": true, "udp": true }, @@ -44183,7 +43960,9 @@ "region": "Cyprus", "hostname": "cy25.nordvpn.com", "number": 25, - "ip": "185.191.206.141", + "ips": [ + "185.191.206.141" + ], "tcp": true, "udp": true }, @@ -44191,7 +43970,39 @@ "region": "Cyprus", "hostname": "cy26.nordvpn.com", "number": 26, - "ip": "185.191.206.151", + "ips": [ + "185.191.206.151" + ], + "tcp": true, + "udp": true + }, + { + "region": "Cyprus", + "hostname": "cy27.nordvpn.com", + "number": 27, + "ips": [ + "185.191.206.156" + ], + "tcp": true, + "udp": true + }, + { + "region": "Cyprus", + "hostname": "cy28.nordvpn.com", + "number": 28, + "ips": [ + "185.191.206.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "Cyprus", + "hostname": "cy29.nordvpn.com", + "number": 29, + "ips": [ + "185.191.206.176" + ], "tcp": true, "udp": true }, @@ -44199,7 +44010,9 @@ "region": "Czech Republic", "hostname": "cz93.nordvpn.com", "number": 93, - "ip": "217.138.199.27", + "ips": [ + "217.138.199.27" + ], "tcp": true, "udp": true }, @@ -44207,23 +44020,9 @@ "region": "Czech Republic", "hostname": "cz94.nordvpn.com", "number": 94, - "ip": "89.238.186.244", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz95.nordvpn.com", - "number": 95, - "ip": "89.187.189.186", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz96.nordvpn.com", - "number": 96, - "ip": "185.180.15.210", + "ips": [ + "89.238.186.244" + ], "tcp": true, "udp": true }, @@ -44231,7 +44030,9 @@ "region": "Czech Republic", "hostname": "cz97.nordvpn.com", "number": 97, - "ip": "212.102.38.149", + "ips": [ + "212.102.38.149" + ], "tcp": true, "udp": true }, @@ -44239,23 +44040,9 @@ "region": "Czech Republic", "hostname": "cz98.nordvpn.com", "number": 98, - "ip": "212.102.38.146", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz99.nordvpn.com", - "number": 99, - "ip": "89.187.189.214", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz100.nordvpn.com", - "number": 100, - "ip": "89.187.189.205", + "ips": [ + "212.102.38.146" + ], "tcp": true, "udp": true }, @@ -44263,7 +44050,9 @@ "region": "Czech Republic", "hostname": "cz101.nordvpn.com", "number": 101, - "ip": "89.238.186.251", + "ips": [ + "89.238.186.251" + ], "tcp": true, "udp": true }, @@ -44271,7 +44060,9 @@ "region": "Czech Republic", "hostname": "cz102.nordvpn.com", "number": 102, - "ip": "185.156.174.3", + "ips": [ + "185.156.174.3" + ], "tcp": true, "udp": true }, @@ -44279,39 +44070,9 @@ "region": "Czech Republic", "hostname": "cz103.nordvpn.com", "number": 103, - "ip": "185.156.174.91", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz104.nordvpn.com", - "number": 104, - "ip": "185.180.15.217", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz105.nordvpn.com", - "number": 105, - "ip": "89.187.189.183", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz106.nordvpn.com", - "number": 106, - "ip": "89.187.189.239", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz107.nordvpn.com", - "number": 107, - "ip": "89.187.189.231", + "ips": [ + "185.156.174.91" + ], "tcp": true, "udp": true }, @@ -44319,7 +44080,9 @@ "region": "Czech Republic", "hostname": "cz108.nordvpn.com", "number": 108, - "ip": "89.238.186.235", + "ips": [ + "89.238.186.235" + ], "tcp": true, "udp": true }, @@ -44327,7 +44090,9 @@ "region": "Czech Republic", "hostname": "cz109.nordvpn.com", "number": 109, - "ip": "185.216.35.251", + "ips": [ + "185.216.35.251" + ], "tcp": true, "udp": true }, @@ -44335,15 +44100,9 @@ "region": "Czech Republic", "hostname": "cz110.nordvpn.com", "number": 110, - "ip": "185.216.35.115", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz111.nordvpn.com", - "number": 111, - "ip": "185.246.210.76", + "ips": [ + "185.216.35.115" + ], "tcp": true, "udp": true }, @@ -44351,15 +44110,9 @@ "region": "Czech Republic", "hostname": "cz112.nordvpn.com", "number": 112, - "ip": "185.216.35.120", - "tcp": true, - "udp": true - }, - { - "region": "Czech Republic", - "hostname": "cz113.nordvpn.com", - "number": 113, - "ip": "89.187.189.195", + "ips": [ + "185.216.35.120" + ], "tcp": true, "udp": true }, @@ -44367,7 +44120,9 @@ "region": "Czech Republic", "hostname": "cz114.nordvpn.com", "number": 114, - "ip": "193.9.112.91", + "ips": [ + "193.9.112.91" + ], "tcp": true, "udp": true }, @@ -44375,7 +44130,9 @@ "region": "Czech Republic", "hostname": "cz115.nordvpn.com", "number": 115, - "ip": "193.9.112.75", + "ips": [ + "193.9.112.75" + ], "tcp": true, "udp": true }, @@ -44383,7 +44140,9 @@ "region": "Czech Republic", "hostname": "cz116.nordvpn.com", "number": 116, - "ip": "193.9.112.83", + "ips": [ + "193.9.112.83" + ], "tcp": true, "udp": true }, @@ -44391,7 +44150,9 @@ "region": "Czech Republic", "hostname": "cz117.nordvpn.com", "number": 117, - "ip": "217.138.199.19", + "ips": [ + "217.138.199.19" + ], "tcp": true, "udp": true }, @@ -44399,7 +44160,9 @@ "region": "Czech Republic", "hostname": "cz118.nordvpn.com", "number": 118, - "ip": "217.138.199.11", + "ips": [ + "217.138.199.11" + ], "tcp": true, "udp": true }, @@ -44407,7 +44170,9 @@ "region": "Czech Republic", "hostname": "cz119.nordvpn.com", "number": 119, - "ip": "217.138.199.3", + "ips": [ + "217.138.199.3" + ], "tcp": true, "udp": true }, @@ -44415,7 +44180,9 @@ "region": "Czech Republic", "hostname": "cz120.nordvpn.com", "number": 120, - "ip": "193.9.112.251", + "ips": [ + "193.9.112.251" + ], "tcp": true, "udp": true }, @@ -44423,7 +44190,9 @@ "region": "Czech Republic", "hostname": "cz121.nordvpn.com", "number": 121, - "ip": "193.9.112.243", + "ips": [ + "193.9.112.243" + ], "tcp": true, "udp": true }, @@ -44431,7 +44200,9 @@ "region": "Czech Republic", "hostname": "cz122.nordvpn.com", "number": 122, - "ip": "193.9.112.235", + "ips": [ + "193.9.112.235" + ], "tcp": true, "udp": true }, @@ -44439,7 +44210,9 @@ "region": "Czech Republic", "hostname": "cz123.nordvpn.com", "number": 123, - "ip": "217.138.199.51", + "ips": [ + "217.138.199.51" + ], "tcp": true, "udp": true }, @@ -44447,7 +44220,9 @@ "region": "Czech Republic", "hostname": "cz124.nordvpn.com", "number": 124, - "ip": "217.138.199.43", + "ips": [ + "217.138.199.43" + ], "tcp": true, "udp": true }, @@ -44455,7 +44230,309 @@ "region": "Czech Republic", "hostname": "cz125.nordvpn.com", "number": 125, - "ip": "217.138.199.35", + "ips": [ + "217.138.199.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz126.nordvpn.com", + "number": 126, + "ips": [ + "138.199.56.8" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz127.nordvpn.com", + "number": 127, + "ips": [ + "138.199.56.14" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz128.nordvpn.com", + "number": 128, + "ips": [ + "138.199.56.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz129.nordvpn.com", + "number": 129, + "ips": [ + "138.199.56.32" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz130.nordvpn.com", + "number": 130, + "ips": [ + "138.199.56.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz131.nordvpn.com", + "number": 131, + "ips": [ + "138.199.56.44" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz132.nordvpn.com", + "number": 132, + "ips": [ + "138.199.56.50" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz133.nordvpn.com", + "number": 133, + "ips": [ + "138.199.56.56" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz134.nordvpn.com", + "number": 134, + "ips": [ + "138.199.56.62" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz135.nordvpn.com", + "number": 135, + "ips": [ + "138.199.56.68" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz136.nordvpn.com", + "number": 136, + "ips": [ + "138.199.56.74" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz137.nordvpn.com", + "number": 137, + "ips": [ + "138.199.56.80" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz138.nordvpn.com", + "number": 138, + "ips": [ + "138.199.56.86" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz139.nordvpn.com", + "number": 139, + "ips": [ + "138.199.56.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz140.nordvpn.com", + "number": 140, + "ips": [ + "138.199.56.20" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz141.nordvpn.com", + "number": 141, + "ips": [ + "138.199.56.92" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz142.nordvpn.com", + "number": 142, + "ips": [ + "138.199.56.104" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz143.nordvpn.com", + "number": 143, + "ips": [ + "87.249.135.14" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz144.nordvpn.com", + "number": 144, + "ips": [ + "87.249.135.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz145.nordvpn.com", + "number": 145, + "ips": [ + "87.249.135.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz146.nordvpn.com", + "number": 146, + "ips": [ + "87.249.135.77" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz147.nordvpn.com", + "number": 147, + "ips": [ + "87.249.135.247" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz148.nordvpn.com", + "number": 148, + "ips": [ + "87.249.135.89" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz149.nordvpn.com", + "number": 149, + "ips": [ + "87.249.135.223" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz150.nordvpn.com", + "number": 150, + "ips": [ + "178.249.209.20" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz151.nordvpn.com", + "number": 151, + "ips": [ + "178.249.209.8" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz152.nordvpn.com", + "number": 152, + "ips": [ + "178.249.209.32" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz153.nordvpn.com", + "number": 153, + "ips": [ + "87.249.135.211" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz154.nordvpn.com", + "number": 154, + "ips": [ + "87.249.135.65" + ], + "tcp": true, + "udp": true + }, + { + "region": "Czech Republic", + "hostname": "cz155.nordvpn.com", + "number": 155, + "ips": [ + "87.249.135.235" + ], "tcp": true, "udp": true }, @@ -44463,7 +44540,9 @@ "region": "Denmark", "hostname": "dk150.nordvpn.com", "number": 150, - "ip": "37.120.194.3", + "ips": [ + "37.120.194.3" + ], "tcp": true, "udp": true }, @@ -44471,7 +44550,9 @@ "region": "Denmark", "hostname": "dk151.nordvpn.com", "number": 151, - "ip": "82.102.20.236", + "ips": [ + "82.102.20.236" + ], "tcp": true, "udp": true }, @@ -44479,7 +44560,9 @@ "region": "Denmark", "hostname": "dk152.nordvpn.com", "number": 152, - "ip": "82.102.20.212", + "ips": [ + "82.102.20.212" + ], "tcp": true, "udp": true }, @@ -44487,7 +44570,9 @@ "region": "Denmark", "hostname": "dk153.nordvpn.com", "number": 153, - "ip": "82.102.20.220", + "ips": [ + "82.102.20.220" + ], "tcp": true, "udp": true }, @@ -44495,7 +44580,9 @@ "region": "Denmark", "hostname": "dk164.nordvpn.com", "number": 164, - "ip": "37.120.194.179", + "ips": [ + "37.120.194.179" + ], "tcp": true, "udp": true }, @@ -44503,7 +44590,9 @@ "region": "Denmark", "hostname": "dk165.nordvpn.com", "number": 165, - "ip": "37.120.194.187", + "ips": [ + "37.120.194.187" + ], "tcp": true, "udp": true }, @@ -44511,7 +44600,9 @@ "region": "Denmark", "hostname": "dk166.nordvpn.com", "number": 166, - "ip": "37.120.194.195", + "ips": [ + "37.120.194.195" + ], "tcp": true, "udp": true }, @@ -44519,39 +44610,9 @@ "region": "Denmark", "hostname": "dk167.nordvpn.com", "number": 167, - "ip": "37.120.194.203", - "tcp": true, - "udp": true - }, - { - "region": "Denmark", - "hostname": "dk168.nordvpn.com", - "number": 168, - "ip": "37.120.194.211", - "tcp": true, - "udp": true - }, - { - "region": "Denmark", - "hostname": "dk169.nordvpn.com", - "number": 169, - "ip": "37.120.194.214", - "tcp": true, - "udp": true - }, - { - "region": "Denmark", - "hostname": "dk170.nordvpn.com", - "number": 170, - "ip": "37.120.194.217", - "tcp": true, - "udp": true - }, - { - "region": "Denmark", - "hostname": "dk171.nordvpn.com", - "number": 171, - "ip": "37.120.194.220", + "ips": [ + "37.120.194.203" + ], "tcp": true, "udp": true }, @@ -44559,7 +44620,9 @@ "region": "Denmark", "hostname": "dk172.nordvpn.com", "number": 172, - "ip": "37.120.194.227", + "ips": [ + "37.120.194.227" + ], "tcp": true, "udp": true }, @@ -44567,7 +44630,9 @@ "region": "Denmark", "hostname": "dk173.nordvpn.com", "number": 173, - "ip": "37.120.194.235", + "ips": [ + "37.120.194.235" + ], "tcp": true, "udp": true }, @@ -44575,7 +44640,9 @@ "region": "Denmark", "hostname": "dk174.nordvpn.com", "number": 174, - "ip": "82.102.20.243", + "ips": [ + "82.102.20.243" + ], "tcp": true, "udp": true }, @@ -44583,7 +44650,9 @@ "region": "Denmark", "hostname": "dk176.nordvpn.com", "number": 176, - "ip": "185.212.169.123", + "ips": [ + "185.212.169.123" + ], "tcp": true, "udp": true }, @@ -44591,7 +44660,9 @@ "region": "Denmark", "hostname": "dk177.nordvpn.com", "number": 177, - "ip": "185.212.169.115", + "ips": [ + "185.212.169.115" + ], "tcp": true, "udp": true }, @@ -44599,7 +44670,9 @@ "region": "Denmark", "hostname": "dk178.nordvpn.com", "number": 178, - "ip": "185.236.203.11", + "ips": [ + "185.236.203.11" + ], "tcp": true, "udp": true }, @@ -44607,7 +44680,9 @@ "region": "Denmark", "hostname": "dk179.nordvpn.com", "number": 179, - "ip": "185.236.203.75", + "ips": [ + "185.236.203.75" + ], "tcp": true, "udp": true }, @@ -44615,7 +44690,9 @@ "region": "Denmark", "hostname": "dk180.nordvpn.com", "number": 180, - "ip": "185.236.203.91", + "ips": [ + "185.236.203.91" + ], "tcp": true, "udp": true }, @@ -44623,7 +44700,9 @@ "region": "Denmark", "hostname": "dk181.nordvpn.com", "number": 181, - "ip": "185.245.84.99", + "ips": [ + "185.245.84.99" + ], "tcp": true, "udp": true }, @@ -44631,7 +44710,9 @@ "region": "Denmark", "hostname": "dk182.nordvpn.com", "number": 182, - "ip": "82.102.20.35", + "ips": [ + "82.102.20.35" + ], "tcp": true, "udp": true }, @@ -44639,7 +44720,9 @@ "region": "Denmark", "hostname": "dk183.nordvpn.com", "number": 183, - "ip": "82.102.20.43", + "ips": [ + "82.102.20.43" + ], "tcp": true, "udp": true }, @@ -44647,7 +44730,9 @@ "region": "Denmark", "hostname": "dk194.nordvpn.com", "number": 194, - "ip": "2.58.46.235", + "ips": [ + "2.58.46.235" + ], "tcp": true, "udp": true }, @@ -44655,7 +44740,9 @@ "region": "Denmark", "hostname": "dk195.nordvpn.com", "number": 195, - "ip": "2.58.46.227", + "ips": [ + "2.58.46.227" + ], "tcp": true, "udp": true }, @@ -44663,7 +44750,9 @@ "region": "Denmark", "hostname": "dk196.nordvpn.com", "number": 196, - "ip": "185.245.84.243", + "ips": [ + "185.245.84.243" + ], "tcp": true, "udp": true }, @@ -44671,7 +44760,9 @@ "region": "Denmark", "hostname": "dk197.nordvpn.com", "number": 197, - "ip": "185.212.169.99", + "ips": [ + "185.212.169.99" + ], "tcp": true, "udp": true }, @@ -44679,7 +44770,9 @@ "region": "Denmark", "hostname": "dk198.nordvpn.com", "number": 198, - "ip": "185.212.169.91", + "ips": [ + "185.212.169.91" + ], "tcp": true, "udp": true }, @@ -44687,7 +44780,9 @@ "region": "Denmark", "hostname": "dk199.nordvpn.com", "number": 199, - "ip": "37.120.131.131", + "ips": [ + "37.120.131.131" + ], "tcp": true, "udp": true }, @@ -44695,7 +44790,9 @@ "region": "Denmark", "hostname": "dk200.nordvpn.com", "number": 200, - "ip": "37.120.131.136", + "ips": [ + "37.120.131.136" + ], "tcp": true, "udp": true }, @@ -44703,7 +44800,9 @@ "region": "Denmark", "hostname": "dk201.nordvpn.com", "number": 201, - "ip": "37.120.131.141", + "ips": [ + "37.120.131.141" + ], "tcp": true, "udp": true }, @@ -44711,7 +44810,9 @@ "region": "Denmark", "hostname": "dk202.nordvpn.com", "number": 202, - "ip": "37.120.131.149", + "ips": [ + "37.120.131.149" + ], "tcp": true, "udp": true }, @@ -44719,7 +44820,9 @@ "region": "Denmark", "hostname": "dk203.nordvpn.com", "number": 203, - "ip": "37.120.131.154", + "ips": [ + "37.120.131.154" + ], "tcp": true, "udp": true }, @@ -44727,7 +44830,9 @@ "region": "Denmark", "hostname": "dk204.nordvpn.com", "number": 204, - "ip": "37.120.131.67", + "ips": [ + "37.120.131.67" + ], "tcp": true, "udp": true }, @@ -44735,7 +44840,9 @@ "region": "Denmark", "hostname": "dk205.nordvpn.com", "number": 205, - "ip": "37.120.131.75", + "ips": [ + "37.120.131.75" + ], "tcp": true, "udp": true }, @@ -44743,7 +44850,9 @@ "region": "Denmark", "hostname": "dk206.nordvpn.com", "number": 206, - "ip": "37.120.131.187", + "ips": [ + "37.120.131.187" + ], "tcp": true, "udp": true }, @@ -44751,7 +44860,9 @@ "region": "Denmark", "hostname": "dk207.nordvpn.com", "number": 207, - "ip": "37.120.131.195", + "ips": [ + "37.120.131.195" + ], "tcp": true, "udp": true }, @@ -44759,7 +44870,9 @@ "region": "Denmark", "hostname": "dk208.nordvpn.com", "number": 208, - "ip": "37.120.131.203", + "ips": [ + "37.120.131.203" + ], "tcp": true, "udp": true }, @@ -44767,7 +44880,9 @@ "region": "Denmark", "hostname": "dk209.nordvpn.com", "number": 209, - "ip": "37.120.131.227", + "ips": [ + "37.120.131.227" + ], "tcp": true, "udp": true }, @@ -44775,7 +44890,9 @@ "region": "Denmark", "hostname": "dk210.nordvpn.com", "number": 210, - "ip": "37.120.131.235", + "ips": [ + "37.120.131.235" + ], "tcp": true, "udp": true }, @@ -44783,7 +44900,9 @@ "region": "Denmark", "hostname": "dk211.nordvpn.com", "number": 211, - "ip": "37.120.131.243", + "ips": [ + "37.120.131.243" + ], "tcp": true, "udp": true }, @@ -44791,7 +44910,9 @@ "region": "Denmark", "hostname": "dk212.nordvpn.com", "number": 212, - "ip": "37.120.131.251", + "ips": [ + "37.120.131.251" + ], "tcp": true, "udp": true }, @@ -44799,7 +44920,9 @@ "region": "Denmark", "hostname": "dk213.nordvpn.com", "number": 213, - "ip": "37.120.131.219", + "ips": [ + "37.120.131.219" + ], "tcp": true, "udp": true }, @@ -44807,7 +44930,9 @@ "region": "Denmark", "hostname": "dk214.nordvpn.com", "number": 214, - "ip": "2.58.46.19", + "ips": [ + "2.58.46.19" + ], "tcp": true, "udp": true }, @@ -44815,7 +44940,9 @@ "region": "Denmark", "hostname": "dk215.nordvpn.com", "number": 215, - "ip": "2.58.46.27", + "ips": [ + "2.58.46.27" + ], "tcp": true, "udp": true }, @@ -44823,7 +44950,9 @@ "region": "Denmark", "hostname": "dk216.nordvpn.com", "number": 216, - "ip": "45.12.221.219", + "ips": [ + "45.12.221.219" + ], "tcp": true, "udp": true }, @@ -44831,7 +44960,9 @@ "region": "Denmark", "hostname": "dk217.nordvpn.com", "number": 217, - "ip": "45.12.221.211", + "ips": [ + "45.12.221.211" + ], "tcp": true, "udp": true }, @@ -44839,7 +44970,9 @@ "region": "Denmark", "hostname": "dk218.nordvpn.com", "number": 218, - "ip": "185.245.84.83", + "ips": [ + "185.245.84.83" + ], "tcp": true, "udp": true }, @@ -44847,7 +44980,9 @@ "region": "Denmark", "hostname": "dk219.nordvpn.com", "number": 219, - "ip": "185.245.84.163", + "ips": [ + "185.245.84.163" + ], "tcp": true, "udp": true }, @@ -44855,7 +44990,9 @@ "region": "Denmark", "hostname": "dk220.nordvpn.com", "number": 220, - "ip": "185.245.84.171", + "ips": [ + "185.245.84.171" + ], "tcp": true, "udp": true }, @@ -44863,7 +45000,9 @@ "region": "Denmark", "hostname": "dk221.nordvpn.com", "number": 221, - "ip": "185.245.84.179", + "ips": [ + "185.245.84.179" + ], "tcp": true, "udp": true }, @@ -44871,95 +45010,149 @@ "region": "Denmark", "hostname": "dk222.nordvpn.com", "number": 222, - "ip": "185.245.84.187", + "ips": [ + "185.245.84.187" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk223.nordvpn.com", - "number": 223, - "ip": "37.120.194.131", + "hostname": "dk233.nordvpn.com", + "number": 233, + "ips": [ + "37.120.194.43" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk224.nordvpn.com", - "number": 224, - "ip": "37.120.194.134", + "hostname": "dk234.nordvpn.com", + "number": 234, + "ips": [ + "37.120.194.51" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk225.nordvpn.com", - "number": 225, - "ip": "37.120.194.137", + "hostname": "dk235.nordvpn.com", + "number": 235, + "ips": [ + "37.120.194.59" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk226.nordvpn.com", - "number": 226, - "ip": "37.120.194.140", + "hostname": "dk236.nordvpn.com", + "number": 236, + "ips": [ + "37.120.194.67" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk227.nordvpn.com", - "number": 227, - "ip": "37.120.194.143", + "hostname": "dk237.nordvpn.com", + "number": 237, + "ips": [ + "146.70.80.187" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk228.nordvpn.com", - "number": 228, - "ip": "37.120.194.146", + "hostname": "dk238.nordvpn.com", + "number": 238, + "ips": [ + "37.120.194.75" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk229.nordvpn.com", - "number": 229, - "ip": "37.120.194.149", + "hostname": "dk239.nordvpn.com", + "number": 239, + "ips": [ + "146.70.80.195" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk230.nordvpn.com", - "number": 230, - "ip": "37.120.194.152", + "hostname": "dk240.nordvpn.com", + "number": 240, + "ips": [ + "95.174.65.163" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk231.nordvpn.com", - "number": 231, - "ip": "37.120.194.155", + "hostname": "dk241.nordvpn.com", + "number": 241, + "ips": [ + "95.174.65.171" + ], "tcp": true, "udp": true }, { "region": "Denmark", - "hostname": "dk232.nordvpn.com", - "number": 232, - "ip": "37.120.194.157", + "hostname": "dk242.nordvpn.com", + "number": 242, + "ips": [ + "37.120.145.83" + ], "tcp": true, "udp": true }, { - "region": "Estonia", - "hostname": "ee45.nordvpn.com", - "number": 45, - "ip": "95.153.32.131", + "region": "Denmark", + "hostname": "dk243.nordvpn.com", + "number": 243, + "ips": [ + "37.120.145.91" + ], + "tcp": true, + "udp": true + }, + { + "region": "Denmark", + "hostname": "dk244.nordvpn.com", + "number": 244, + "ips": [ + "146.70.80.163" + ], + "tcp": true, + "udp": true + }, + { + "region": "Denmark", + "hostname": "dk245.nordvpn.com", + "number": 245, + "ips": [ + "146.70.80.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "Denmark", + "hostname": "dk246.nordvpn.com", + "number": 246, + "ips": [ + "146.70.80.179" + ], "tcp": true, "udp": true }, @@ -44967,7 +45160,9 @@ "region": "Estonia", "hostname": "ee51.nordvpn.com", "number": 51, - "ip": "165.231.177.51", + "ips": [ + "165.231.177.51" + ], "tcp": true, "udp": true }, @@ -44975,7 +45170,9 @@ "region": "Estonia", "hostname": "ee52.nordvpn.com", "number": 52, - "ip": "165.231.177.35", + "ips": [ + "165.231.177.35" + ], "tcp": true, "udp": true }, @@ -44983,7 +45180,9 @@ "region": "Estonia", "hostname": "ee53.nordvpn.com", "number": 53, - "ip": "165.231.177.43", + "ips": [ + "165.231.177.43" + ], "tcp": true, "udp": true }, @@ -44991,7 +45190,9 @@ "region": "Estonia", "hostname": "ee54.nordvpn.com", "number": 54, - "ip": "165.231.177.123", + "ips": [ + "165.231.177.123" + ], "tcp": true, "udp": true }, @@ -44999,7 +45200,9 @@ "region": "Estonia", "hostname": "ee55.nordvpn.com", "number": 55, - "ip": "165.231.177.3", + "ips": [ + "165.231.177.3" + ], "tcp": true, "udp": true }, @@ -45007,7 +45210,9 @@ "region": "Estonia", "hostname": "ee56.nordvpn.com", "number": 56, - "ip": "165.231.177.131", + "ips": [ + "165.231.177.131" + ], "tcp": true, "udp": true }, @@ -45015,7 +45220,9 @@ "region": "Estonia", "hostname": "ee57.nordvpn.com", "number": 57, - "ip": "165.231.177.11", + "ips": [ + "165.231.177.11" + ], "tcp": true, "udp": true }, @@ -45023,7 +45230,9 @@ "region": "Estonia", "hostname": "ee58.nordvpn.com", "number": 58, - "ip": "165.231.177.139", + "ips": [ + "165.231.177.139" + ], "tcp": true, "udp": true }, @@ -45031,7 +45240,9 @@ "region": "Estonia", "hostname": "ee59.nordvpn.com", "number": 59, - "ip": "165.231.177.147", + "ips": [ + "165.231.177.147" + ], "tcp": true, "udp": true }, @@ -45039,7 +45250,9 @@ "region": "Estonia", "hostname": "ee60.nordvpn.com", "number": 60, - "ip": "165.231.177.75", + "ips": [ + "165.231.177.75" + ], "tcp": true, "udp": true }, @@ -45047,7 +45260,9 @@ "region": "Estonia", "hostname": "ee61.nordvpn.com", "number": 61, - "ip": "165.231.177.91", + "ips": [ + "165.231.177.91" + ], "tcp": true, "udp": true }, @@ -45055,7 +45270,9 @@ "region": "Estonia", "hostname": "ee62.nordvpn.com", "number": 62, - "ip": "165.231.177.107", + "ips": [ + "165.231.177.107" + ], "tcp": true, "udp": true }, @@ -45063,7 +45280,9 @@ "region": "Estonia", "hostname": "ee63.nordvpn.com", "number": 63, - "ip": "165.231.177.59", + "ips": [ + "165.231.177.59" + ], "tcp": true, "udp": true }, @@ -45071,7 +45290,9 @@ "region": "Finland", "hostname": "fi139.nordvpn.com", "number": 139, - "ip": "194.110.84.100", + "ips": [ + "194.110.84.100" + ], "tcp": true, "udp": true }, @@ -45079,7 +45300,9 @@ "region": "Finland", "hostname": "fi140.nordvpn.com", "number": 140, - "ip": "194.110.84.102", + "ips": [ + "194.110.84.102" + ], "tcp": true, "udp": true }, @@ -45087,7 +45310,9 @@ "region": "Finland", "hostname": "fi141.nordvpn.com", "number": 141, - "ip": "194.110.84.104", + "ips": [ + "194.110.84.104" + ], "tcp": true, "udp": true }, @@ -45095,7 +45320,9 @@ "region": "Finland", "hostname": "fi142.nordvpn.com", "number": 142, - "ip": "194.110.84.106", + "ips": [ + "194.110.84.106" + ], "tcp": true, "udp": true }, @@ -45103,7 +45330,9 @@ "region": "Finland", "hostname": "fi143.nordvpn.com", "number": 143, - "ip": "194.110.84.108", + "ips": [ + "194.110.84.108" + ], "tcp": true, "udp": true }, @@ -45111,7 +45340,9 @@ "region": "Finland", "hostname": "fi144.nordvpn.com", "number": 144, - "ip": "194.110.84.110", + "ips": [ + "194.110.84.110" + ], "tcp": true, "udp": true }, @@ -45119,7 +45350,9 @@ "region": "Finland", "hostname": "fi145.nordvpn.com", "number": 145, - "ip": "194.110.84.112", + "ips": [ + "194.110.84.112" + ], "tcp": true, "udp": true }, @@ -45127,7 +45360,9 @@ "region": "Finland", "hostname": "fi146.nordvpn.com", "number": 146, - "ip": "194.110.84.114", + "ips": [ + "194.110.84.114" + ], "tcp": true, "udp": true }, @@ -45135,7 +45370,9 @@ "region": "Finland", "hostname": "fi147.nordvpn.com", "number": 147, - "ip": "194.110.84.116", + "ips": [ + "194.110.84.116" + ], "tcp": true, "udp": true }, @@ -45143,7 +45380,9 @@ "region": "Finland", "hostname": "fi148.nordvpn.com", "number": 148, - "ip": "194.110.84.118", + "ips": [ + "194.110.84.118" + ], "tcp": true, "udp": true }, @@ -45151,7 +45390,9 @@ "region": "Finland", "hostname": "fi149.nordvpn.com", "number": 149, - "ip": "194.110.84.120", + "ips": [ + "194.110.84.120" + ], "tcp": true, "udp": true }, @@ -45159,7 +45400,9 @@ "region": "Finland", "hostname": "fi150.nordvpn.com", "number": 150, - "ip": "194.110.84.122", + "ips": [ + "194.110.84.122" + ], "tcp": true, "udp": true }, @@ -45167,7 +45410,9 @@ "region": "Finland", "hostname": "fi151.nordvpn.com", "number": 151, - "ip": "194.110.84.124", + "ips": [ + "194.110.84.124" + ], "tcp": true, "udp": true }, @@ -45175,7 +45420,9 @@ "region": "Finland", "hostname": "fi152.nordvpn.com", "number": 152, - "ip": "194.110.84.126", + "ips": [ + "194.110.84.126" + ], "tcp": true, "udp": true }, @@ -45183,7 +45430,9 @@ "region": "Finland", "hostname": "fi153.nordvpn.com", "number": 153, - "ip": "194.110.84.128", + "ips": [ + "194.110.84.128" + ], "tcp": true, "udp": true }, @@ -45191,7 +45440,9 @@ "region": "Finland", "hostname": "fi154.nordvpn.com", "number": 154, - "ip": "194.110.84.130", + "ips": [ + "194.110.84.130" + ], "tcp": true, "udp": true }, @@ -45199,7 +45450,9 @@ "region": "Finland", "hostname": "fi155.nordvpn.com", "number": 155, - "ip": "194.110.84.132", + "ips": [ + "194.110.84.132" + ], "tcp": true, "udp": true }, @@ -45207,7 +45460,9 @@ "region": "Finland", "hostname": "fi156.nordvpn.com", "number": 156, - "ip": "194.110.84.134", + "ips": [ + "194.110.84.134" + ], "tcp": true, "udp": true }, @@ -45215,7 +45470,19 @@ "region": "Finland", "hostname": "fi157.nordvpn.com", "number": 157, - "ip": "194.110.84.136", + "ips": [ + "194.110.84.136" + ], + "tcp": true, + "udp": true + }, + { + "region": "Finland", + "hostname": "fi158.nordvpn.com", + "number": 158, + "ips": [ + "194.110.84.138" + ], "tcp": true, "udp": true }, @@ -45223,7 +45490,9 @@ "region": "Finland", "hostname": "fi159.nordvpn.com", "number": 159, - "ip": "194.110.84.140", + "ips": [ + "194.110.84.140" + ], "tcp": true, "udp": true }, @@ -45231,7 +45500,9 @@ "region": "Finland", "hostname": "fi160.nordvpn.com", "number": 160, - "ip": "194.110.84.142", + "ips": [ + "194.110.84.142" + ], "tcp": true, "udp": true }, @@ -45239,7 +45510,9 @@ "region": "Finland", "hostname": "fi161.nordvpn.com", "number": 161, - "ip": "194.110.84.144", + "ips": [ + "194.110.84.144" + ], "tcp": true, "udp": true }, @@ -45247,7 +45520,9 @@ "region": "Finland", "hostname": "fi162.nordvpn.com", "number": 162, - "ip": "194.110.84.146", + "ips": [ + "194.110.84.146" + ], "tcp": true, "udp": true }, @@ -45255,7 +45530,9 @@ "region": "Finland", "hostname": "fi163.nordvpn.com", "number": 163, - "ip": "194.110.84.148", + "ips": [ + "194.110.84.148" + ], "tcp": true, "udp": true }, @@ -45263,7 +45540,9 @@ "region": "Finland", "hostname": "fi164.nordvpn.com", "number": 164, - "ip": "194.110.84.150", + "ips": [ + "194.110.84.150" + ], "tcp": true, "udp": true }, @@ -45271,7 +45550,9 @@ "region": "Finland", "hostname": "fi165.nordvpn.com", "number": 165, - "ip": "194.110.84.152", + "ips": [ + "194.110.84.152" + ], "tcp": true, "udp": true }, @@ -45279,7 +45560,9 @@ "region": "Finland", "hostname": "fi166.nordvpn.com", "number": 166, - "ip": "194.110.84.154", + "ips": [ + "194.110.84.154" + ], "tcp": true, "udp": true }, @@ -45287,7 +45570,9 @@ "region": "Finland", "hostname": "fi167.nordvpn.com", "number": 167, - "ip": "194.110.84.156", + "ips": [ + "194.110.84.156" + ], "tcp": true, "udp": true }, @@ -45295,7 +45580,9 @@ "region": "Finland", "hostname": "fi168.nordvpn.com", "number": 168, - "ip": "194.110.84.158", + "ips": [ + "194.110.84.158" + ], "tcp": true, "udp": true }, @@ -45303,7 +45590,9 @@ "region": "Finland", "hostname": "fi169.nordvpn.com", "number": 169, - "ip": "194.110.84.160", + "ips": [ + "194.110.84.160" + ], "tcp": true, "udp": true }, @@ -45311,7 +45600,9 @@ "region": "Finland", "hostname": "fi170.nordvpn.com", "number": 170, - "ip": "194.110.84.162", + "ips": [ + "194.110.84.162" + ], "tcp": true, "udp": true }, @@ -45319,7 +45610,9 @@ "region": "Finland", "hostname": "fi172.nordvpn.com", "number": 172, - "ip": "194.110.84.166", + "ips": [ + "194.110.84.166" + ], "tcp": true, "udp": true }, @@ -45327,7 +45620,9 @@ "region": "Finland", "hostname": "fi173.nordvpn.com", "number": 173, - "ip": "194.110.84.168", + "ips": [ + "194.110.84.168" + ], "tcp": true, "udp": true }, @@ -45335,7 +45630,9 @@ "region": "Finland", "hostname": "fi174.nordvpn.com", "number": 174, - "ip": "194.110.84.170", + "ips": [ + "194.110.84.170" + ], "tcp": true, "udp": true }, @@ -45343,7 +45640,9 @@ "region": "Finland", "hostname": "fi175.nordvpn.com", "number": 175, - "ip": "194.110.84.172", + "ips": [ + "194.110.84.172" + ], "tcp": true, "udp": true }, @@ -45351,7 +45650,9 @@ "region": "Finland", "hostname": "fi176.nordvpn.com", "number": 176, - "ip": "194.110.84.174", + "ips": [ + "194.110.84.174" + ], "tcp": true, "udp": true }, @@ -45359,7 +45660,9 @@ "region": "Finland", "hostname": "fi177.nordvpn.com", "number": 177, - "ip": "194.110.84.176", + "ips": [ + "194.110.84.176" + ], "tcp": true, "udp": true }, @@ -45367,7 +45670,9 @@ "region": "Finland", "hostname": "fi178.nordvpn.com", "number": 178, - "ip": "194.110.84.178", + "ips": [ + "194.110.84.178" + ], "tcp": true, "udp": true }, @@ -45375,7 +45680,9 @@ "region": "France", "hostname": "fr-uk10.nordvpn.com", "number": 10, - "ip": "138.199.47.180", + "ips": [ + "138.199.47.180" + ], "tcp": true, "udp": true }, @@ -45383,7 +45690,9 @@ "region": "France", "hostname": "fr-uk11.nordvpn.com", "number": 11, - "ip": "138.199.47.181", + "ips": [ + "138.199.47.181" + ], "tcp": true, "udp": true }, @@ -45391,7 +45700,9 @@ "region": "France", "hostname": "fr-uk16.nordvpn.com", "number": 16, - "ip": "37.19.217.39", + "ips": [ + "37.19.217.39" + ], "tcp": true, "udp": true }, @@ -45399,7 +45710,9 @@ "region": "France", "hostname": "fr-uk17.nordvpn.com", "number": 17, - "ip": "37.19.217.40", + "ips": [ + "37.19.217.40" + ], "tcp": true, "udp": true }, @@ -45407,7 +45720,9 @@ "region": "France", "hostname": "fr-uk18.nordvpn.com", "number": 18, - "ip": "139.28.219.251", + "ips": [ + "139.28.219.251" + ], "tcp": true, "udp": true }, @@ -45415,7 +45730,9 @@ "region": "France", "hostname": "fr-uk19.nordvpn.com", "number": 19, - "ip": "139.28.219.252", + "ips": [ + "139.28.219.252" + ], "tcp": true, "udp": true }, @@ -45423,7 +45740,9 @@ "region": "France", "hostname": "fr399.nordvpn.com", "number": 399, - "ip": "37.120.204.67", + "ips": [ + "37.120.204.67" + ], "tcp": true, "udp": true }, @@ -45431,7 +45750,9 @@ "region": "France", "hostname": "fr439.nordvpn.com", "number": 439, - "ip": "185.93.2.199", + "ips": [ + "185.93.2.199" + ], "tcp": true, "udp": true }, @@ -45439,7 +45760,9 @@ "region": "France", "hostname": "fr440.nordvpn.com", "number": 440, - "ip": "185.93.2.206", + "ips": [ + "185.93.2.206" + ], "tcp": true, "udp": true }, @@ -45447,7 +45770,9 @@ "region": "France", "hostname": "fr452.nordvpn.com", "number": 452, - "ip": "45.152.181.219", + "ips": [ + "45.152.181.219" + ], "tcp": true, "udp": true }, @@ -45455,7 +45780,9 @@ "region": "France", "hostname": "fr536.nordvpn.com", "number": 536, - "ip": "217.138.207.139", + "ips": [ + "217.138.207.139" + ], "tcp": true, "udp": true }, @@ -45463,7 +45790,9 @@ "region": "France", "hostname": "fr537.nordvpn.com", "number": 537, - "ip": "217.138.207.147", + "ips": [ + "217.138.207.147" + ], "tcp": true, "udp": true }, @@ -45471,7 +45800,9 @@ "region": "France", "hostname": "fr538.nordvpn.com", "number": 538, - "ip": "217.138.207.155", + "ips": [ + "217.138.207.155" + ], "tcp": true, "udp": true }, @@ -45479,7 +45810,9 @@ "region": "France", "hostname": "fr539.nordvpn.com", "number": 539, - "ip": "217.138.207.163", + "ips": [ + "217.138.207.163" + ], "tcp": true, "udp": true }, @@ -45487,7 +45820,9 @@ "region": "France", "hostname": "fr540.nordvpn.com", "number": 540, - "ip": "217.138.207.195", + "ips": [ + "217.138.207.195" + ], "tcp": true, "udp": true }, @@ -45495,7 +45830,9 @@ "region": "France", "hostname": "fr541.nordvpn.com", "number": 541, - "ip": "217.138.207.203", + "ips": [ + "217.138.207.203" + ], "tcp": true, "udp": true }, @@ -45503,7 +45840,9 @@ "region": "France", "hostname": "fr542.nordvpn.com", "number": 542, - "ip": "217.138.207.171", + "ips": [ + "217.138.207.171" + ], "tcp": true, "udp": true }, @@ -45511,7 +45850,9 @@ "region": "France", "hostname": "fr543.nordvpn.com", "number": 543, - "ip": "217.138.207.179", + "ips": [ + "217.138.207.179" + ], "tcp": true, "udp": true }, @@ -45519,7 +45860,9 @@ "region": "France", "hostname": "fr544.nordvpn.com", "number": 544, - "ip": "217.138.207.187", + "ips": [ + "217.138.207.187" + ], "tcp": true, "udp": true }, @@ -45527,7 +45870,9 @@ "region": "France", "hostname": "fr545.nordvpn.com", "number": 545, - "ip": "89.40.183.3", + "ips": [ + "89.40.183.3" + ], "tcp": true, "udp": true }, @@ -45535,7 +45880,9 @@ "region": "France", "hostname": "fr546.nordvpn.com", "number": 546, - "ip": "89.40.183.6", + "ips": [ + "89.40.183.6" + ], "tcp": true, "udp": true }, @@ -45543,7 +45890,9 @@ "region": "France", "hostname": "fr547.nordvpn.com", "number": 547, - "ip": "89.40.183.9", + "ips": [ + "89.40.183.9" + ], "tcp": true, "udp": true }, @@ -45551,7 +45900,9 @@ "region": "France", "hostname": "fr548.nordvpn.com", "number": 548, - "ip": "89.40.183.12", + "ips": [ + "89.40.183.12" + ], "tcp": true, "udp": true }, @@ -45559,7 +45910,9 @@ "region": "France", "hostname": "fr549.nordvpn.com", "number": 549, - "ip": "89.40.183.15", + "ips": [ + "89.40.183.15" + ], "tcp": true, "udp": true }, @@ -45567,7 +45920,9 @@ "region": "France", "hostname": "fr550.nordvpn.com", "number": 550, - "ip": "89.40.183.18", + "ips": [ + "89.40.183.18" + ], "tcp": true, "udp": true }, @@ -45575,7 +45930,9 @@ "region": "France", "hostname": "fr551.nordvpn.com", "number": 551, - "ip": "89.40.183.21", + "ips": [ + "89.40.183.21" + ], "tcp": true, "udp": true }, @@ -45583,7 +45940,9 @@ "region": "France", "hostname": "fr552.nordvpn.com", "number": 552, - "ip": "89.40.183.24", + "ips": [ + "89.40.183.24" + ], "tcp": true, "udp": true }, @@ -45591,7 +45950,9 @@ "region": "France", "hostname": "fr553.nordvpn.com", "number": 553, - "ip": "89.40.183.27", + "ips": [ + "89.40.183.27" + ], "tcp": true, "udp": true }, @@ -45599,7 +45960,9 @@ "region": "France", "hostname": "fr554.nordvpn.com", "number": 554, - "ip": "89.40.183.29", + "ips": [ + "89.40.183.29" + ], "tcp": true, "udp": true }, @@ -45607,7 +45970,9 @@ "region": "France", "hostname": "fr555.nordvpn.com", "number": 555, - "ip": "82.102.18.252", + "ips": [ + "82.102.18.252" + ], "tcp": true, "udp": true }, @@ -45615,7 +45980,9 @@ "region": "France", "hostname": "fr577.nordvpn.com", "number": 577, - "ip": "84.17.42.118", + "ips": [ + "84.17.42.118" + ], "tcp": true, "udp": true }, @@ -45623,7 +45990,9 @@ "region": "France", "hostname": "fr578.nordvpn.com", "number": 578, - "ip": "84.17.42.119", + "ips": [ + "84.17.42.119" + ], "tcp": true, "udp": true }, @@ -45631,7 +46000,9 @@ "region": "France", "hostname": "fr589.nordvpn.com", "number": 589, - "ip": "45.152.181.35", + "ips": [ + "45.152.181.35" + ], "tcp": true, "udp": true }, @@ -45639,7 +46010,9 @@ "region": "France", "hostname": "fr592.nordvpn.com", "number": 592, - "ip": "185.104.185.163", + "ips": [ + "185.104.185.163" + ], "tcp": true, "udp": true }, @@ -45647,7 +46020,9 @@ "region": "France", "hostname": "fr596.nordvpn.com", "number": 596, - "ip": "84.17.43.133", + "ips": [ + "84.17.43.133" + ], "tcp": true, "udp": true }, @@ -45655,7 +46030,209 @@ "region": "France", "hostname": "fr597.nordvpn.com", "number": 597, - "ip": "84.17.43.130", + "ips": [ + "84.17.43.130" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr598.nordvpn.com", + "number": 598, + "ips": [ + "89.40.183.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr599.nordvpn.com", + "number": 599, + "ips": [ + "89.40.183.198" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr600.nordvpn.com", + "number": 600, + "ips": [ + "89.40.183.201" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr601.nordvpn.com", + "number": 601, + "ips": [ + "89.40.183.204" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr602.nordvpn.com", + "number": 602, + "ips": [ + "89.40.183.207" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr603.nordvpn.com", + "number": 603, + "ips": [ + "89.40.183.210" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr604.nordvpn.com", + "number": 604, + "ips": [ + "89.40.183.213" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr605.nordvpn.com", + "number": 605, + "ips": [ + "89.40.183.216" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr606.nordvpn.com", + "number": 606, + "ips": [ + "89.40.183.219" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr607.nordvpn.com", + "number": 607, + "ips": [ + "89.40.183.221" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr608.nordvpn.com", + "number": 608, + "ips": [ + "89.40.183.132" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr609.nordvpn.com", + "number": 609, + "ips": [ + "89.40.183.135" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr610.nordvpn.com", + "number": 610, + "ips": [ + "89.40.183.138" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr611.nordvpn.com", + "number": 611, + "ips": [ + "89.40.183.141" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr622.nordvpn.com", + "number": 622, + "ips": [ + "185.244.213.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr638.nordvpn.com", + "number": 638, + "ips": [ + "139.28.219.107" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr639.nordvpn.com", + "number": 639, + "ips": [ + "139.28.219.203" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr640.nordvpn.com", + "number": 640, + "ips": [ + "139.28.219.227" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr641.nordvpn.com", + "number": 641, + "ips": [ + "139.28.219.235" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr642.nordvpn.com", + "number": 642, + "ips": [ + "139.28.219.243" + ], "tcp": true, "udp": true }, @@ -45663,7 +46240,9 @@ "region": "France", "hostname": "fr660.nordvpn.com", "number": 660, - "ip": "37.120.204.51", + "ips": [ + "37.120.204.51" + ], "tcp": true, "udp": true }, @@ -45671,7 +46250,9 @@ "region": "France", "hostname": "fr661.nordvpn.com", "number": 661, - "ip": "37.120.204.59", + "ips": [ + "37.120.204.59" + ], "tcp": true, "udp": true }, @@ -45679,7 +46260,9 @@ "region": "France", "hostname": "fr662.nordvpn.com", "number": 662, - "ip": "37.120.204.131", + "ips": [ + "37.120.204.131" + ], "tcp": true, "udp": true }, @@ -45687,7 +46270,9 @@ "region": "France", "hostname": "fr663.nordvpn.com", "number": 663, - "ip": "37.120.204.139", + "ips": [ + "37.120.204.139" + ], "tcp": true, "udp": true }, @@ -45695,7 +46280,9 @@ "region": "France", "hostname": "fr664.nordvpn.com", "number": 664, - "ip": "37.120.204.147", + "ips": [ + "37.120.204.147" + ], "tcp": true, "udp": true }, @@ -45703,7 +46290,9 @@ "region": "France", "hostname": "fr666.nordvpn.com", "number": 666, - "ip": "37.120.204.155", + "ips": [ + "37.120.204.155" + ], "tcp": true, "udp": true }, @@ -45711,7 +46300,9 @@ "region": "France", "hostname": "fr667.nordvpn.com", "number": 667, - "ip": "37.120.204.163", + "ips": [ + "37.120.204.163" + ], "tcp": true, "udp": true }, @@ -45719,7 +46310,9 @@ "region": "France", "hostname": "fr668.nordvpn.com", "number": 668, - "ip": "37.120.204.171", + "ips": [ + "37.120.204.171" + ], "tcp": true, "udp": true }, @@ -45727,7 +46320,9 @@ "region": "France", "hostname": "fr669.nordvpn.com", "number": 669, - "ip": "37.120.204.179", + "ips": [ + "37.120.204.179" + ], "tcp": true, "udp": true }, @@ -45735,7 +46330,9 @@ "region": "France", "hostname": "fr670.nordvpn.com", "number": 670, - "ip": "37.120.204.187", + "ips": [ + "37.120.204.187" + ], "tcp": true, "udp": true }, @@ -45743,7 +46340,9 @@ "region": "France", "hostname": "fr671.nordvpn.com", "number": 671, - "ip": "84.17.42.113", + "ips": [ + "84.17.42.113" + ], "tcp": true, "udp": true }, @@ -45751,7 +46350,9 @@ "region": "France", "hostname": "fr672.nordvpn.com", "number": 672, - "ip": "84.17.42.108", + "ips": [ + "84.17.42.108" + ], "tcp": true, "udp": true }, @@ -45759,7 +46360,9 @@ "region": "France", "hostname": "fr673.nordvpn.com", "number": 673, - "ip": "84.17.42.103", + "ips": [ + "84.17.42.103" + ], "tcp": true, "udp": true }, @@ -45767,7 +46370,9 @@ "region": "France", "hostname": "fr674.nordvpn.com", "number": 674, - "ip": "84.17.42.98", + "ips": [ + "84.17.42.98" + ], "tcp": true, "udp": true }, @@ -45775,7 +46380,9 @@ "region": "France", "hostname": "fr675.nordvpn.com", "number": 675, - "ip": "37.120.204.211", + "ips": [ + "37.120.204.211" + ], "tcp": true, "udp": true }, @@ -45783,7 +46390,9 @@ "region": "France", "hostname": "fr676.nordvpn.com", "number": 676, - "ip": "37.120.204.219", + "ips": [ + "37.120.204.219" + ], "tcp": true, "udp": true }, @@ -45791,7 +46400,9 @@ "region": "France", "hostname": "fr677.nordvpn.com", "number": 677, - "ip": "37.120.204.227", + "ips": [ + "37.120.204.227" + ], "tcp": true, "udp": true }, @@ -45799,7 +46410,9 @@ "region": "France", "hostname": "fr678.nordvpn.com", "number": 678, - "ip": "37.120.204.235", + "ips": [ + "37.120.204.235" + ], "tcp": true, "udp": true }, @@ -45807,7 +46420,9 @@ "region": "France", "hostname": "fr679.nordvpn.com", "number": 679, - "ip": "37.120.204.243", + "ips": [ + "37.120.204.243" + ], "tcp": true, "udp": true }, @@ -45815,7 +46430,9 @@ "region": "France", "hostname": "fr680.nordvpn.com", "number": 680, - "ip": "37.120.204.251", + "ips": [ + "37.120.204.251" + ], "tcp": true, "udp": true }, @@ -45823,7 +46440,9 @@ "region": "France", "hostname": "fr681.nordvpn.com", "number": 681, - "ip": "45.89.174.115", + "ips": [ + "45.89.174.115" + ], "tcp": true, "udp": true }, @@ -45831,7 +46450,9 @@ "region": "France", "hostname": "fr682.nordvpn.com", "number": 682, - "ip": "45.89.174.123", + "ips": [ + "45.89.174.123" + ], "tcp": true, "udp": true }, @@ -45839,7 +46460,9 @@ "region": "France", "hostname": "fr683.nordvpn.com", "number": 683, - "ip": "45.152.181.3", + "ips": [ + "45.152.181.3" + ], "tcp": true, "udp": true }, @@ -45847,7 +46470,9 @@ "region": "France", "hostname": "fr684.nordvpn.com", "number": 684, - "ip": "45.152.181.11", + "ips": [ + "45.152.181.11" + ], "tcp": true, "udp": true }, @@ -45855,7 +46480,9 @@ "region": "France", "hostname": "fr685.nordvpn.com", "number": 685, - "ip": "45.152.181.19", + "ips": [ + "45.152.181.19" + ], "tcp": true, "udp": true }, @@ -45863,7 +46490,9 @@ "region": "France", "hostname": "fr686.nordvpn.com", "number": 686, - "ip": "45.152.181.27", + "ips": [ + "45.152.181.27" + ], "tcp": true, "udp": true }, @@ -45871,7 +46500,9 @@ "region": "France", "hostname": "fr687.nordvpn.com", "number": 687, - "ip": "45.152.181.43", + "ips": [ + "45.152.181.43" + ], "tcp": true, "udp": true }, @@ -45879,7 +46510,9 @@ "region": "France", "hostname": "fr688.nordvpn.com", "number": 688, - "ip": "45.152.181.51", + "ips": [ + "45.152.181.51" + ], "tcp": true, "udp": true }, @@ -45887,7 +46520,9 @@ "region": "France", "hostname": "fr695.nordvpn.com", "number": 695, - "ip": "45.152.181.147", + "ips": [ + "45.152.181.147" + ], "tcp": true, "udp": true }, @@ -45895,7 +46530,9 @@ "region": "France", "hostname": "fr696.nordvpn.com", "number": 696, - "ip": "45.152.181.155", + "ips": [ + "45.152.181.155" + ], "tcp": true, "udp": true }, @@ -45903,7 +46540,9 @@ "region": "France", "hostname": "fr697.nordvpn.com", "number": 697, - "ip": "45.152.181.163", + "ips": [ + "45.152.181.163" + ], "tcp": true, "udp": true }, @@ -45911,7 +46550,9 @@ "region": "France", "hostname": "fr698.nordvpn.com", "number": 698, - "ip": "45.152.181.171", + "ips": [ + "45.152.181.171" + ], "tcp": true, "udp": true }, @@ -45919,7 +46560,9 @@ "region": "France", "hostname": "fr699.nordvpn.com", "number": 699, - "ip": "45.152.181.179", + "ips": [ + "45.152.181.179" + ], "tcp": true, "udp": true }, @@ -45927,7 +46570,9 @@ "region": "France", "hostname": "fr700.nordvpn.com", "number": 700, - "ip": "45.152.181.187", + "ips": [ + "45.152.181.187" + ], "tcp": true, "udp": true }, @@ -45935,7 +46580,9 @@ "region": "France", "hostname": "fr701.nordvpn.com", "number": 701, - "ip": "45.152.181.195", + "ips": [ + "45.152.181.195" + ], "tcp": true, "udp": true }, @@ -45943,7 +46590,9 @@ "region": "France", "hostname": "fr702.nordvpn.com", "number": 702, - "ip": "45.152.181.203", + "ips": [ + "45.152.181.203" + ], "tcp": true, "udp": true }, @@ -45951,7 +46600,9 @@ "region": "France", "hostname": "fr703.nordvpn.com", "number": 703, - "ip": "45.152.181.211", + "ips": [ + "45.152.181.211" + ], "tcp": true, "udp": true }, @@ -45959,7 +46610,9 @@ "region": "France", "hostname": "fr710.nordvpn.com", "number": 710, - "ip": "45.152.181.131", + "ips": [ + "45.152.181.131" + ], "tcp": true, "udp": true }, @@ -45967,7 +46620,9 @@ "region": "France", "hostname": "fr738.nordvpn.com", "number": 738, - "ip": "84.17.43.139", + "ips": [ + "84.17.43.139" + ], "tcp": true, "udp": true }, @@ -45975,7 +46630,9 @@ "region": "France", "hostname": "fr739.nordvpn.com", "number": 739, - "ip": "143.244.56.154", + "ips": [ + "143.244.56.154" + ], "tcp": true, "udp": true }, @@ -45983,7 +46640,9 @@ "region": "France", "hostname": "fr740.nordvpn.com", "number": 740, - "ip": "84.17.43.154", + "ips": [ + "84.17.43.154" + ], "tcp": true, "udp": true }, @@ -45991,7 +46650,9 @@ "region": "France", "hostname": "fr741.nordvpn.com", "number": 741, - "ip": "143.244.56.130", + "ips": [ + "143.244.56.130" + ], "tcp": true, "udp": true }, @@ -45999,7 +46660,9 @@ "region": "France", "hostname": "fr742.nordvpn.com", "number": 742, - "ip": "143.244.56.133", + "ips": [ + "143.244.56.133" + ], "tcp": true, "udp": true }, @@ -46007,7 +46670,9 @@ "region": "France", "hostname": "fr743.nordvpn.com", "number": 743, - "ip": "143.244.56.136", + "ips": [ + "143.244.56.136" + ], "tcp": true, "udp": true }, @@ -46015,7 +46680,9 @@ "region": "France", "hostname": "fr744.nordvpn.com", "number": 744, - "ip": "143.244.56.139", + "ips": [ + "143.244.56.139" + ], "tcp": true, "udp": true }, @@ -46023,7 +46690,9 @@ "region": "France", "hostname": "fr745.nordvpn.com", "number": 745, - "ip": "143.244.56.142", + "ips": [ + "143.244.56.142" + ], "tcp": true, "udp": true }, @@ -46031,7 +46700,9 @@ "region": "France", "hostname": "fr746.nordvpn.com", "number": 746, - "ip": "84.17.43.142", + "ips": [ + "84.17.43.142" + ], "tcp": true, "udp": true }, @@ -46039,7 +46710,9 @@ "region": "France", "hostname": "fr747.nordvpn.com", "number": 747, - "ip": "84.17.43.145", + "ips": [ + "84.17.43.145" + ], "tcp": true, "udp": true }, @@ -46047,7 +46720,9 @@ "region": "France", "hostname": "fr748.nordvpn.com", "number": 748, - "ip": "84.17.43.148", + "ips": [ + "84.17.43.148" + ], "tcp": true, "udp": true }, @@ -46055,7 +46730,9 @@ "region": "France", "hostname": "fr749.nordvpn.com", "number": 749, - "ip": "84.17.43.151", + "ips": [ + "84.17.43.151" + ], "tcp": true, "udp": true }, @@ -46063,7 +46740,9 @@ "region": "France", "hostname": "fr750.nordvpn.com", "number": 750, - "ip": "143.244.56.145", + "ips": [ + "143.244.56.145" + ], "tcp": true, "udp": true }, @@ -46071,7 +46750,9 @@ "region": "France", "hostname": "fr751.nordvpn.com", "number": 751, - "ip": "143.244.56.148", + "ips": [ + "143.244.56.148" + ], "tcp": true, "udp": true }, @@ -46079,7 +46760,9 @@ "region": "France", "hostname": "fr752.nordvpn.com", "number": 752, - "ip": "143.244.56.151", + "ips": [ + "143.244.56.151" + ], "tcp": true, "udp": true }, @@ -46087,7 +46770,9 @@ "region": "France", "hostname": "fr753.nordvpn.com", "number": 753, - "ip": "143.244.56.157", + "ips": [ + "143.244.56.157" + ], "tcp": true, "udp": true }, @@ -46095,7 +46780,9 @@ "region": "France", "hostname": "fr754.nordvpn.com", "number": 754, - "ip": "143.244.56.158", + "ips": [ + "143.244.56.158" + ], "tcp": true, "udp": true }, @@ -46103,7 +46790,9 @@ "region": "France", "hostname": "fr755.nordvpn.com", "number": 755, - "ip": "143.244.56.160", + "ips": [ + "143.244.56.160" + ], "tcp": true, "udp": true }, @@ -46111,7 +46800,9 @@ "region": "France", "hostname": "fr756.nordvpn.com", "number": 756, - "ip": "143.244.56.163", + "ips": [ + "143.244.56.163" + ], "tcp": true, "udp": true }, @@ -46119,7 +46810,9 @@ "region": "France", "hostname": "fr757.nordvpn.com", "number": 757, - "ip": "143.244.56.166", + "ips": [ + "143.244.56.166" + ], "tcp": true, "udp": true }, @@ -46127,7 +46820,9 @@ "region": "France", "hostname": "fr758.nordvpn.com", "number": 758, - "ip": "143.244.56.169", + "ips": [ + "143.244.56.169" + ], "tcp": true, "udp": true }, @@ -46135,7 +46830,9 @@ "region": "France", "hostname": "fr759.nordvpn.com", "number": 759, - "ip": "143.244.56.172", + "ips": [ + "143.244.56.172" + ], "tcp": true, "udp": true }, @@ -46143,7 +46840,9 @@ "region": "France", "hostname": "fr760.nordvpn.com", "number": 760, - "ip": "143.244.56.175", + "ips": [ + "143.244.56.175" + ], "tcp": true, "udp": true }, @@ -46151,7 +46850,9 @@ "region": "France", "hostname": "fr761.nordvpn.com", "number": 761, - "ip": "143.244.56.178", + "ips": [ + "143.244.56.178" + ], "tcp": true, "udp": true }, @@ -46159,7 +46860,9 @@ "region": "France", "hostname": "fr762.nordvpn.com", "number": 762, - "ip": "143.244.56.181", + "ips": [ + "143.244.56.181" + ], "tcp": true, "udp": true }, @@ -46167,7 +46870,9 @@ "region": "France", "hostname": "fr763.nordvpn.com", "number": 763, - "ip": "143.244.56.184", + "ips": [ + "143.244.56.184" + ], "tcp": true, "udp": true }, @@ -46175,7 +46880,9 @@ "region": "France", "hostname": "fr764.nordvpn.com", "number": 764, - "ip": "143.244.56.186", + "ips": [ + "143.244.56.186" + ], "tcp": true, "udp": true }, @@ -46183,7 +46890,9 @@ "region": "France", "hostname": "fr765.nordvpn.com", "number": 765, - "ip": "138.199.47.130", + "ips": [ + "138.199.47.130" + ], "tcp": true, "udp": true }, @@ -46191,7 +46900,9 @@ "region": "France", "hostname": "fr766.nordvpn.com", "number": 766, - "ip": "138.199.47.133", + "ips": [ + "138.199.47.133" + ], "tcp": true, "udp": true }, @@ -46199,7 +46910,9 @@ "region": "France", "hostname": "fr767.nordvpn.com", "number": 767, - "ip": "138.199.47.136", + "ips": [ + "138.199.47.136" + ], "tcp": true, "udp": true }, @@ -46207,7 +46920,9 @@ "region": "France", "hostname": "fr768.nordvpn.com", "number": 768, - "ip": "138.199.47.139", + "ips": [ + "138.199.47.139" + ], "tcp": true, "udp": true }, @@ -46215,7 +46930,9 @@ "region": "France", "hostname": "fr769.nordvpn.com", "number": 769, - "ip": "138.199.47.142", + "ips": [ + "138.199.47.142" + ], "tcp": true, "udp": true }, @@ -46223,7 +46940,9 @@ "region": "France", "hostname": "fr770.nordvpn.com", "number": 770, - "ip": "138.199.47.145", + "ips": [ + "138.199.47.145" + ], "tcp": true, "udp": true }, @@ -46231,7 +46950,9 @@ "region": "France", "hostname": "fr771.nordvpn.com", "number": 771, - "ip": "138.199.47.148", + "ips": [ + "138.199.47.148" + ], "tcp": true, "udp": true }, @@ -46239,7 +46960,9 @@ "region": "France", "hostname": "fr772.nordvpn.com", "number": 772, - "ip": "138.199.47.151", + "ips": [ + "138.199.47.151" + ], "tcp": true, "udp": true }, @@ -46247,7 +46970,9 @@ "region": "France", "hostname": "fr773.nordvpn.com", "number": 773, - "ip": "138.199.47.154", + "ips": [ + "138.199.47.154" + ], "tcp": true, "udp": true }, @@ -46255,7 +46980,9 @@ "region": "France", "hostname": "fr774.nordvpn.com", "number": 774, - "ip": "138.199.47.157", + "ips": [ + "138.199.47.157" + ], "tcp": true, "udp": true }, @@ -46263,7 +46990,9 @@ "region": "France", "hostname": "fr775.nordvpn.com", "number": 775, - "ip": "138.199.47.160", + "ips": [ + "138.199.47.160" + ], "tcp": true, "udp": true }, @@ -46271,7 +47000,9 @@ "region": "France", "hostname": "fr776.nordvpn.com", "number": 776, - "ip": "138.199.47.163", + "ips": [ + "138.199.47.163" + ], "tcp": true, "udp": true }, @@ -46279,7 +47010,9 @@ "region": "France", "hostname": "fr777.nordvpn.com", "number": 777, - "ip": "138.199.47.166", + "ips": [ + "138.199.47.166" + ], "tcp": true, "udp": true }, @@ -46287,7 +47020,9 @@ "region": "France", "hostname": "fr778.nordvpn.com", "number": 778, - "ip": "138.199.47.169", + "ips": [ + "138.199.47.169" + ], "tcp": true, "udp": true }, @@ -46295,7 +47030,9 @@ "region": "France", "hostname": "fr779.nordvpn.com", "number": 779, - "ip": "138.199.47.172", + "ips": [ + "138.199.47.172" + ], "tcp": true, "udp": true }, @@ -46303,7 +47040,9 @@ "region": "France", "hostname": "fr780.nordvpn.com", "number": 780, - "ip": "138.199.47.175", + "ips": [ + "138.199.47.175" + ], "tcp": true, "udp": true }, @@ -46311,7 +47050,9 @@ "region": "France", "hostname": "fr781.nordvpn.com", "number": 781, - "ip": "138.199.47.178", + "ips": [ + "138.199.47.178" + ], "tcp": true, "udp": true }, @@ -46319,7 +47060,9 @@ "region": "France", "hostname": "fr789.nordvpn.com", "number": 789, - "ip": "138.199.16.7", + "ips": [ + "138.199.16.7" + ], "tcp": true, "udp": true }, @@ -46327,7 +47070,9 @@ "region": "France", "hostname": "fr790.nordvpn.com", "number": 790, - "ip": "138.199.16.12", + "ips": [ + "138.199.16.12" + ], "tcp": true, "udp": true }, @@ -46335,7 +47080,9 @@ "region": "France", "hostname": "fr791.nordvpn.com", "number": 791, - "ip": "138.199.16.17", + "ips": [ + "138.199.16.17" + ], "tcp": true, "udp": true }, @@ -46343,7 +47090,9 @@ "region": "France", "hostname": "fr793.nordvpn.com", "number": 793, - "ip": "138.199.16.27", + "ips": [ + "138.199.16.27" + ], "tcp": true, "udp": true }, @@ -46351,7 +47100,9 @@ "region": "France", "hostname": "fr794.nordvpn.com", "number": 794, - "ip": "138.199.16.32", + "ips": [ + "138.199.16.32" + ], "tcp": true, "udp": true }, @@ -46359,7 +47110,9 @@ "region": "France", "hostname": "fr795.nordvpn.com", "number": 795, - "ip": "138.199.16.37", + "ips": [ + "138.199.16.37" + ], "tcp": true, "udp": true }, @@ -46367,7 +47120,9 @@ "region": "France", "hostname": "fr796.nordvpn.com", "number": 796, - "ip": "138.199.16.42", + "ips": [ + "138.199.16.42" + ], "tcp": true, "udp": true }, @@ -46375,7 +47130,9 @@ "region": "France", "hostname": "fr797.nordvpn.com", "number": 797, - "ip": "138.199.16.47", + "ips": [ + "138.199.16.47" + ], "tcp": true, "udp": true }, @@ -46383,7 +47140,9 @@ "region": "France", "hostname": "fr798.nordvpn.com", "number": 798, - "ip": "138.199.16.52", + "ips": [ + "138.199.16.52" + ], "tcp": true, "udp": true }, @@ -46391,7 +47150,9 @@ "region": "France", "hostname": "fr799.nordvpn.com", "number": 799, - "ip": "138.199.16.57", + "ips": [ + "138.199.16.57" + ], "tcp": true, "udp": true }, @@ -46399,7 +47160,9 @@ "region": "France", "hostname": "fr800.nordvpn.com", "number": 800, - "ip": "138.199.16.62", + "ips": [ + "138.199.16.62" + ], "tcp": true, "udp": true }, @@ -46407,7 +47170,9 @@ "region": "France", "hostname": "fr801.nordvpn.com", "number": 801, - "ip": "138.199.16.67", + "ips": [ + "138.199.16.67" + ], "tcp": true, "udp": true }, @@ -46415,7 +47180,9 @@ "region": "France", "hostname": "fr802.nordvpn.com", "number": 802, - "ip": "138.199.16.72", + "ips": [ + "138.199.16.72" + ], "tcp": true, "udp": true }, @@ -46423,7 +47190,9 @@ "region": "France", "hostname": "fr803.nordvpn.com", "number": 803, - "ip": "138.199.16.77", + "ips": [ + "138.199.16.77" + ], "tcp": true, "udp": true }, @@ -46431,7 +47200,9 @@ "region": "France", "hostname": "fr804.nordvpn.com", "number": 804, - "ip": "138.199.16.82", + "ips": [ + "138.199.16.82" + ], "tcp": true, "udp": true }, @@ -46439,7 +47210,9 @@ "region": "France", "hostname": "fr805.nordvpn.com", "number": 805, - "ip": "138.199.16.87", + "ips": [ + "138.199.16.87" + ], "tcp": true, "udp": true }, @@ -46447,7 +47220,9 @@ "region": "France", "hostname": "fr806.nordvpn.com", "number": 806, - "ip": "138.199.16.92", + "ips": [ + "138.199.16.92" + ], "tcp": true, "udp": true }, @@ -46455,7 +47230,9 @@ "region": "France", "hostname": "fr807.nordvpn.com", "number": 807, - "ip": "138.199.16.97", + "ips": [ + "138.199.16.97" + ], "tcp": true, "udp": true }, @@ -46463,7 +47240,9 @@ "region": "France", "hostname": "fr808.nordvpn.com", "number": 808, - "ip": "138.199.16.102", + "ips": [ + "138.199.16.102" + ], "tcp": true, "udp": true }, @@ -46471,7 +47250,9 @@ "region": "France", "hostname": "fr809.nordvpn.com", "number": 809, - "ip": "138.199.16.107", + "ips": [ + "138.199.16.107" + ], "tcp": true, "udp": true }, @@ -46479,7 +47260,9 @@ "region": "France", "hostname": "fr810.nordvpn.com", "number": 810, - "ip": "138.199.16.112", + "ips": [ + "138.199.16.112" + ], "tcp": true, "udp": true }, @@ -46487,7 +47270,9 @@ "region": "France", "hostname": "fr811.nordvpn.com", "number": 811, - "ip": "138.199.16.117", + "ips": [ + "138.199.16.117" + ], "tcp": true, "udp": true }, @@ -46495,7 +47280,9 @@ "region": "France", "hostname": "fr812.nordvpn.com", "number": 812, - "ip": "138.199.16.194", + "ips": [ + "138.199.16.194" + ], "tcp": true, "udp": true }, @@ -46503,7 +47290,9 @@ "region": "France", "hostname": "fr813.nordvpn.com", "number": 813, - "ip": "138.199.16.199", + "ips": [ + "138.199.16.199" + ], "tcp": true, "udp": true }, @@ -46511,7 +47300,9 @@ "region": "France", "hostname": "fr814.nordvpn.com", "number": 814, - "ip": "138.199.16.204", + "ips": [ + "138.199.16.204" + ], "tcp": true, "udp": true }, @@ -46519,7 +47310,9 @@ "region": "France", "hostname": "fr815.nordvpn.com", "number": 815, - "ip": "138.199.16.209", + "ips": [ + "138.199.16.209" + ], "tcp": true, "udp": true }, @@ -46527,7 +47320,9 @@ "region": "France", "hostname": "fr816.nordvpn.com", "number": 816, - "ip": "138.199.16.214", + "ips": [ + "138.199.16.214" + ], "tcp": true, "udp": true }, @@ -46535,7 +47330,9 @@ "region": "France", "hostname": "fr817.nordvpn.com", "number": 817, - "ip": "138.199.16.219", + "ips": [ + "138.199.16.219" + ], "tcp": true, "udp": true }, @@ -46543,7 +47340,9 @@ "region": "France", "hostname": "fr818.nordvpn.com", "number": 818, - "ip": "138.199.16.2", + "ips": [ + "138.199.16.2" + ], "tcp": true, "udp": true }, @@ -46551,7 +47350,9 @@ "region": "France", "hostname": "fr819.nordvpn.com", "number": 819, - "ip": "138.199.16.228", + "ips": [ + "138.199.16.228" + ], "tcp": true, "udp": true }, @@ -46559,7 +47360,9 @@ "region": "France", "hostname": "fr820.nordvpn.com", "number": 820, - "ip": "138.199.16.233", + "ips": [ + "138.199.16.233" + ], "tcp": true, "udp": true }, @@ -46567,7 +47370,9 @@ "region": "France", "hostname": "fr821.nordvpn.com", "number": 821, - "ip": "138.199.16.241", + "ips": [ + "138.199.16.241" + ], "tcp": true, "udp": true }, @@ -46575,7 +47380,9 @@ "region": "France", "hostname": "fr822.nordvpn.com", "number": 822, - "ip": "138.199.16.245", + "ips": [ + "138.199.16.245" + ], "tcp": true, "udp": true }, @@ -46583,7 +47390,9 @@ "region": "France", "hostname": "fr823.nordvpn.com", "number": 823, - "ip": "138.199.16.224", + "ips": [ + "138.199.16.224" + ], "tcp": true, "udp": true }, @@ -46591,7 +47400,9 @@ "region": "France", "hostname": "fr824.nordvpn.com", "number": 824, - "ip": "138.199.16.237", + "ips": [ + "138.199.16.237" + ], "tcp": true, "udp": true }, @@ -46599,7 +47410,19 @@ "region": "France", "hostname": "fr825.nordvpn.com", "number": 825, - "ip": "217.138.207.131", + "ips": [ + "217.138.207.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr826.nordvpn.com", + "number": 826, + "ips": [ + "89.40.183.227" + ], "tcp": true, "udp": true }, @@ -46607,7 +47430,9 @@ "region": "France", "hostname": "fr827.nordvpn.com", "number": 827, - "ip": "37.19.217.3", + "ips": [ + "37.19.217.3" + ], "tcp": true, "udp": true }, @@ -46615,7 +47440,9 @@ "region": "France", "hostname": "fr828.nordvpn.com", "number": 828, - "ip": "37.19.217.6", + "ips": [ + "37.19.217.6" + ], "tcp": true, "udp": true }, @@ -46623,7 +47450,9 @@ "region": "France", "hostname": "fr829.nordvpn.com", "number": 829, - "ip": "37.19.217.9", + "ips": [ + "37.19.217.9" + ], "tcp": true, "udp": true }, @@ -46631,7 +47460,9 @@ "region": "France", "hostname": "fr830.nordvpn.com", "number": 830, - "ip": "37.19.217.21", + "ips": [ + "37.19.217.21" + ], "tcp": true, "udp": true }, @@ -46639,7 +47470,9 @@ "region": "France", "hostname": "fr831.nordvpn.com", "number": 831, - "ip": "37.19.217.18", + "ips": [ + "37.19.217.18" + ], "tcp": true, "udp": true }, @@ -46647,7 +47480,9 @@ "region": "France", "hostname": "fr832.nordvpn.com", "number": 832, - "ip": "37.19.217.12", + "ips": [ + "37.19.217.12" + ], "tcp": true, "udp": true }, @@ -46655,7 +47490,9 @@ "region": "France", "hostname": "fr833.nordvpn.com", "number": 833, - "ip": "37.19.217.15", + "ips": [ + "37.19.217.15" + ], "tcp": true, "udp": true }, @@ -46663,7 +47500,9 @@ "region": "France", "hostname": "fr834.nordvpn.com", "number": 834, - "ip": "37.19.217.24", + "ips": [ + "37.19.217.24" + ], "tcp": true, "udp": true }, @@ -46671,7 +47510,9 @@ "region": "France", "hostname": "fr835.nordvpn.com", "number": 835, - "ip": "37.19.217.27", + "ips": [ + "37.19.217.27" + ], "tcp": true, "udp": true }, @@ -46679,7 +47520,9 @@ "region": "France", "hostname": "fr836.nordvpn.com", "number": 836, - "ip": "37.19.217.30", + "ips": [ + "37.19.217.30" + ], "tcp": true, "udp": true }, @@ -46687,7 +47530,9 @@ "region": "France", "hostname": "fr837.nordvpn.com", "number": 837, - "ip": "37.19.217.33", + "ips": [ + "37.19.217.33" + ], "tcp": true, "udp": true }, @@ -46695,7 +47540,9 @@ "region": "France", "hostname": "fr838.nordvpn.com", "number": 838, - "ip": "37.19.217.36", + "ips": [ + "37.19.217.36" + ], "tcp": true, "udp": true }, @@ -46703,7 +47550,9 @@ "region": "France", "hostname": "fr839.nordvpn.com", "number": 839, - "ip": "138.199.16.21", + "ips": [ + "138.199.16.21" + ], "tcp": true, "udp": true }, @@ -46711,7 +47560,9 @@ "region": "France", "hostname": "fr840.nordvpn.com", "number": 840, - "ip": "82.102.18.11", + "ips": [ + "82.102.18.11" + ], "tcp": true, "udp": true }, @@ -46719,7 +47570,169 @@ "region": "France", "hostname": "fr841.nordvpn.com", "number": 841, - "ip": "194.59.249.179", + "ips": [ + "194.59.249.179" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr842.nordvpn.com", + "number": 842, + "ips": [ + "178.249.212.5" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr843.nordvpn.com", + "number": 843, + "ips": [ + "178.249.212.30" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr844.nordvpn.com", + "number": 844, + "ips": [ + "178.249.212.25" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr845.nordvpn.com", + "number": 845, + "ips": [ + "178.249.212.20" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr846.nordvpn.com", + "number": 846, + "ips": [ + "178.249.212.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr847.nordvpn.com", + "number": 847, + "ips": [ + "178.249.212.15" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr848.nordvpn.com", + "number": 848, + "ips": [ + "178.249.212.1" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr849.nordvpn.com", + "number": 849, + "ips": [ + "178.249.212.10" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr852.nordvpn.com", + "number": 852, + "ips": [ + "178.249.212.45" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr853.nordvpn.com", + "number": 853, + "ips": [ + "178.249.212.50" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr854.nordvpn.com", + "number": 854, + "ips": [ + "178.249.212.55" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr855.nordvpn.com", + "number": 855, + "ips": [ + "138.199.15.66" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr856.nordvpn.com", + "number": 856, + "ips": [ + "138.199.15.76" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr857.nordvpn.com", + "number": 857, + "ips": [ + "138.199.15.81" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr858.nordvpn.com", + "number": 858, + "ips": [ + "178.249.212.40" + ], + "tcp": true, + "udp": true + }, + { + "region": "France", + "hostname": "fr859.nordvpn.com", + "number": 859, + "ips": [ + "138.199.15.71" + ], "tcp": true, "udp": true }, @@ -46727,7 +47740,9 @@ "region": "Georgia", "hostname": "ge9.nordvpn.com", "number": 9, - "ip": "91.239.206.147", + "ips": [ + "91.239.206.147" + ], "tcp": true, "udp": true }, @@ -46735,7 +47750,9 @@ "region": "Georgia", "hostname": "ge10.nordvpn.com", "number": 10, - "ip": "91.239.206.148", + "ips": [ + "91.239.206.148" + ], "tcp": true, "udp": true }, @@ -46743,7 +47760,9 @@ "region": "Georgia", "hostname": "ge11.nordvpn.com", "number": 11, - "ip": "91.239.206.180", + "ips": [ + "91.239.206.180" + ], "tcp": true, "udp": true }, @@ -46751,7 +47770,9 @@ "region": "Georgia", "hostname": "ge12.nordvpn.com", "number": 12, - "ip": "91.239.206.182", + "ips": [ + "91.239.206.182" + ], "tcp": true, "udp": true }, @@ -46759,7 +47780,9 @@ "region": "Germany", "hostname": "de507.nordvpn.com", "number": 507, - "ip": "185.130.184.115", + "ips": [ + "185.130.184.115" + ], "tcp": true, "udp": true }, @@ -46767,7 +47790,9 @@ "region": "Germany", "hostname": "de508.nordvpn.com", "number": 508, - "ip": "185.130.184.116", + "ips": [ + "185.130.184.116" + ], "tcp": true, "udp": true }, @@ -46775,7 +47800,9 @@ "region": "Germany", "hostname": "de509.nordvpn.com", "number": 509, - "ip": "185.130.184.117", + "ips": [ + "185.130.184.117" + ], "tcp": true, "udp": true }, @@ -46783,7 +47810,9 @@ "region": "Germany", "hostname": "de510.nordvpn.com", "number": 510, - "ip": "185.130.184.118", + "ips": [ + "185.130.184.118" + ], "tcp": true, "udp": true }, @@ -46791,7 +47820,9 @@ "region": "Germany", "hostname": "de545.nordvpn.com", "number": 545, - "ip": "195.206.106.35", + "ips": [ + "195.206.106.35" + ], "tcp": true, "udp": true }, @@ -46799,7 +47830,9 @@ "region": "Germany", "hostname": "de654.nordvpn.com", "number": 654, - "ip": "194.31.54.3", + "ips": [ + "194.31.54.3" + ], "tcp": true, "udp": true }, @@ -46807,7 +47840,9 @@ "region": "Germany", "hostname": "de655.nordvpn.com", "number": 655, - "ip": "194.31.54.4", + "ips": [ + "194.31.54.4" + ], "tcp": true, "udp": true }, @@ -46815,7 +47850,9 @@ "region": "Germany", "hostname": "de656.nordvpn.com", "number": 656, - "ip": "37.120.223.99", + "ips": [ + "37.120.223.99" + ], "tcp": true, "udp": true }, @@ -46823,7 +47860,9 @@ "region": "Germany", "hostname": "de675.nordvpn.com", "number": 675, - "ip": "37.120.223.115", + "ips": [ + "37.120.223.115" + ], "tcp": true, "udp": true }, @@ -46831,7 +47870,9 @@ "region": "Germany", "hostname": "de676.nordvpn.com", "number": 676, - "ip": "37.120.223.116", + "ips": [ + "37.120.223.116" + ], "tcp": true, "udp": true }, @@ -46839,7 +47880,9 @@ "region": "Germany", "hostname": "de677.nordvpn.com", "number": 677, - "ip": "195.181.170.209", + "ips": [ + "195.181.170.209" + ], "tcp": true, "udp": true }, @@ -46847,7 +47890,9 @@ "region": "Germany", "hostname": "de678.nordvpn.com", "number": 678, - "ip": "195.181.170.210", + "ips": [ + "195.181.170.210" + ], "tcp": true, "udp": true }, @@ -46855,15 +47900,19 @@ "region": "Germany", "hostname": "de679.nordvpn.com", "number": 679, - "ip": "195.181.170.216", + "ips": [ + "195.181.170.216" + ], "tcp": true, "udp": true }, { "region": "Germany", - "hostname": "de695.nordvpn.com", - "number": 695, - "ip": "37.120.217.219", + "hostname": "de680.nordvpn.com", + "number": 680, + "ips": [ + "195.181.170.217" + ], "tcp": true, "udp": true }, @@ -46871,23 +47920,9 @@ "region": "Germany", "hostname": "de750.nordvpn.com", "number": 750, - "ip": "5.180.62.120", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de759.nordvpn.com", - "number": 759, - "ip": "217.138.216.43", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de760.nordvpn.com", - "number": 760, - "ip": "217.138.216.51", + "ips": [ + "5.180.62.120" + ], "tcp": true, "udp": true }, @@ -46895,7 +47930,9 @@ "region": "Germany", "hostname": "de775.nordvpn.com", "number": 775, - "ip": "196.240.57.99", + "ips": [ + "196.240.57.99" + ], "tcp": true, "udp": true }, @@ -46903,7 +47940,9 @@ "region": "Germany", "hostname": "de776.nordvpn.com", "number": 776, - "ip": "196.240.57.107", + "ips": [ + "196.240.57.107" + ], "tcp": true, "udp": true }, @@ -46911,7 +47950,9 @@ "region": "Germany", "hostname": "de777.nordvpn.com", "number": 777, - "ip": "196.240.57.115", + "ips": [ + "196.240.57.115" + ], "tcp": true, "udp": true }, @@ -46919,31 +47960,9 @@ "region": "Germany", "hostname": "de778.nordvpn.com", "number": 778, - "ip": "196.240.57.123", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de779.nordvpn.com", - "number": 779, - "ip": "83.97.23.11", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de780.nordvpn.com", - "number": 780, - "ip": "89.249.64.195", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de781.nordvpn.com", - "number": 781, - "ip": "83.97.23.3", + "ips": [ + "196.240.57.123" + ], "tcp": true, "udp": true }, @@ -46951,7 +47970,9 @@ "region": "Germany", "hostname": "de785.nordvpn.com", "number": 785, - "ip": "5.180.62.123", + "ips": [ + "5.180.62.123" + ], "tcp": true, "udp": true }, @@ -46959,7 +47980,9 @@ "region": "Germany", "hostname": "de786.nordvpn.com", "number": 786, - "ip": "5.180.62.126", + "ips": [ + "5.180.62.126" + ], "tcp": true, "udp": true }, @@ -46967,7 +47990,9 @@ "region": "Germany", "hostname": "de787.nordvpn.com", "number": 787, - "ip": "5.180.62.129", + "ips": [ + "5.180.62.129" + ], "tcp": true, "udp": true }, @@ -46975,7 +48000,9 @@ "region": "Germany", "hostname": "de788.nordvpn.com", "number": 788, - "ip": "5.180.62.132", + "ips": [ + "5.180.62.132" + ], "tcp": true, "udp": true }, @@ -46983,31 +48010,9 @@ "region": "Germany", "hostname": "de789.nordvpn.com", "number": 789, - "ip": "5.180.62.135", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de790.nordvpn.com", - "number": 790, - "ip": "83.143.245.67", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de791.nordvpn.com", - "number": 791, - "ip": "83.97.23.19", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de792.nordvpn.com", - "number": 792, - "ip": "83.97.23.27", + "ips": [ + "5.180.62.135" + ], "tcp": true, "udp": true }, @@ -47015,7 +48020,9 @@ "region": "Germany", "hostname": "de793.nordvpn.com", "number": 793, - "ip": "212.103.50.43", + "ips": [ + "212.103.50.43" + ], "tcp": true, "udp": true }, @@ -47023,31 +48030,9 @@ "region": "Germany", "hostname": "de794.nordvpn.com", "number": 794, - "ip": "212.103.50.51", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de796.nordvpn.com", - "number": 796, - "ip": "83.97.23.35", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de797.nordvpn.com", - "number": 797, - "ip": "83.97.23.43", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de798.nordvpn.com", - "number": 798, - "ip": "83.97.23.51", + "ips": [ + "212.103.50.51" + ], "tcp": true, "udp": true }, @@ -47055,7 +48040,9 @@ "region": "Germany", "hostname": "de799.nordvpn.com", "number": 799, - "ip": "195.181.170.204", + "ips": [ + "195.181.170.204" + ], "tcp": true, "udp": true }, @@ -47063,7 +48050,9 @@ "region": "Germany", "hostname": "de800.nordvpn.com", "number": 800, - "ip": "195.181.170.194", + "ips": [ + "195.181.170.194" + ], "tcp": true, "udp": true }, @@ -47071,7 +48060,9 @@ "region": "Germany", "hostname": "de801.nordvpn.com", "number": 801, - "ip": "195.181.170.199", + "ips": [ + "195.181.170.199" + ], "tcp": true, "udp": true }, @@ -47079,7 +48070,9 @@ "region": "Germany", "hostname": "de804.nordvpn.com", "number": 804, - "ip": "196.240.57.155", + "ips": [ + "196.240.57.155" + ], "tcp": true, "udp": true }, @@ -47087,7 +48080,9 @@ "region": "Germany", "hostname": "de805.nordvpn.com", "number": 805, - "ip": "196.240.57.163", + "ips": [ + "196.240.57.163" + ], "tcp": true, "udp": true }, @@ -47095,7 +48090,9 @@ "region": "Germany", "hostname": "de806.nordvpn.com", "number": 806, - "ip": "196.240.57.171", + "ips": [ + "196.240.57.171" + ], "tcp": true, "udp": true }, @@ -47103,7 +48100,9 @@ "region": "Germany", "hostname": "de807.nordvpn.com", "number": 807, - "ip": "196.240.57.179", + "ips": [ + "196.240.57.179" + ], "tcp": true, "udp": true }, @@ -47111,7 +48110,9 @@ "region": "Germany", "hostname": "de808.nordvpn.com", "number": 808, - "ip": "196.240.57.187", + "ips": [ + "196.240.57.187" + ], "tcp": true, "udp": true }, @@ -47119,7 +48120,9 @@ "region": "Germany", "hostname": "de809.nordvpn.com", "number": 809, - "ip": "196.240.57.195", + "ips": [ + "196.240.57.195" + ], "tcp": true, "udp": true }, @@ -47127,7 +48130,9 @@ "region": "Germany", "hostname": "de810.nordvpn.com", "number": 810, - "ip": "196.240.57.203", + "ips": [ + "196.240.57.203" + ], "tcp": true, "udp": true }, @@ -47135,7 +48140,9 @@ "region": "Germany", "hostname": "de811.nordvpn.com", "number": 811, - "ip": "196.240.57.211", + "ips": [ + "196.240.57.211" + ], "tcp": true, "udp": true }, @@ -47143,7 +48150,9 @@ "region": "Germany", "hostname": "de812.nordvpn.com", "number": 812, - "ip": "196.240.57.219", + "ips": [ + "196.240.57.219" + ], "tcp": true, "udp": true }, @@ -47151,15 +48160,9 @@ "region": "Germany", "hostname": "de813.nordvpn.com", "number": 813, - "ip": "196.240.57.227", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de814.nordvpn.com", - "number": 814, - "ip": "152.89.163.171", + "ips": [ + "196.240.57.227" + ], "tcp": true, "udp": true }, @@ -47167,7 +48170,9 @@ "region": "Germany", "hostname": "de822.nordvpn.com", "number": 822, - "ip": "5.180.62.138", + "ips": [ + "5.180.62.138" + ], "tcp": true, "udp": true }, @@ -47175,7 +48180,9 @@ "region": "Germany", "hostname": "de823.nordvpn.com", "number": 823, - "ip": "5.180.62.141", + "ips": [ + "5.180.62.141" + ], "tcp": true, "udp": true }, @@ -47183,7 +48190,9 @@ "region": "Germany", "hostname": "de824.nordvpn.com", "number": 824, - "ip": "5.180.62.144", + "ips": [ + "5.180.62.144" + ], "tcp": true, "udp": true }, @@ -47191,7 +48200,9 @@ "region": "Germany", "hostname": "de825.nordvpn.com", "number": 825, - "ip": "5.180.62.147", + "ips": [ + "5.180.62.147" + ], "tcp": true, "udp": true }, @@ -47199,7 +48210,9 @@ "region": "Germany", "hostname": "de826.nordvpn.com", "number": 826, - "ip": "5.180.62.150", + "ips": [ + "5.180.62.150" + ], "tcp": true, "udp": true }, @@ -47207,7 +48220,9 @@ "region": "Germany", "hostname": "de827.nordvpn.com", "number": 827, - "ip": "5.180.62.153", + "ips": [ + "5.180.62.153" + ], "tcp": true, "udp": true }, @@ -47215,39 +48230,9 @@ "region": "Germany", "hostname": "de828.nordvpn.com", "number": 828, - "ip": "5.180.62.156", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de841.nordvpn.com", - "number": 841, - "ip": "152.89.163.139", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de842.nordvpn.com", - "number": 842, - "ip": "152.89.163.147", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de843.nordvpn.com", - "number": 843, - "ip": "152.89.163.155", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de844.nordvpn.com", - "number": 844, - "ip": "152.89.163.163", + "ips": [ + "5.180.62.156" + ], "tcp": true, "udp": true }, @@ -47255,7 +48240,9 @@ "region": "Germany", "hostname": "de848.nordvpn.com", "number": 848, - "ip": "83.143.245.187", + "ips": [ + "83.143.245.187" + ], "tcp": true, "udp": true }, @@ -47263,7 +48250,9 @@ "region": "Germany", "hostname": "de850.nordvpn.com", "number": 850, - "ip": "82.102.16.184", + "ips": [ + "82.102.16.184" + ], "tcp": true, "udp": true }, @@ -47271,39 +48260,9 @@ "region": "Germany", "hostname": "de851.nordvpn.com", "number": 851, - "ip": "185.232.23.43", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de852.nordvpn.com", - "number": 852, - "ip": "152.89.163.107", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de853.nordvpn.com", - "number": 853, - "ip": "152.89.163.115", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de854.nordvpn.com", - "number": 854, - "ip": "152.89.163.91", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de855.nordvpn.com", - "number": 855, - "ip": "152.89.163.123", + "ips": [ + "185.232.23.43" + ], "tcp": true, "udp": true }, @@ -47311,7 +48270,9 @@ "region": "Germany", "hostname": "de857.nordvpn.com", "number": 857, - "ip": "185.216.33.3", + "ips": [ + "185.216.33.3" + ], "tcp": true, "udp": true }, @@ -47319,7 +48280,9 @@ "region": "Germany", "hostname": "de858.nordvpn.com", "number": 858, - "ip": "185.216.33.8", + "ips": [ + "185.216.33.8" + ], "tcp": true, "udp": true }, @@ -47327,7 +48290,9 @@ "region": "Germany", "hostname": "de859.nordvpn.com", "number": 859, - "ip": "185.216.33.13", + "ips": [ + "185.216.33.13" + ], "tcp": true, "udp": true }, @@ -47335,7 +48300,9 @@ "region": "Germany", "hostname": "de860.nordvpn.com", "number": 860, - "ip": "185.216.33.18", + "ips": [ + "185.216.33.18" + ], "tcp": true, "udp": true }, @@ -47343,39 +48310,9 @@ "region": "Germany", "hostname": "de861.nordvpn.com", "number": 861, - "ip": "185.216.33.23", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de863.nordvpn.com", - "number": 863, - "ip": "83.143.245.11", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de864.nordvpn.com", - "number": 864, - "ip": "152.89.163.11", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de865.nordvpn.com", - "number": 865, - "ip": "152.89.163.3", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de866.nordvpn.com", - "number": 866, - "ip": "152.89.163.99", + "ips": [ + "185.216.33.23" + ], "tcp": true, "udp": true }, @@ -47383,7 +48320,9 @@ "region": "Germany", "hostname": "de870.nordvpn.com", "number": 870, - "ip": "185.220.70.195", + "ips": [ + "185.220.70.195" + ], "tcp": true, "udp": true }, @@ -47391,7 +48330,9 @@ "region": "Germany", "hostname": "de871.nordvpn.com", "number": 871, - "ip": "185.220.70.200", + "ips": [ + "185.220.70.200" + ], "tcp": true, "udp": true }, @@ -47399,7 +48340,9 @@ "region": "Germany", "hostname": "de872.nordvpn.com", "number": 872, - "ip": "185.220.70.205", + "ips": [ + "185.220.70.205" + ], "tcp": true, "udp": true }, @@ -47407,7 +48350,9 @@ "region": "Germany", "hostname": "de873.nordvpn.com", "number": 873, - "ip": "185.220.70.210", + "ips": [ + "185.220.70.210" + ], "tcp": true, "udp": true }, @@ -47415,7 +48360,9 @@ "region": "Germany", "hostname": "de874.nordvpn.com", "number": 874, - "ip": "185.220.70.215", + "ips": [ + "185.220.70.215" + ], "tcp": true, "udp": true }, @@ -47423,7 +48370,9 @@ "region": "Germany", "hostname": "de875.nordvpn.com", "number": 875, - "ip": "185.220.70.225", + "ips": [ + "185.220.70.225" + ], "tcp": true, "udp": true }, @@ -47431,7 +48380,9 @@ "region": "Germany", "hostname": "de876.nordvpn.com", "number": 876, - "ip": "185.220.70.230", + "ips": [ + "185.220.70.230" + ], "tcp": true, "udp": true }, @@ -47439,55 +48390,9 @@ "region": "Germany", "hostname": "de877.nordvpn.com", "number": 877, - "ip": "185.220.70.235", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de878.nordvpn.com", - "number": 878, - "ip": "185.230.127.3", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de879.nordvpn.com", - "number": 879, - "ip": "185.230.127.11", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de880.nordvpn.com", - "number": 880, - "ip": "89.249.64.155", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de881.nordvpn.com", - "number": 881, - "ip": "89.249.64.163", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de884.nordvpn.com", - "number": 884, - "ip": "185.230.127.19", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de885.nordvpn.com", - "number": 885, - "ip": "193.176.86.99", + "ips": [ + "185.220.70.235" + ], "tcp": true, "udp": true }, @@ -47495,7 +48400,9 @@ "region": "Germany", "hostname": "de892.nordvpn.com", "number": 892, - "ip": "82.102.16.131", + "ips": [ + "82.102.16.131" + ], "tcp": true, "udp": true }, @@ -47503,7 +48410,9 @@ "region": "Germany", "hostname": "de893.nordvpn.com", "number": 893, - "ip": "82.102.16.136", + "ips": [ + "82.102.16.136" + ], "tcp": true, "udp": true }, @@ -47511,7 +48420,9 @@ "region": "Germany", "hostname": "de894.nordvpn.com", "number": 894, - "ip": "91.207.172.67", + "ips": [ + "91.207.172.67" + ], "tcp": true, "udp": true }, @@ -47519,15 +48430,9 @@ "region": "Germany", "hostname": "de895.nordvpn.com", "number": 895, - "ip": "91.207.172.72", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de896.nordvpn.com", - "number": 896, - "ip": "185.230.127.27", + "ips": [ + "91.207.172.72" + ], "tcp": true, "udp": true }, @@ -47535,7 +48440,9 @@ "region": "Germany", "hostname": "de903.nordvpn.com", "number": 903, - "ip": "91.207.172.77", + "ips": [ + "91.207.172.77" + ], "tcp": true, "udp": true }, @@ -47543,7 +48450,9 @@ "region": "Germany", "hostname": "de904.nordvpn.com", "number": 904, - "ip": "91.207.172.85", + "ips": [ + "91.207.172.85" + ], "tcp": true, "udp": true }, @@ -47551,7 +48460,9 @@ "region": "Germany", "hostname": "de905.nordvpn.com", "number": 905, - "ip": "91.207.172.90", + "ips": [ + "91.207.172.90" + ], "tcp": true, "udp": true }, @@ -47559,7 +48470,9 @@ "region": "Germany", "hostname": "de907.nordvpn.com", "number": 907, - "ip": "82.102.16.141", + "ips": [ + "82.102.16.141" + ], "tcp": true, "udp": true }, @@ -47567,7 +48480,9 @@ "region": "Germany", "hostname": "de908.nordvpn.com", "number": 908, - "ip": "82.102.16.146", + "ips": [ + "82.102.16.146" + ], "tcp": true, "udp": true }, @@ -47575,7 +48490,9 @@ "region": "Germany", "hostname": "de909.nordvpn.com", "number": 909, - "ip": "82.102.16.219", + "ips": [ + "82.102.16.219" + ], "tcp": true, "udp": true }, @@ -47583,7 +48500,9 @@ "region": "Germany", "hostname": "de910.nordvpn.com", "number": 910, - "ip": "82.102.16.151", + "ips": [ + "82.102.16.151" + ], "tcp": true, "udp": true }, @@ -47591,7 +48510,9 @@ "region": "Germany", "hostname": "de911.nordvpn.com", "number": 911, - "ip": "185.104.184.3", + "ips": [ + "185.104.184.3" + ], "tcp": true, "udp": true }, @@ -47599,7 +48520,9 @@ "region": "Germany", "hostname": "de912.nordvpn.com", "number": 912, - "ip": "82.102.16.227", + "ips": [ + "82.102.16.227" + ], "tcp": true, "udp": true }, @@ -47607,7 +48530,9 @@ "region": "Germany", "hostname": "de913.nordvpn.com", "number": 913, - "ip": "82.102.16.235", + "ips": [ + "82.102.16.235" + ], "tcp": true, "udp": true }, @@ -47615,7 +48540,9 @@ "region": "Germany", "hostname": "de914.nordvpn.com", "number": 914, - "ip": "89.249.65.67", + "ips": [ + "89.249.65.67" + ], "tcp": true, "udp": true }, @@ -47623,7 +48550,9 @@ "region": "Germany", "hostname": "de915.nordvpn.com", "number": 915, - "ip": "89.249.65.75", + "ips": [ + "89.249.65.75" + ], "tcp": true, "udp": true }, @@ -47631,7 +48560,9 @@ "region": "Germany", "hostname": "de916.nordvpn.com", "number": 916, - "ip": "89.249.65.83", + "ips": [ + "89.249.65.83" + ], "tcp": true, "udp": true }, @@ -47639,7 +48570,9 @@ "region": "Germany", "hostname": "de917.nordvpn.com", "number": 917, - "ip": "89.249.65.99", + "ips": [ + "89.249.65.99" + ], "tcp": true, "udp": true }, @@ -47647,7 +48580,9 @@ "region": "Germany", "hostname": "de918.nordvpn.com", "number": 918, - "ip": "89.249.65.107", + "ips": [ + "89.249.65.107" + ], "tcp": true, "udp": true }, @@ -47655,7 +48590,9 @@ "region": "Germany", "hostname": "de919.nordvpn.com", "number": 919, - "ip": "89.249.65.115", + "ips": [ + "89.249.65.115" + ], "tcp": true, "udp": true }, @@ -47663,7 +48600,9 @@ "region": "Germany", "hostname": "de920.nordvpn.com", "number": 920, - "ip": "77.243.181.195", + "ips": [ + "77.243.181.195" + ], "tcp": true, "udp": true }, @@ -47671,7 +48610,9 @@ "region": "Germany", "hostname": "de921.nordvpn.com", "number": 921, - "ip": "196.240.57.11", + "ips": [ + "196.240.57.11" + ], "tcp": true, "udp": true }, @@ -47679,7 +48620,9 @@ "region": "Germany", "hostname": "de922.nordvpn.com", "number": 922, - "ip": "196.240.57.19", + "ips": [ + "196.240.57.19" + ], "tcp": true, "udp": true }, @@ -47687,7 +48630,9 @@ "region": "Germany", "hostname": "de923.nordvpn.com", "number": 923, - "ip": "196.240.57.35", + "ips": [ + "196.240.57.35" + ], "tcp": true, "udp": true }, @@ -47695,7 +48640,9 @@ "region": "Germany", "hostname": "de924.nordvpn.com", "number": 924, - "ip": "196.240.57.43", + "ips": [ + "196.240.57.43" + ], "tcp": true, "udp": true }, @@ -47703,7 +48650,9 @@ "region": "Germany", "hostname": "de925.nordvpn.com", "number": 925, - "ip": "196.240.57.51", + "ips": [ + "196.240.57.51" + ], "tcp": true, "udp": true }, @@ -47711,7 +48660,9 @@ "region": "Germany", "hostname": "de934.nordvpn.com", "number": 934, - "ip": "5.180.62.3", + "ips": [ + "5.180.62.3" + ], "tcp": true, "udp": true }, @@ -47719,7 +48670,9 @@ "region": "Germany", "hostname": "de935.nordvpn.com", "number": 935, - "ip": "5.180.62.6", + "ips": [ + "5.180.62.6" + ], "tcp": true, "udp": true }, @@ -47727,7 +48680,9 @@ "region": "Germany", "hostname": "de936.nordvpn.com", "number": 936, - "ip": "196.240.57.59", + "ips": [ + "196.240.57.59" + ], "tcp": true, "udp": true }, @@ -47735,7 +48690,9 @@ "region": "Germany", "hostname": "de937.nordvpn.com", "number": 937, - "ip": "196.240.57.67", + "ips": [ + "196.240.57.67" + ], "tcp": true, "udp": true }, @@ -47743,31 +48700,9 @@ "region": "Germany", "hostname": "de938.nordvpn.com", "number": 938, - "ip": "196.240.57.75", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de939.nordvpn.com", - "number": 939, - "ip": "37.120.217.195", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de940.nordvpn.com", - "number": 940, - "ip": "37.120.217.203", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de941.nordvpn.com", - "number": 941, - "ip": "37.120.217.211", + "ips": [ + "196.240.57.75" + ], "tcp": true, "udp": true }, @@ -47775,7 +48710,9 @@ "region": "Germany", "hostname": "de942.nordvpn.com", "number": 942, - "ip": "5.180.62.9", + "ips": [ + "5.180.62.9" + ], "tcp": true, "udp": true }, @@ -47783,7 +48720,9 @@ "region": "Germany", "hostname": "de943.nordvpn.com", "number": 943, - "ip": "5.180.62.12", + "ips": [ + "5.180.62.12" + ], "tcp": true, "udp": true }, @@ -47791,7 +48730,9 @@ "region": "Germany", "hostname": "de944.nordvpn.com", "number": 944, - "ip": "5.180.62.15", + "ips": [ + "5.180.62.15" + ], "tcp": true, "udp": true }, @@ -47799,7 +48740,9 @@ "region": "Germany", "hostname": "de945.nordvpn.com", "number": 945, - "ip": "5.180.62.18", + "ips": [ + "5.180.62.18" + ], "tcp": true, "udp": true }, @@ -47807,7 +48750,9 @@ "region": "Germany", "hostname": "de946.nordvpn.com", "number": 946, - "ip": "5.180.62.21", + "ips": [ + "5.180.62.21" + ], "tcp": true, "udp": true }, @@ -47815,7 +48760,9 @@ "region": "Germany", "hostname": "de947.nordvpn.com", "number": 947, - "ip": "5.180.62.24", + "ips": [ + "5.180.62.24" + ], "tcp": true, "udp": true }, @@ -47823,7 +48770,9 @@ "region": "Germany", "hostname": "de948.nordvpn.com", "number": 948, - "ip": "5.180.62.27", + "ips": [ + "5.180.62.27" + ], "tcp": true, "udp": true }, @@ -47831,7 +48780,9 @@ "region": "Germany", "hostname": "de949.nordvpn.com", "number": 949, - "ip": "5.180.62.30", + "ips": [ + "5.180.62.30" + ], "tcp": true, "udp": true }, @@ -47839,7 +48790,9 @@ "region": "Germany", "hostname": "de950.nordvpn.com", "number": 950, - "ip": "5.180.62.33", + "ips": [ + "5.180.62.33" + ], "tcp": true, "udp": true }, @@ -47847,79 +48800,9 @@ "region": "Germany", "hostname": "de951.nordvpn.com", "number": 951, - "ip": "5.180.62.36", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de952.nordvpn.com", - "number": 952, - "ip": "37.120.217.227", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de953.nordvpn.com", - "number": 953, - "ip": "37.120.217.251", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de954.nordvpn.com", - "number": 954, - "ip": "152.89.163.203", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de955.nordvpn.com", - "number": 955, - "ip": "83.143.245.3", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de956.nordvpn.com", - "number": 956, - "ip": "217.138.216.3", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de957.nordvpn.com", - "number": 957, - "ip": "217.138.216.11", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de958.nordvpn.com", - "number": 958, - "ip": "217.138.216.19", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de959.nordvpn.com", - "number": 959, - "ip": "217.138.216.27", - "tcp": true, - "udp": true - }, - { - "region": "Germany", - "hostname": "de960.nordvpn.com", - "number": 960, - "ip": "217.138.216.35", + "ips": [ + "5.180.62.36" + ], "tcp": true, "udp": true }, @@ -47927,7 +48810,9 @@ "region": "Germany", "hostname": "de961.nordvpn.com", "number": 961, - "ip": "5.180.62.39", + "ips": [ + "5.180.62.39" + ], "tcp": true, "udp": true }, @@ -47935,7 +48820,9 @@ "region": "Germany", "hostname": "de962.nordvpn.com", "number": 962, - "ip": "5.180.62.42", + "ips": [ + "5.180.62.42" + ], "tcp": true, "udp": true }, @@ -47943,7 +48830,9 @@ "region": "Germany", "hostname": "de963.nordvpn.com", "number": 963, - "ip": "5.180.62.45", + "ips": [ + "5.180.62.45" + ], "tcp": true, "udp": true }, @@ -47951,7 +48840,9 @@ "region": "Germany", "hostname": "de964.nordvpn.com", "number": 964, - "ip": "5.180.62.48", + "ips": [ + "5.180.62.48" + ], "tcp": true, "udp": true }, @@ -47959,7 +48850,9 @@ "region": "Germany", "hostname": "de965.nordvpn.com", "number": 965, - "ip": "5.180.62.51", + "ips": [ + "5.180.62.51" + ], "tcp": true, "udp": true }, @@ -47967,7 +48860,9 @@ "region": "Germany", "hostname": "de966.nordvpn.com", "number": 966, - "ip": "5.180.62.54", + "ips": [ + "5.180.62.54" + ], "tcp": true, "udp": true }, @@ -47975,7 +48870,9 @@ "region": "Germany", "hostname": "de967.nordvpn.com", "number": 967, - "ip": "5.180.62.57", + "ips": [ + "5.180.62.57" + ], "tcp": true, "udp": true }, @@ -47983,7 +48880,9 @@ "region": "Germany", "hostname": "de968.nordvpn.com", "number": 968, - "ip": "5.180.62.60", + "ips": [ + "5.180.62.60" + ], "tcp": true, "udp": true }, @@ -47991,7 +48890,9 @@ "region": "Germany", "hostname": "de969.nordvpn.com", "number": 969, - "ip": "5.180.62.63", + "ips": [ + "5.180.62.63" + ], "tcp": true, "udp": true }, @@ -47999,7 +48900,9 @@ "region": "Germany", "hostname": "de970.nordvpn.com", "number": 970, - "ip": "5.180.62.66", + "ips": [ + "5.180.62.66" + ], "tcp": true, "udp": true }, @@ -48007,7 +48910,9 @@ "region": "Germany", "hostname": "de971.nordvpn.com", "number": 971, - "ip": "5.180.62.69", + "ips": [ + "5.180.62.69" + ], "tcp": true, "udp": true }, @@ -48015,7 +48920,9 @@ "region": "Germany", "hostname": "de972.nordvpn.com", "number": 972, - "ip": "5.180.62.72", + "ips": [ + "5.180.62.72" + ], "tcp": true, "udp": true }, @@ -48023,7 +48930,9 @@ "region": "Germany", "hostname": "de973.nordvpn.com", "number": 973, - "ip": "5.180.62.75", + "ips": [ + "5.180.62.75" + ], "tcp": true, "udp": true }, @@ -48031,7 +48940,9 @@ "region": "Germany", "hostname": "de974.nordvpn.com", "number": 974, - "ip": "5.180.62.78", + "ips": [ + "5.180.62.78" + ], "tcp": true, "udp": true }, @@ -48039,7 +48950,9 @@ "region": "Germany", "hostname": "de975.nordvpn.com", "number": 975, - "ip": "5.180.62.81", + "ips": [ + "5.180.62.81" + ], "tcp": true, "udp": true }, @@ -48047,7 +48960,9 @@ "region": "Germany", "hostname": "de976.nordvpn.com", "number": 976, - "ip": "5.180.62.84", + "ips": [ + "5.180.62.84" + ], "tcp": true, "udp": true }, @@ -48055,7 +48970,9 @@ "region": "Germany", "hostname": "de977.nordvpn.com", "number": 977, - "ip": "5.180.62.87", + "ips": [ + "5.180.62.87" + ], "tcp": true, "udp": true }, @@ -48063,7 +48980,9 @@ "region": "Germany", "hostname": "de978.nordvpn.com", "number": 978, - "ip": "5.180.62.90", + "ips": [ + "5.180.62.90" + ], "tcp": true, "udp": true }, @@ -48071,7 +48990,9 @@ "region": "Germany", "hostname": "de983.nordvpn.com", "number": 983, - "ip": "5.180.62.93", + "ips": [ + "5.180.62.93" + ], "tcp": true, "udp": true }, @@ -48079,7 +49000,9 @@ "region": "Germany", "hostname": "de984.nordvpn.com", "number": 984, - "ip": "5.180.62.96", + "ips": [ + "5.180.62.96" + ], "tcp": true, "udp": true }, @@ -48087,7 +49010,9 @@ "region": "Germany", "hostname": "de985.nordvpn.com", "number": 985, - "ip": "5.180.62.99", + "ips": [ + "5.180.62.99" + ], "tcp": true, "udp": true }, @@ -48095,7 +49020,9 @@ "region": "Germany", "hostname": "de986.nordvpn.com", "number": 986, - "ip": "5.180.62.102", + "ips": [ + "5.180.62.102" + ], "tcp": true, "udp": true }, @@ -48103,7 +49030,9 @@ "region": "Germany", "hostname": "de987.nordvpn.com", "number": 987, - "ip": "5.180.62.105", + "ips": [ + "5.180.62.105" + ], "tcp": true, "udp": true }, @@ -48111,7 +49040,9 @@ "region": "Germany", "hostname": "de988.nordvpn.com", "number": 988, - "ip": "5.180.62.108", + "ips": [ + "5.180.62.108" + ], "tcp": true, "udp": true }, @@ -48119,7 +49050,9 @@ "region": "Germany", "hostname": "de989.nordvpn.com", "number": 989, - "ip": "5.180.62.111", + "ips": [ + "5.180.62.111" + ], "tcp": true, "udp": true }, @@ -48127,7 +49060,9 @@ "region": "Germany", "hostname": "de990.nordvpn.com", "number": 990, - "ip": "5.180.62.114", + "ips": [ + "5.180.62.114" + ], "tcp": true, "udp": true }, @@ -48135,7 +49070,9 @@ "region": "Germany", "hostname": "de991.nordvpn.com", "number": 991, - "ip": "5.180.62.117", + "ips": [ + "5.180.62.117" + ], "tcp": true, "udp": true }, @@ -48143,7 +49080,9 @@ "region": "Germany", "hostname": "de1003.nordvpn.com", "number": 1003, - "ip": "83.143.245.179", + "ips": [ + "83.143.245.179" + ], "tcp": true, "udp": true }, @@ -48151,7 +49090,9 @@ "region": "Germany", "hostname": "de1004.nordvpn.com", "number": 1004, - "ip": "82.102.16.179", + "ips": [ + "82.102.16.179" + ], "tcp": true, "udp": true }, @@ -48159,7 +49100,9 @@ "region": "Germany", "hostname": "de1008.nordvpn.com", "number": 1008, - "ip": "185.220.70.67", + "ips": [ + "185.220.70.67" + ], "tcp": true, "udp": true }, @@ -48167,7 +49110,9 @@ "region": "Germany", "hostname": "de1009.nordvpn.com", "number": 1009, - "ip": "185.220.70.220", + "ips": [ + "185.220.70.220" + ], "tcp": true, "udp": true }, @@ -48175,7 +49120,9 @@ "region": "Germany", "hostname": "de1011.nordvpn.com", "number": 1011, - "ip": "89.249.65.91", + "ips": [ + "89.249.65.91" + ], "tcp": true, "udp": true }, @@ -48183,7 +49130,9 @@ "region": "Germany", "hostname": "de1017.nordvpn.com", "number": 1017, - "ip": "5.180.62.173", + "ips": [ + "5.180.62.173" + ], "tcp": true, "udp": true }, @@ -48191,7 +49140,9 @@ "region": "Germany", "hostname": "de1018.nordvpn.com", "number": 1018, - "ip": "5.180.62.174", + "ips": [ + "5.180.62.174" + ], "tcp": true, "udp": true }, @@ -48199,7 +49150,9 @@ "region": "Germany", "hostname": "de1019.nordvpn.com", "number": 1019, - "ip": "5.180.62.175", + "ips": [ + "5.180.62.175" + ], "tcp": true, "udp": true }, @@ -48207,7 +49160,9 @@ "region": "Germany", "hostname": "de1020.nordvpn.com", "number": 1020, - "ip": "5.180.62.176", + "ips": [ + "5.180.62.176" + ], "tcp": true, "udp": true }, @@ -48215,7 +49170,9 @@ "region": "Germany", "hostname": "de1021.nordvpn.com", "number": 1021, - "ip": "5.180.62.177", + "ips": [ + "5.180.62.177" + ], "tcp": true, "udp": true }, @@ -48223,7 +49180,9 @@ "region": "Germany", "hostname": "de1022.nordvpn.com", "number": 1022, - "ip": "5.180.62.178", + "ips": [ + "5.180.62.178" + ], "tcp": true, "udp": true }, @@ -48231,7 +49190,9 @@ "region": "Germany", "hostname": "de1023.nordvpn.com", "number": 1023, - "ip": "5.180.62.179", + "ips": [ + "5.180.62.179" + ], "tcp": true, "udp": true }, @@ -48239,7 +49200,9 @@ "region": "Germany", "hostname": "de1024.nordvpn.com", "number": 1024, - "ip": "5.180.62.180", + "ips": [ + "5.180.62.180" + ], "tcp": true, "udp": true }, @@ -48247,7 +49210,9 @@ "region": "Germany", "hostname": "de1025.nordvpn.com", "number": 1025, - "ip": "5.180.62.181", + "ips": [ + "5.180.62.181" + ], "tcp": true, "udp": true }, @@ -48255,7 +49220,9 @@ "region": "Germany", "hostname": "de1026.nordvpn.com", "number": 1026, - "ip": "5.180.62.182", + "ips": [ + "5.180.62.182" + ], "tcp": true, "udp": true }, @@ -48263,7 +49230,9 @@ "region": "Germany", "hostname": "de1027.nordvpn.com", "number": 1027, - "ip": "185.196.22.1", + "ips": [ + "185.196.22.1" + ], "tcp": true, "udp": true }, @@ -48271,7 +49240,9 @@ "region": "Germany", "hostname": "de1028.nordvpn.com", "number": 1028, - "ip": "185.196.22.2", + "ips": [ + "185.196.22.2" + ], "tcp": true, "udp": true }, @@ -48279,7 +49250,9 @@ "region": "Germany", "hostname": "de1029.nordvpn.com", "number": 1029, - "ip": "185.196.22.3", + "ips": [ + "185.196.22.3" + ], "tcp": true, "udp": true }, @@ -48287,7 +49260,9 @@ "region": "Germany", "hostname": "de1030.nordvpn.com", "number": 1030, - "ip": "185.196.22.4", + "ips": [ + "185.196.22.4" + ], "tcp": true, "udp": true }, @@ -48295,7 +49270,9 @@ "region": "Germany", "hostname": "de1031.nordvpn.com", "number": 1031, - "ip": "185.196.22.5", + "ips": [ + "185.196.22.5" + ], "tcp": true, "udp": true }, @@ -48303,7 +49280,9 @@ "region": "Germany", "hostname": "de1032.nordvpn.com", "number": 1032, - "ip": "185.196.22.6", + "ips": [ + "185.196.22.6" + ], "tcp": true, "udp": true }, @@ -48311,7 +49290,9 @@ "region": "Germany", "hostname": "de1033.nordvpn.com", "number": 1033, - "ip": "185.196.22.7", + "ips": [ + "185.196.22.7" + ], "tcp": true, "udp": true }, @@ -48319,7 +49300,9 @@ "region": "Germany", "hostname": "de1034.nordvpn.com", "number": 1034, - "ip": "185.196.22.8", + "ips": [ + "185.196.22.8" + ], "tcp": true, "udp": true }, @@ -48327,7 +49310,9 @@ "region": "Germany", "hostname": "de1035.nordvpn.com", "number": 1035, - "ip": "185.196.22.9", + "ips": [ + "185.196.22.9" + ], "tcp": true, "udp": true }, @@ -48335,7 +49320,9 @@ "region": "Germany", "hostname": "de1036.nordvpn.com", "number": 1036, - "ip": "185.196.22.10", + "ips": [ + "185.196.22.10" + ], "tcp": true, "udp": true }, @@ -48343,7 +49330,9 @@ "region": "Germany", "hostname": "de1037.nordvpn.com", "number": 1037, - "ip": "185.196.22.11", + "ips": [ + "185.196.22.11" + ], "tcp": true, "udp": true }, @@ -48351,7 +49340,9 @@ "region": "Germany", "hostname": "de1038.nordvpn.com", "number": 1038, - "ip": "185.196.22.12", + "ips": [ + "185.196.22.12" + ], "tcp": true, "udp": true }, @@ -48359,7 +49350,9 @@ "region": "Germany", "hostname": "de1039.nordvpn.com", "number": 1039, - "ip": "185.196.22.159", + "ips": [ + "185.196.22.159" + ], "tcp": true, "udp": true }, @@ -48367,7 +49360,9 @@ "region": "Germany", "hostname": "de1040.nordvpn.com", "number": 1040, - "ip": "185.196.22.166", + "ips": [ + "185.196.22.166" + ], "tcp": true, "udp": true }, @@ -48375,7 +49370,9 @@ "region": "Germany", "hostname": "de1041.nordvpn.com", "number": 1041, - "ip": "185.196.22.173", + "ips": [ + "185.196.22.173" + ], "tcp": true, "udp": true }, @@ -48383,7 +49380,9 @@ "region": "Germany", "hostname": "de1042.nordvpn.com", "number": 1042, - "ip": "185.196.22.180", + "ips": [ + "185.196.22.180" + ], "tcp": true, "udp": true }, @@ -48391,7 +49390,9 @@ "region": "Germany", "hostname": "de1043.nordvpn.com", "number": 1043, - "ip": "185.196.22.187", + "ips": [ + "185.196.22.187" + ], "tcp": true, "udp": true }, @@ -48399,7 +49400,9 @@ "region": "Germany", "hostname": "de1044.nordvpn.com", "number": 1044, - "ip": "185.196.22.194", + "ips": [ + "185.196.22.194" + ], "tcp": true, "udp": true }, @@ -48407,7 +49410,9 @@ "region": "Germany", "hostname": "de1045.nordvpn.com", "number": 1045, - "ip": "185.196.22.201", + "ips": [ + "185.196.22.201" + ], "tcp": true, "udp": true }, @@ -48415,7 +49420,9 @@ "region": "Germany", "hostname": "de1046.nordvpn.com", "number": 1046, - "ip": "185.196.22.208", + "ips": [ + "185.196.22.208" + ], "tcp": true, "udp": true }, @@ -48423,7 +49430,9 @@ "region": "Germany", "hostname": "de1047.nordvpn.com", "number": 1047, - "ip": "185.196.22.215", + "ips": [ + "185.196.22.215" + ], "tcp": true, "udp": true }, @@ -48431,7 +49440,9 @@ "region": "Germany", "hostname": "de1052.nordvpn.com", "number": 1052, - "ip": "185.104.184.211", + "ips": [ + "185.104.184.211" + ], "tcp": true, "udp": true }, @@ -48439,7 +49450,9 @@ "region": "Germany", "hostname": "de1053.nordvpn.com", "number": 1053, - "ip": "185.220.70.240", + "ips": [ + "185.220.70.240" + ], "tcp": true, "udp": true }, @@ -48447,7 +49460,9 @@ "region": "Germany", "hostname": "de1054.nordvpn.com", "number": 1054, - "ip": "45.87.212.3", + "ips": [ + "45.87.212.3" + ], "tcp": true, "udp": true }, @@ -48455,7 +49470,9 @@ "region": "Germany", "hostname": "de1055.nordvpn.com", "number": 1055, - "ip": "45.87.212.11", + "ips": [ + "45.87.212.11" + ], "tcp": true, "udp": true }, @@ -48463,7 +49480,9 @@ "region": "Germany", "hostname": "de1056.nordvpn.com", "number": 1056, - "ip": "146.70.62.227", + "ips": [ + "146.70.62.227" + ], "tcp": true, "udp": true }, @@ -48471,7 +49490,9 @@ "region": "Germany", "hostname": "de1057.nordvpn.com", "number": 1057, - "ip": "146.70.62.235", + "ips": [ + "146.70.62.235" + ], "tcp": true, "udp": true }, @@ -48479,7 +49500,9 @@ "region": "Germany", "hostname": "de1058.nordvpn.com", "number": 1058, - "ip": "146.70.62.243", + "ips": [ + "146.70.62.243" + ], "tcp": true, "udp": true }, @@ -48487,7 +49510,9 @@ "region": "Germany", "hostname": "de1059.nordvpn.com", "number": 1059, - "ip": "146.70.62.251", + "ips": [ + "146.70.62.251" + ], "tcp": true, "udp": true }, @@ -48495,7 +49520,9 @@ "region": "Germany", "hostname": "de1060.nordvpn.com", "number": 1060, - "ip": "37.120.197.35", + "ips": [ + "37.120.197.35" + ], "tcp": true, "udp": true }, @@ -48503,7 +49530,9 @@ "region": "Germany", "hostname": "de1061.nordvpn.com", "number": 1061, - "ip": "37.120.197.43", + "ips": [ + "37.120.197.43" + ], "tcp": true, "udp": true }, @@ -48511,7 +49540,9 @@ "region": "Germany", "hostname": "de1062.nordvpn.com", "number": 1062, - "ip": "37.120.197.51", + "ips": [ + "37.120.197.51" + ], "tcp": true, "udp": true }, @@ -48519,7 +49550,9 @@ "region": "Germany", "hostname": "de1063.nordvpn.com", "number": 1063, - "ip": "45.141.152.59", + "ips": [ + "45.141.152.59" + ], "tcp": true, "udp": true }, @@ -48527,7 +49560,9 @@ "region": "Germany", "hostname": "de1064.nordvpn.com", "number": 1064, - "ip": "45.141.152.51", + "ips": [ + "45.141.152.51" + ], "tcp": true, "udp": true }, @@ -48535,7 +49570,9 @@ "region": "Germany", "hostname": "de1065.nordvpn.com", "number": 1065, - "ip": "45.141.152.35", + "ips": [ + "45.141.152.35" + ], "tcp": true, "udp": true }, @@ -48543,7 +49580,349 @@ "region": "Germany", "hostname": "de1066.nordvpn.com", "number": 1066, - "ip": "45.141.152.43", + "ips": [ + "45.141.152.43" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1067.nordvpn.com", + "number": 1067, + "ips": [ + "196.240.57.83" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1068.nordvpn.com", + "number": 1068, + "ips": [ + "196.240.57.91" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1069.nordvpn.com", + "number": 1069, + "ips": [ + "194.233.96.10" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1070.nordvpn.com", + "number": 1070, + "ips": [ + "194.233.96.17" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1071.nordvpn.com", + "number": 1071, + "ips": [ + "194.233.96.24" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1072.nordvpn.com", + "number": 1072, + "ips": [ + "194.233.96.31" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1073.nordvpn.com", + "number": 1073, + "ips": [ + "194.233.96.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1074.nordvpn.com", + "number": 1074, + "ips": [ + "194.233.96.45" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1075.nordvpn.com", + "number": 1075, + "ips": [ + "194.233.96.52" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1076.nordvpn.com", + "number": 1076, + "ips": [ + "194.233.96.59" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1077.nordvpn.com", + "number": 1077, + "ips": [ + "194.233.96.66" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1078.nordvpn.com", + "number": 1078, + "ips": [ + "194.233.96.73" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1079.nordvpn.com", + "number": 1079, + "ips": [ + "194.233.96.80" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1080.nordvpn.com", + "number": 1080, + "ips": [ + "194.233.96.87" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1081.nordvpn.com", + "number": 1081, + "ips": [ + "194.233.96.94" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1082.nordvpn.com", + "number": 1082, + "ips": [ + "194.233.96.101" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1083.nordvpn.com", + "number": 1083, + "ips": [ + "194.233.96.108" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1084.nordvpn.com", + "number": 1084, + "ips": [ + "194.233.96.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1085.nordvpn.com", + "number": 1085, + "ips": [ + "194.233.96.122" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1086.nordvpn.com", + "number": 1086, + "ips": [ + "194.233.96.129" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1087.nordvpn.com", + "number": 1087, + "ips": [ + "194.233.96.136" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1088.nordvpn.com", + "number": 1088, + "ips": [ + "194.233.96.143" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1089.nordvpn.com", + "number": 1089, + "ips": [ + "194.233.96.149" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1090.nordvpn.com", + "number": 1090, + "ips": [ + "194.233.96.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1091.nordvpn.com", + "number": 1091, + "ips": [ + "194.233.96.161" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1092.nordvpn.com", + "number": 1092, + "ips": [ + "194.233.96.167" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1093.nordvpn.com", + "number": 1093, + "ips": [ + "194.233.96.173" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1094.nordvpn.com", + "number": 1094, + "ips": [ + "194.233.96.179" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1095.nordvpn.com", + "number": 1095, + "ips": [ + "194.233.96.185" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1096.nordvpn.com", + "number": 1096, + "ips": [ + "194.233.96.191" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1097.nordvpn.com", + "number": 1097, + "ips": [ + "194.233.96.197" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1098.nordvpn.com", + "number": 1098, + "ips": [ + "194.233.96.235" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1099.nordvpn.com", + "number": 1099, + "ips": [ + "194.233.96.241" + ], + "tcp": true, + "udp": true + }, + { + "region": "Germany", + "hostname": "de1100.nordvpn.com", + "number": 1100, + "ips": [ + "194.233.96.248" + ], "tcp": true, "udp": true }, @@ -48551,7 +49930,9 @@ "region": "Greece", "hostname": "gr23.nordvpn.com", "number": 23, - "ip": "185.134.114.44", + "ips": [ + "185.134.114.44" + ], "tcp": true, "udp": true }, @@ -48559,7 +49940,9 @@ "region": "Greece", "hostname": "gr26.nordvpn.com", "number": 26, - "ip": "194.150.167.77", + "ips": [ + "194.150.167.77" + ], "tcp": true, "udp": true }, @@ -48567,7 +49950,9 @@ "region": "Greece", "hostname": "gr27.nordvpn.com", "number": 27, - "ip": "194.150.167.79", + "ips": [ + "194.150.167.79" + ], "tcp": true, "udp": true }, @@ -48575,7 +49960,9 @@ "region": "Greece", "hostname": "gr28.nordvpn.com", "number": 28, - "ip": "194.150.167.81", + "ips": [ + "194.150.167.81" + ], "tcp": true, "udp": true }, @@ -48583,7 +49970,9 @@ "region": "Greece", "hostname": "gr29.nordvpn.com", "number": 29, - "ip": "194.150.167.83", + "ips": [ + "194.150.167.83" + ], "tcp": true, "udp": true }, @@ -48591,7 +49980,9 @@ "region": "Greece", "hostname": "gr30.nordvpn.com", "number": 30, - "ip": "194.150.167.85", + "ips": [ + "194.150.167.85" + ], "tcp": true, "udp": true }, @@ -48599,7 +49990,9 @@ "region": "Greece", "hostname": "gr31.nordvpn.com", "number": 31, - "ip": "194.150.167.87", + "ips": [ + "194.150.167.87" + ], "tcp": true, "udp": true }, @@ -48607,7 +50000,9 @@ "region": "Greece", "hostname": "gr32.nordvpn.com", "number": 32, - "ip": "185.134.114.7", + "ips": [ + "185.134.114.7" + ], "tcp": true, "udp": true }, @@ -48615,7 +50010,9 @@ "region": "Greece", "hostname": "gr33.nordvpn.com", "number": 33, - "ip": "185.134.114.3", + "ips": [ + "185.134.114.3" + ], "tcp": true, "udp": true }, @@ -48623,7 +50020,9 @@ "region": "Greece", "hostname": "gr36.nordvpn.com", "number": 36, - "ip": "185.134.114.10", + "ips": [ + "185.134.114.10" + ], "tcp": true, "udp": true }, @@ -48631,7 +50030,9 @@ "region": "Greece", "hostname": "gr37.nordvpn.com", "number": 37, - "ip": "185.51.134.235", + "ips": [ + "185.51.134.235" + ], "tcp": true, "udp": true }, @@ -48639,7 +50040,9 @@ "region": "Greece", "hostname": "gr38.nordvpn.com", "number": 38, - "ip": "185.134.114.12", + "ips": [ + "185.134.114.12" + ], "tcp": true, "udp": true }, @@ -48647,7 +50050,9 @@ "region": "Greece", "hostname": "gr39.nordvpn.com", "number": 39, - "ip": "185.134.114.35", + "ips": [ + "185.134.114.35" + ], "tcp": true, "udp": true }, @@ -48655,7 +50060,9 @@ "region": "Greece", "hostname": "gr40.nordvpn.com", "number": 40, - "ip": "185.134.114.38", + "ips": [ + "185.134.114.38" + ], "tcp": true, "udp": true }, @@ -48663,7 +50070,9 @@ "region": "Greece", "hostname": "gr41.nordvpn.com", "number": 41, - "ip": "185.134.114.41", + "ips": [ + "185.134.114.41" + ], "tcp": true, "udp": true }, @@ -48671,15 +50080,59 @@ "region": "Greece", "hostname": "gr42.nordvpn.com", "number": 42, - "ip": "194.150.167.72", + "ips": [ + "194.150.167.72" + ], + "tcp": true, + "udp": true + }, + { + "region": "Greece", + "hostname": "gr43.nordvpn.com", + "number": 43, + "ips": [ + "194.150.167.145" + ], + "tcp": true, + "udp": true + }, + { + "region": "Greece", + "hostname": "gr44.nordvpn.com", + "number": 44, + "ips": [ + "194.150.167.153" + ], + "tcp": true, + "udp": true + }, + { + "region": "Greece", + "hostname": "gr45.nordvpn.com", + "number": 45, + "ips": [ + "194.150.167.161" + ], + "tcp": true, + "udp": true + }, + { + "region": "Greece", + "hostname": "gr46.nordvpn.com", + "number": 46, + "ips": [ + "194.150.167.169" + ], "tcp": true, "udp": true }, { "region": "Hong Kong", - "hostname": "hk-tw2.nordvpn.com", - "number": 2, - "ip": "91.245.255.227", + "hostname": "hk-tw3.nordvpn.com", + "number": 3, + "ips": [ + "84.17.37.79" + ], "tcp": true, "udp": true }, @@ -48687,7 +50140,9 @@ "region": "Hong Kong", "hostname": "hk203.nordvpn.com", "number": 203, - "ip": "84.17.37.226", + "ips": [ + "84.17.37.226" + ], "tcp": true, "udp": true }, @@ -48695,7 +50150,9 @@ "region": "Hong Kong", "hostname": "hk204.nordvpn.com", "number": 204, - "ip": "84.17.37.229", + "ips": [ + "84.17.37.229" + ], "tcp": true, "udp": true }, @@ -48703,7 +50160,9 @@ "region": "Hong Kong", "hostname": "hk205.nordvpn.com", "number": 205, - "ip": "84.17.37.232", + "ips": [ + "84.17.37.232" + ], "tcp": true, "udp": true }, @@ -48711,7 +50170,9 @@ "region": "Hong Kong", "hostname": "hk206.nordvpn.com", "number": 206, - "ip": "84.17.37.235", + "ips": [ + "84.17.37.235" + ], "tcp": true, "udp": true }, @@ -48719,7 +50180,9 @@ "region": "Hong Kong", "hostname": "hk207.nordvpn.com", "number": 207, - "ip": "84.17.37.238", + "ips": [ + "84.17.37.238" + ], "tcp": true, "udp": true }, @@ -48727,7 +50190,9 @@ "region": "Hong Kong", "hostname": "hk208.nordvpn.com", "number": 208, - "ip": "84.17.37.241", + "ips": [ + "84.17.37.241" + ], "tcp": true, "udp": true }, @@ -48735,7 +50200,9 @@ "region": "Hong Kong", "hostname": "hk209.nordvpn.com", "number": 209, - "ip": "84.17.37.244", + "ips": [ + "84.17.37.244" + ], "tcp": true, "udp": true }, @@ -48743,7 +50210,9 @@ "region": "Hong Kong", "hostname": "hk210.nordvpn.com", "number": 210, - "ip": "84.17.37.247", + "ips": [ + "84.17.37.247" + ], "tcp": true, "udp": true }, @@ -48751,7 +50220,9 @@ "region": "Hong Kong", "hostname": "hk211.nordvpn.com", "number": 211, - "ip": "84.17.37.250", + "ips": [ + "84.17.37.250" + ], "tcp": true, "udp": true }, @@ -48759,7 +50230,9 @@ "region": "Hong Kong", "hostname": "hk212.nordvpn.com", "number": 212, - "ip": "84.17.37.86", + "ips": [ + "84.17.37.86" + ], "tcp": true, "udp": true }, @@ -48767,7 +50240,9 @@ "region": "Hong Kong", "hostname": "hk248.nordvpn.com", "number": 248, - "ip": "84.17.57.34", + "ips": [ + "84.17.57.34" + ], "tcp": true, "udp": true }, @@ -48775,7 +50250,9 @@ "region": "Hong Kong", "hostname": "hk249.nordvpn.com", "number": 249, - "ip": "84.17.57.44", + "ips": [ + "84.17.57.44" + ], "tcp": true, "udp": true }, @@ -48783,7 +50260,9 @@ "region": "Hong Kong", "hostname": "hk250.nordvpn.com", "number": 250, - "ip": "84.17.57.54", + "ips": [ + "84.17.57.54" + ], "tcp": true, "udp": true }, @@ -48791,7 +50270,9 @@ "region": "Hong Kong", "hostname": "hk252.nordvpn.com", "number": 252, - "ip": "84.17.57.49", + "ips": [ + "84.17.57.49" + ], "tcp": true, "udp": true }, @@ -48799,7 +50280,9 @@ "region": "Hong Kong", "hostname": "hk253.nordvpn.com", "number": 253, - "ip": "84.17.57.39", + "ips": [ + "84.17.57.39" + ], "tcp": true, "udp": true }, @@ -48807,7 +50290,9 @@ "region": "Hong Kong", "hostname": "hk254.nordvpn.com", "number": 254, - "ip": "84.17.37.66", + "ips": [ + "84.17.37.66" + ], "tcp": true, "udp": true }, @@ -48815,7 +50300,9 @@ "region": "Hong Kong", "hostname": "hk255.nordvpn.com", "number": 255, - "ip": "84.17.37.71", + "ips": [ + "84.17.37.71" + ], "tcp": true, "udp": true }, @@ -48823,7 +50310,9 @@ "region": "Hong Kong", "hostname": "hk256.nordvpn.com", "number": 256, - "ip": "84.17.37.76", + "ips": [ + "84.17.37.76" + ], "tcp": true, "udp": true }, @@ -48831,7 +50320,9 @@ "region": "Hong Kong", "hostname": "hk257.nordvpn.com", "number": 257, - "ip": "84.17.37.81", + "ips": [ + "84.17.37.81" + ], "tcp": true, "udp": true }, @@ -48839,7 +50330,9 @@ "region": "Hong Kong", "hostname": "hk265.nordvpn.com", "number": 265, - "ip": "185.225.234.1", + "ips": [ + "185.225.234.1" + ], "tcp": true, "udp": true }, @@ -48847,7 +50340,9 @@ "region": "Hong Kong", "hostname": "hk266.nordvpn.com", "number": 266, - "ip": "185.225.234.3", + "ips": [ + "185.225.234.3" + ], "tcp": true, "udp": true }, @@ -48855,7 +50350,9 @@ "region": "Hong Kong", "hostname": "hk267.nordvpn.com", "number": 267, - "ip": "185.225.234.5", + "ips": [ + "185.225.234.5" + ], "tcp": true, "udp": true }, @@ -48863,7 +50360,9 @@ "region": "Hong Kong", "hostname": "hk268.nordvpn.com", "number": 268, - "ip": "185.225.234.7", + "ips": [ + "185.225.234.7" + ], "tcp": true, "udp": true }, @@ -48871,7 +50370,9 @@ "region": "Hong Kong", "hostname": "hk269.nordvpn.com", "number": 269, - "ip": "185.225.234.9", + "ips": [ + "185.225.234.9" + ], "tcp": true, "udp": true }, @@ -48879,7 +50380,9 @@ "region": "Hong Kong", "hostname": "hk270.nordvpn.com", "number": 270, - "ip": "185.225.234.11", + "ips": [ + "185.225.234.11" + ], "tcp": true, "udp": true }, @@ -48887,7 +50390,9 @@ "region": "Hong Kong", "hostname": "hk271.nordvpn.com", "number": 271, - "ip": "185.225.234.13", + "ips": [ + "185.225.234.13" + ], "tcp": true, "udp": true }, @@ -48895,7 +50400,9 @@ "region": "Hong Kong", "hostname": "hk272.nordvpn.com", "number": 272, - "ip": "185.225.234.15", + "ips": [ + "185.225.234.15" + ], "tcp": true, "udp": true }, @@ -48903,7 +50410,9 @@ "region": "Hong Kong", "hostname": "hk273.nordvpn.com", "number": 273, - "ip": "185.225.234.17", + "ips": [ + "185.225.234.17" + ], "tcp": true, "udp": true }, @@ -48911,7 +50420,9 @@ "region": "Hong Kong", "hostname": "hk274.nordvpn.com", "number": 274, - "ip": "185.225.234.19", + "ips": [ + "185.225.234.19" + ], "tcp": true, "udp": true }, @@ -48919,7 +50430,9 @@ "region": "Hong Kong", "hostname": "hk275.nordvpn.com", "number": 275, - "ip": "185.225.234.21", + "ips": [ + "185.225.234.21" + ], "tcp": true, "udp": true }, @@ -48927,7 +50440,9 @@ "region": "Hong Kong", "hostname": "hk276.nordvpn.com", "number": 276, - "ip": "185.225.234.23", + "ips": [ + "185.225.234.23" + ], "tcp": true, "udp": true }, @@ -48935,7 +50450,9 @@ "region": "Hong Kong", "hostname": "hk277.nordvpn.com", "number": 277, - "ip": "156.146.45.8", + "ips": [ + "156.146.45.8" + ], "tcp": true, "udp": true }, @@ -48943,7 +50460,9 @@ "region": "Hong Kong", "hostname": "hk278.nordvpn.com", "number": 278, - "ip": "156.146.45.13", + "ips": [ + "156.146.45.13" + ], "tcp": true, "udp": true }, @@ -48951,7 +50470,9 @@ "region": "Hong Kong", "hostname": "hk279.nordvpn.com", "number": 279, - "ip": "156.146.45.18", + "ips": [ + "156.146.45.18" + ], "tcp": true, "udp": true }, @@ -48959,7 +50480,89 @@ "region": "Hong Kong", "hostname": "hk280.nordvpn.com", "number": 280, - "ip": "156.146.45.23", + "ips": [ + "156.146.45.23" + ], + "tcp": true, + "udp": true + }, + { + "region": "Hong Kong", + "hostname": "hk283.nordvpn.com", + "number": 283, + "ips": [ + "202.165.70.19" + ], + "tcp": true, + "udp": true + }, + { + "region": "Hong Kong", + "hostname": "hk284.nordvpn.com", + "number": 284, + "ips": [ + "202.165.70.27" + ], + "tcp": true, + "udp": true + }, + { + "region": "Hong Kong", + "hostname": "hk285.nordvpn.com", + "number": 285, + "ips": [ + "202.165.70.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "Hong Kong", + "hostname": "hk286.nordvpn.com", + "number": 286, + "ips": [ + "202.165.70.43" + ], + "tcp": true, + "udp": true + }, + { + "region": "Hong Kong", + "hostname": "hk287.nordvpn.com", + "number": 287, + "ips": [ + "202.165.70.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "Hong Kong", + "hostname": "hk288.nordvpn.com", + "number": 288, + "ips": [ + "202.165.70.59" + ], + "tcp": true, + "udp": true + }, + { + "region": "Hong Kong", + "hostname": "hk289.nordvpn.com", + "number": 289, + "ips": [ + "202.165.70.67" + ], + "tcp": true, + "udp": true + }, + { + "region": "Hong Kong", + "hostname": "hk290.nordvpn.com", + "number": 290, + "ips": [ + "202.165.70.75" + ], "tcp": true, "udp": true }, @@ -48967,7 +50570,9 @@ "region": "Hungary", "hostname": "hu47.nordvpn.com", "number": 47, - "ip": "217.138.192.99", + "ips": [ + "217.138.192.99" + ], "tcp": true, "udp": true }, @@ -48975,7 +50580,9 @@ "region": "Hungary", "hostname": "hu48.nordvpn.com", "number": 48, - "ip": "185.189.114.28", + "ips": [ + "185.189.114.28" + ], "tcp": true, "udp": true }, @@ -48983,7 +50590,9 @@ "region": "Hungary", "hostname": "hu49.nordvpn.com", "number": 49, - "ip": "217.138.192.83", + "ips": [ + "217.138.192.83" + ], "tcp": true, "udp": true }, @@ -48991,7 +50600,9 @@ "region": "Hungary", "hostname": "hu50.nordvpn.com", "number": 50, - "ip": "185.128.26.171", + "ips": [ + "185.128.26.171" + ], "tcp": true, "udp": true }, @@ -48999,7 +50610,9 @@ "region": "Hungary", "hostname": "hu51.nordvpn.com", "number": 51, - "ip": "185.189.114.243", + "ips": [ + "185.189.114.243" + ], "tcp": true, "udp": true }, @@ -49007,7 +50620,9 @@ "region": "Hungary", "hostname": "hu52.nordvpn.com", "number": 52, - "ip": "185.189.114.235", + "ips": [ + "185.189.114.235" + ], "tcp": true, "udp": true }, @@ -49015,7 +50630,9 @@ "region": "Hungary", "hostname": "hu53.nordvpn.com", "number": 53, - "ip": "185.128.26.51", + "ips": [ + "185.128.26.51" + ], "tcp": true, "udp": true }, @@ -49023,7 +50640,9 @@ "region": "Hungary", "hostname": "hu54.nordvpn.com", "number": 54, - "ip": "185.128.26.59", + "ips": [ + "185.128.26.59" + ], "tcp": true, "udp": true }, @@ -49031,7 +50650,9 @@ "region": "Hungary", "hostname": "hu55.nordvpn.com", "number": 55, - "ip": "185.104.187.75", + "ips": [ + "185.104.187.75" + ], "tcp": true, "udp": true }, @@ -49039,7 +50660,9 @@ "region": "Hungary", "hostname": "hu56.nordvpn.com", "number": 56, - "ip": "37.120.144.115", + "ips": [ + "37.120.144.115" + ], "tcp": true, "udp": true }, @@ -49047,7 +50670,9 @@ "region": "Hungary", "hostname": "hu57.nordvpn.com", "number": 57, - "ip": "37.120.144.123", + "ips": [ + "37.120.144.123" + ], "tcp": true, "udp": true }, @@ -49055,7 +50680,9 @@ "region": "Hungary", "hostname": "hu58.nordvpn.com", "number": 58, - "ip": "217.138.192.27", + "ips": [ + "217.138.192.27" + ], "tcp": true, "udp": true }, @@ -49063,7 +50690,9 @@ "region": "Hungary", "hostname": "hu59.nordvpn.com", "number": 59, - "ip": "217.138.192.35", + "ips": [ + "217.138.192.35" + ], "tcp": true, "udp": true }, @@ -49071,7 +50700,9 @@ "region": "Hungary", "hostname": "hu60.nordvpn.com", "number": 60, - "ip": "217.138.192.43", + "ips": [ + "217.138.192.43" + ], "tcp": true, "udp": true }, @@ -49079,7 +50710,9 @@ "region": "Hungary", "hostname": "hu61.nordvpn.com", "number": 61, - "ip": "217.138.192.51", + "ips": [ + "217.138.192.51" + ], "tcp": true, "udp": true }, @@ -49087,7 +50720,9 @@ "region": "Hungary", "hostname": "hu62.nordvpn.com", "number": 62, - "ip": "217.138.192.59", + "ips": [ + "217.138.192.59" + ], "tcp": true, "udp": true }, @@ -49095,7 +50730,9 @@ "region": "Hungary", "hostname": "hu63.nordvpn.com", "number": 63, - "ip": "217.138.192.67", + "ips": [ + "217.138.192.67" + ], "tcp": true, "udp": true }, @@ -49103,7 +50740,9 @@ "region": "Hungary", "hostname": "hu64.nordvpn.com", "number": 64, - "ip": "217.138.192.75", + "ips": [ + "217.138.192.75" + ], "tcp": true, "udp": true }, @@ -49111,7 +50750,9 @@ "region": "Hungary", "hostname": "hu65.nordvpn.com", "number": 65, - "ip": "217.138.192.91", + "ips": [ + "217.138.192.91" + ], "tcp": true, "udp": true }, @@ -49119,7 +50760,9 @@ "region": "Iceland", "hostname": "is48.nordvpn.com", "number": 48, - "ip": "45.133.192.67", + "ips": [ + "45.133.192.67" + ], "tcp": true, "udp": true }, @@ -49127,7 +50770,9 @@ "region": "Iceland", "hostname": "is49.nordvpn.com", "number": 49, - "ip": "45.133.192.99", + "ips": [ + "45.133.192.99" + ], "tcp": true, "udp": true }, @@ -49135,7 +50780,9 @@ "region": "Iceland", "hostname": "is50.nordvpn.com", "number": 50, - "ip": "45.133.192.83", + "ips": [ + "45.133.192.83" + ], "tcp": true, "udp": true }, @@ -49143,7 +50790,9 @@ "region": "Iceland", "hostname": "is51.nordvpn.com", "number": 51, - "ip": "45.133.192.107", + "ips": [ + "45.133.192.107" + ], "tcp": true, "udp": true }, @@ -49151,7 +50800,9 @@ "region": "Iceland", "hostname": "is52.nordvpn.com", "number": 52, - "ip": "45.133.192.115", + "ips": [ + "45.133.192.115" + ], "tcp": true, "udp": true }, @@ -49159,7 +50810,9 @@ "region": "Iceland", "hostname": "is53.nordvpn.com", "number": 53, - "ip": "45.133.192.123", + "ips": [ + "45.133.192.123" + ], "tcp": true, "udp": true }, @@ -49167,7 +50820,9 @@ "region": "Iceland", "hostname": "is54.nordvpn.com", "number": 54, - "ip": "45.133.192.75", + "ips": [ + "45.133.192.75" + ], "tcp": true, "udp": true }, @@ -49175,7 +50830,9 @@ "region": "Iceland", "hostname": "is55.nordvpn.com", "number": 55, - "ip": "45.133.192.91", + "ips": [ + "45.133.192.91" + ], "tcp": true, "udp": true }, @@ -49183,7 +50840,9 @@ "region": "Iceland", "hostname": "is56.nordvpn.com", "number": 56, - "ip": "45.133.192.131", + "ips": [ + "45.133.192.131" + ], "tcp": true, "udp": true }, @@ -49191,7 +50850,9 @@ "region": "Iceland", "hostname": "is57.nordvpn.com", "number": 57, - "ip": "45.133.192.139", + "ips": [ + "45.133.192.139" + ], "tcp": true, "udp": true }, @@ -49199,7 +50860,9 @@ "region": "Iceland", "hostname": "is58.nordvpn.com", "number": 58, - "ip": "45.133.192.147", + "ips": [ + "45.133.192.147" + ], "tcp": true, "udp": true }, @@ -49207,7 +50870,9 @@ "region": "Iceland", "hostname": "is59.nordvpn.com", "number": 59, - "ip": "45.133.192.155", + "ips": [ + "45.133.192.155" + ], "tcp": true, "udp": true }, @@ -49215,7 +50880,9 @@ "region": "Iceland", "hostname": "is60.nordvpn.com", "number": 60, - "ip": "45.133.192.195", + "ips": [ + "45.133.192.195" + ], "tcp": true, "udp": true }, @@ -49223,7 +50890,9 @@ "region": "Iceland", "hostname": "is61.nordvpn.com", "number": 61, - "ip": "45.133.192.203", + "ips": [ + "45.133.192.203" + ], "tcp": true, "udp": true }, @@ -49231,279 +50900,9 @@ "region": "Iceland", "hostname": "is62.nordvpn.com", "number": 62, - "ip": "45.133.193.203", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in62.nordvpn.com", - "number": 62, - "ip": "165.231.253.43", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in77.nordvpn.com", - "number": 77, - "ip": "165.231.251.131", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in78.nordvpn.com", - "number": 78, - "ip": "165.231.253.19", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in79.nordvpn.com", - "number": 79, - "ip": "165.231.253.27", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in80.nordvpn.com", - "number": 80, - "ip": "165.231.253.35", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in81.nordvpn.com", - "number": 81, - "ip": "165.231.253.51", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in82.nordvpn.com", - "number": 82, - "ip": "165.231.253.59", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in83.nordvpn.com", - "number": 83, - "ip": "165.231.253.67", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in84.nordvpn.com", - "number": 84, - "ip": "165.231.253.187", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in85.nordvpn.com", - "number": 85, - "ip": "165.231.253.11", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in86.nordvpn.com", - "number": 86, - "ip": "165.231.251.139", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in87.nordvpn.com", - "number": 87, - "ip": "165.231.253.107", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in88.nordvpn.com", - "number": 88, - "ip": "165.231.253.83", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in89.nordvpn.com", - "number": 89, - "ip": "165.231.253.91", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in90.nordvpn.com", - "number": 90, - "ip": "165.231.253.99", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in91.nordvpn.com", - "number": 91, - "ip": "165.231.253.139", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in92.nordvpn.com", - "number": 92, - "ip": "165.231.253.203", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in93.nordvpn.com", - "number": 93, - "ip": "165.231.253.195", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in94.nordvpn.com", - "number": 94, - "ip": "103.156.50.129", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in95.nordvpn.com", - "number": 95, - "ip": "103.156.50.137", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in96.nordvpn.com", - "number": 96, - "ip": "103.156.50.145", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in97.nordvpn.com", - "number": 97, - "ip": "103.156.50.153", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in98.nordvpn.com", - "number": 98, - "ip": "103.156.50.178", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in99.nordvpn.com", - "number": 99, - "ip": "103.156.50.186", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in100.nordvpn.com", - "number": 100, - "ip": "103.156.50.58", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in101.nordvpn.com", - "number": 101, - "ip": "103.156.50.226", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in102.nordvpn.com", - "number": 102, - "ip": "202.94.174.186", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in103.nordvpn.com", - "number": 103, - "ip": "202.94.174.168", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in104.nordvpn.com", - "number": 104, - "ip": "202.94.174.130", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in105.nordvpn.com", - "number": 105, - "ip": "202.94.174.135", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in106.nordvpn.com", - "number": 106, - "ip": "202.94.174.140", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in107.nordvpn.com", - "number": 107, - "ip": "202.94.174.145", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in108.nordvpn.com", - "number": 108, - "ip": "202.94.174.150", - "tcp": true, - "udp": true - }, - { - "region": "India", - "hostname": "in109.nordvpn.com", - "number": 109, - "ip": "103.156.50.25", + "ips": [ + "45.133.193.203" + ], "tcp": true, "udp": true }, @@ -49511,7 +50910,9 @@ "region": "India", "hostname": "in110.nordvpn.com", "number": 110, - "ip": "103.156.51.81", + "ips": [ + "103.156.51.81" + ], "tcp": true, "udp": true }, @@ -49519,7 +50920,9 @@ "region": "India", "hostname": "in111.nordvpn.com", "number": 111, - "ip": "103.156.51.89", + "ips": [ + "103.156.51.89" + ], "tcp": true, "udp": true }, @@ -49527,7 +50930,9 @@ "region": "India", "hostname": "in112.nordvpn.com", "number": 112, - "ip": "103.156.51.97", + "ips": [ + "103.156.51.97" + ], "tcp": true, "udp": true }, @@ -49535,7 +50940,9 @@ "region": "India", "hostname": "in113.nordvpn.com", "number": 113, - "ip": "103.156.51.105", + "ips": [ + "103.156.51.105" + ], "tcp": true, "udp": true }, @@ -49543,7 +50950,9 @@ "region": "India", "hostname": "in114.nordvpn.com", "number": 114, - "ip": "103.156.51.113", + "ips": [ + "103.156.51.113" + ], "tcp": true, "udp": true }, @@ -49551,7 +50960,9 @@ "region": "India", "hostname": "in115.nordvpn.com", "number": 115, - "ip": "103.156.51.121", + "ips": [ + "103.156.51.121" + ], "tcp": true, "udp": true }, @@ -49559,7 +50970,9 @@ "region": "India", "hostname": "in116.nordvpn.com", "number": 116, - "ip": "103.156.51.129", + "ips": [ + "103.156.51.129" + ], "tcp": true, "udp": true }, @@ -49567,7 +50980,9 @@ "region": "India", "hostname": "in117.nordvpn.com", "number": 117, - "ip": "103.156.51.137", + "ips": [ + "103.156.51.137" + ], "tcp": true, "udp": true }, @@ -49575,7 +50990,9 @@ "region": "India", "hostname": "in118.nordvpn.com", "number": 118, - "ip": "103.156.51.145", + "ips": [ + "103.156.51.145" + ], "tcp": true, "udp": true }, @@ -49583,127 +51000,209 @@ "region": "India", "hostname": "in119.nordvpn.com", "number": 119, - "ip": "103.156.51.153", + "ips": [ + "103.156.51.153" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id16.nordvpn.com", - "number": 16, - "ip": "103.236.151.3", + "region": "India", + "hostname": "in120.nordvpn.com", + "number": 120, + "ips": [ + "185.203.122.100" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id17.nordvpn.com", - "number": 17, - "ip": "103.120.66.70", + "region": "India", + "hostname": "in121.nordvpn.com", + "number": 121, + "ips": [ + "185.203.122.101" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id18.nordvpn.com", - "number": 18, - "ip": "103.148.242.131", + "region": "India", + "hostname": "in122.nordvpn.com", + "number": 122, + "ips": [ + "185.203.122.102" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id19.nordvpn.com", - "number": 19, - "ip": "103.148.242.134", + "region": "India", + "hostname": "in123.nordvpn.com", + "number": 123, + "ips": [ + "185.203.122.103" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id20.nordvpn.com", - "number": 20, - "ip": "103.148.242.137", + "region": "India", + "hostname": "in124.nordvpn.com", + "number": 124, + "ips": [ + "185.203.122.104" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id21.nordvpn.com", - "number": 21, - "ip": "103.148.242.140", + "region": "India", + "hostname": "in125.nordvpn.com", + "number": 125, + "ips": [ + "185.203.122.105" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id22.nordvpn.com", - "number": 22, - "ip": "103.148.242.143", + "region": "India", + "hostname": "in126.nordvpn.com", + "number": 126, + "ips": [ + "185.203.122.106" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id24.nordvpn.com", - "number": 24, - "ip": "103.60.9.75", + "region": "India", + "hostname": "in127.nordvpn.com", + "number": 127, + "ips": [ + "185.203.122.107" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id25.nordvpn.com", - "number": 25, - "ip": "103.60.9.27", + "region": "India", + "hostname": "in128.nordvpn.com", + "number": 128, + "ips": [ + "185.203.122.108" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id26.nordvpn.com", - "number": 26, - "ip": "103.120.66.67", + "region": "India", + "hostname": "in129.nordvpn.com", + "number": 129, + "ips": [ + "185.203.122.109" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id27.nordvpn.com", - "number": 27, - "ip": "103.120.66.51", + "region": "India", + "hostname": "in130.nordvpn.com", + "number": 130, + "ips": [ + "185.203.122.110" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id28.nordvpn.com", - "number": 28, - "ip": "103.120.66.99", + "region": "India", + "hostname": "in131.nordvpn.com", + "number": 131, + "ips": [ + "185.203.122.111" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id29.nordvpn.com", - "number": 29, - "ip": "103.120.66.91", + "region": "India", + "hostname": "in132.nordvpn.com", + "number": 132, + "ips": [ + "185.203.122.112" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id30.nordvpn.com", - "number": 30, - "ip": "103.120.66.83", + "region": "India", + "hostname": "in133.nordvpn.com", + "number": 133, + "ips": [ + "185.203.122.113" + ], "tcp": true, "udp": true }, { - "region": "Indonesia", - "hostname": "id31.nordvpn.com", - "number": 31, - "ip": "103.120.66.75", + "region": "India", + "hostname": "in134.nordvpn.com", + "number": 134, + "ips": [ + "185.203.122.114" + ], + "tcp": true, + "udp": true + }, + { + "region": "India", + "hostname": "in135.nordvpn.com", + "number": 135, + "ips": [ + "185.203.122.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "India", + "hostname": "in136.nordvpn.com", + "number": 136, + "ips": [ + "185.203.122.116" + ], + "tcp": true, + "udp": true + }, + { + "region": "India", + "hostname": "in137.nordvpn.com", + "number": 137, + "ips": [ + "185.203.122.117" + ], + "tcp": true, + "udp": true + }, + { + "region": "India", + "hostname": "in138.nordvpn.com", + "number": 138, + "ips": [ + "185.203.122.118" + ], + "tcp": true, + "udp": true + }, + { + "region": "India", + "hostname": "in139.nordvpn.com", + "number": 139, + "ips": [ + "185.203.122.119" + ], "tcp": true, "udp": true }, @@ -49711,7 +51210,9 @@ "region": "Indonesia", "hostname": "id32.nordvpn.com", "number": 32, - "ip": "45.249.222.251", + "ips": [ + "45.249.222.251" + ], "tcp": true, "udp": true }, @@ -49719,7 +51220,9 @@ "region": "Indonesia", "hostname": "id33.nordvpn.com", "number": 33, - "ip": "45.249.222.243", + "ips": [ + "45.249.222.243" + ], "tcp": true, "udp": true }, @@ -49727,7 +51230,9 @@ "region": "Indonesia", "hostname": "id34.nordvpn.com", "number": 34, - "ip": "45.249.222.235", + "ips": [ + "45.249.222.235" + ], "tcp": true, "udp": true }, @@ -49735,39 +51240,79 @@ "region": "Indonesia", "hostname": "id35.nordvpn.com", "number": 35, - "ip": "45.249.222.227", + "ips": [ + "45.249.222.227" + ], "tcp": true, "udp": true }, { - "region": "Ireland", - "hostname": "ie79.nordvpn.com", - "number": 79, - "ip": "84.247.48.67", + "region": "Indonesia", + "hostname": "id39.nordvpn.com", + "number": 39, + "ips": [ + "45.249.222.195" + ], "tcp": true, "udp": true }, { - "region": "Ireland", - "hostname": "ie80.nordvpn.com", - "number": 80, - "ip": "84.247.48.70", + "region": "Indonesia", + "hostname": "id40.nordvpn.com", + "number": 40, + "ips": [ + "45.249.222.187" + ], "tcp": true, "udp": true }, { - "region": "Ireland", - "hostname": "ie81.nordvpn.com", - "number": 81, - "ip": "84.247.48.73", + "region": "Indonesia", + "hostname": "id41.nordvpn.com", + "number": 41, + "ips": [ + "45.249.222.179" + ], "tcp": true, "udp": true }, { - "region": "Ireland", - "hostname": "ie82.nordvpn.com", - "number": 82, - "ip": "84.247.48.76", + "region": "Indonesia", + "hostname": "id42.nordvpn.com", + "number": 42, + "ips": [ + "45.249.222.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "Indonesia", + "hostname": "id43.nordvpn.com", + "number": 43, + "ips": [ + "45.249.222.163" + ], + "tcp": true, + "udp": true + }, + { + "region": "Indonesia", + "hostname": "id44.nordvpn.com", + "number": 44, + "ips": [ + "45.249.222.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "Indonesia", + "hostname": "id45.nordvpn.com", + "number": 45, + "ips": [ + "45.249.222.147" + ], "tcp": true, "udp": true }, @@ -49775,7 +51320,9 @@ "region": "Ireland", "hostname": "ie83.nordvpn.com", "number": 83, - "ip": "84.247.48.83", + "ips": [ + "84.247.48.83" + ], "tcp": true, "udp": true }, @@ -49783,7 +51330,9 @@ "region": "Ireland", "hostname": "ie103.nordvpn.com", "number": 103, - "ip": "217.138.222.131", + "ips": [ + "217.138.222.131" + ], "tcp": true, "udp": true }, @@ -49791,7 +51340,9 @@ "region": "Ireland", "hostname": "ie104.nordvpn.com", "number": 104, - "ip": "217.138.222.115", + "ips": [ + "217.138.222.115" + ], "tcp": true, "udp": true }, @@ -49799,7 +51350,9 @@ "region": "Ireland", "hostname": "ie105.nordvpn.com", "number": 105, - "ip": "217.138.222.123", + "ips": [ + "217.138.222.123" + ], "tcp": true, "udp": true }, @@ -49807,7 +51360,9 @@ "region": "Ireland", "hostname": "ie106.nordvpn.com", "number": 106, - "ip": "217.138.222.27", + "ips": [ + "217.138.222.27" + ], "tcp": true, "udp": true }, @@ -49815,7 +51370,9 @@ "region": "Ireland", "hostname": "ie107.nordvpn.com", "number": 107, - "ip": "217.138.222.147", + "ips": [ + "217.138.222.147" + ], "tcp": true, "udp": true }, @@ -49823,7 +51380,9 @@ "region": "Ireland", "hostname": "ie108.nordvpn.com", "number": 108, - "ip": "217.138.222.163", + "ips": [ + "217.138.222.163" + ], "tcp": true, "udp": true }, @@ -49831,7 +51390,9 @@ "region": "Ireland", "hostname": "ie109.nordvpn.com", "number": 109, - "ip": "217.138.222.171", + "ips": [ + "217.138.222.171" + ], "tcp": true, "udp": true }, @@ -49839,7 +51400,9 @@ "region": "Ireland", "hostname": "ie110.nordvpn.com", "number": 110, - "ip": "217.138.222.179", + "ips": [ + "217.138.222.179" + ], "tcp": true, "udp": true }, @@ -49847,7 +51410,9 @@ "region": "Ireland", "hostname": "ie111.nordvpn.com", "number": 111, - "ip": "217.138.222.187", + "ips": [ + "217.138.222.187" + ], "tcp": true, "udp": true }, @@ -49855,7 +51420,9 @@ "region": "Ireland", "hostname": "ie112.nordvpn.com", "number": 112, - "ip": "217.138.222.195", + "ips": [ + "217.138.222.195" + ], "tcp": true, "udp": true }, @@ -49863,7 +51430,9 @@ "region": "Ireland", "hostname": "ie113.nordvpn.com", "number": 113, - "ip": "217.138.222.203", + "ips": [ + "217.138.222.203" + ], "tcp": true, "udp": true }, @@ -49871,7 +51440,9 @@ "region": "Ireland", "hostname": "ie114.nordvpn.com", "number": 114, - "ip": "217.138.222.211", + "ips": [ + "217.138.222.211" + ], "tcp": true, "udp": true }, @@ -49879,7 +51450,9 @@ "region": "Ireland", "hostname": "ie115.nordvpn.com", "number": 115, - "ip": "217.138.222.219", + "ips": [ + "217.138.222.219" + ], "tcp": true, "udp": true }, @@ -49887,7 +51460,9 @@ "region": "Ireland", "hostname": "ie116.nordvpn.com", "number": 116, - "ip": "217.138.222.227", + "ips": [ + "217.138.222.227" + ], "tcp": true, "udp": true }, @@ -49895,7 +51470,9 @@ "region": "Ireland", "hostname": "ie117.nordvpn.com", "number": 117, - "ip": "217.138.222.235", + "ips": [ + "217.138.222.235" + ], "tcp": true, "udp": true }, @@ -49903,7 +51480,9 @@ "region": "Ireland", "hostname": "ie118.nordvpn.com", "number": 118, - "ip": "77.81.139.163", + "ips": [ + "77.81.139.163" + ], "tcp": true, "udp": true }, @@ -49911,7 +51490,9 @@ "region": "Ireland", "hostname": "ie119.nordvpn.com", "number": 119, - "ip": "77.81.139.171", + "ips": [ + "77.81.139.171" + ], "tcp": true, "udp": true }, @@ -49919,7 +51500,9 @@ "region": "Ireland", "hostname": "ie120.nordvpn.com", "number": 120, - "ip": "77.81.139.179", + "ips": [ + "77.81.139.179" + ], "tcp": true, "udp": true }, @@ -49927,7 +51510,9 @@ "region": "Ireland", "hostname": "ie121.nordvpn.com", "number": 121, - "ip": "77.81.139.187", + "ips": [ + "77.81.139.187" + ], "tcp": true, "udp": true }, @@ -49935,7 +51520,9 @@ "region": "Ireland", "hostname": "ie122.nordvpn.com", "number": 122, - "ip": "77.81.139.195", + "ips": [ + "77.81.139.195" + ], "tcp": true, "udp": true }, @@ -49943,7 +51530,9 @@ "region": "Ireland", "hostname": "ie123.nordvpn.com", "number": 123, - "ip": "77.81.139.203", + "ips": [ + "77.81.139.203" + ], "tcp": true, "udp": true }, @@ -49951,7 +51540,9 @@ "region": "Ireland", "hostname": "ie124.nordvpn.com", "number": 124, - "ip": "77.81.139.211", + "ips": [ + "77.81.139.211" + ], "tcp": true, "udp": true }, @@ -49959,7 +51550,9 @@ "region": "Ireland", "hostname": "ie125.nordvpn.com", "number": 125, - "ip": "77.81.139.219", + "ips": [ + "77.81.139.219" + ], "tcp": true, "udp": true }, @@ -49967,7 +51560,9 @@ "region": "Ireland", "hostname": "ie126.nordvpn.com", "number": 126, - "ip": "77.81.139.227", + "ips": [ + "77.81.139.227" + ], "tcp": true, "udp": true }, @@ -49975,7 +51570,9 @@ "region": "Ireland", "hostname": "ie127.nordvpn.com", "number": 127, - "ip": "77.81.139.235", + "ips": [ + "77.81.139.235" + ], "tcp": true, "udp": true }, @@ -49983,7 +51580,9 @@ "region": "Ireland", "hostname": "ie128.nordvpn.com", "number": 128, - "ip": "193.56.252.51", + "ips": [ + "193.56.252.51" + ], "tcp": true, "udp": true }, @@ -49991,7 +51590,9 @@ "region": "Ireland", "hostname": "ie129.nordvpn.com", "number": 129, - "ip": "193.56.252.59", + "ips": [ + "193.56.252.59" + ], "tcp": true, "udp": true }, @@ -49999,7 +51600,9 @@ "region": "Ireland", "hostname": "ie130.nordvpn.com", "number": 130, - "ip": "193.56.252.67", + "ips": [ + "193.56.252.67" + ], "tcp": true, "udp": true }, @@ -50007,7 +51610,9 @@ "region": "Ireland", "hostname": "ie131.nordvpn.com", "number": 131, - "ip": "193.56.252.75", + "ips": [ + "193.56.252.75" + ], "tcp": true, "udp": true }, @@ -50015,7 +51620,9 @@ "region": "Ireland", "hostname": "ie132.nordvpn.com", "number": 132, - "ip": "193.56.252.83", + "ips": [ + "193.56.252.83" + ], "tcp": true, "udp": true }, @@ -50023,7 +51630,9 @@ "region": "Ireland", "hostname": "ie133.nordvpn.com", "number": 133, - "ip": "193.56.252.91", + "ips": [ + "193.56.252.91" + ], "tcp": true, "udp": true }, @@ -50031,7 +51640,9 @@ "region": "Ireland", "hostname": "ie134.nordvpn.com", "number": 134, - "ip": "193.56.252.99", + "ips": [ + "193.56.252.99" + ], "tcp": true, "udp": true }, @@ -50039,7 +51650,9 @@ "region": "Ireland", "hostname": "ie135.nordvpn.com", "number": 135, - "ip": "193.56.252.107", + "ips": [ + "193.56.252.107" + ], "tcp": true, "udp": true }, @@ -50047,7 +51660,9 @@ "region": "Ireland", "hostname": "ie136.nordvpn.com", "number": 136, - "ip": "193.56.252.115", + "ips": [ + "193.56.252.115" + ], "tcp": true, "udp": true }, @@ -50055,7 +51670,9 @@ "region": "Ireland", "hostname": "ie137.nordvpn.com", "number": 137, - "ip": "193.56.252.123", + "ips": [ + "193.56.252.123" + ], "tcp": true, "udp": true }, @@ -50063,7 +51680,9 @@ "region": "Ireland", "hostname": "ie138.nordvpn.com", "number": 138, - "ip": "193.56.252.131", + "ips": [ + "193.56.252.131" + ], "tcp": true, "udp": true }, @@ -50071,7 +51690,9 @@ "region": "Ireland", "hostname": "ie139.nordvpn.com", "number": 139, - "ip": "193.56.252.139", + "ips": [ + "193.56.252.139" + ], "tcp": true, "udp": true }, @@ -50079,7 +51700,9 @@ "region": "Ireland", "hostname": "ie140.nordvpn.com", "number": 140, - "ip": "193.56.252.147", + "ips": [ + "193.56.252.147" + ], "tcp": true, "udp": true }, @@ -50087,7 +51710,9 @@ "region": "Ireland", "hostname": "ie141.nordvpn.com", "number": 141, - "ip": "193.56.252.155", + "ips": [ + "193.56.252.155" + ], "tcp": true, "udp": true }, @@ -50095,7 +51720,9 @@ "region": "Ireland", "hostname": "ie142.nordvpn.com", "number": 142, - "ip": "193.56.252.163", + "ips": [ + "193.56.252.163" + ], "tcp": true, "udp": true }, @@ -50103,7 +51730,9 @@ "region": "Ireland", "hostname": "ie143.nordvpn.com", "number": 143, - "ip": "193.56.252.171", + "ips": [ + "193.56.252.171" + ], "tcp": true, "udp": true }, @@ -50111,7 +51740,9 @@ "region": "Ireland", "hostname": "ie144.nordvpn.com", "number": 144, - "ip": "193.56.252.179", + "ips": [ + "193.56.252.179" + ], "tcp": true, "udp": true }, @@ -50119,7 +51750,9 @@ "region": "Ireland", "hostname": "ie145.nordvpn.com", "number": 145, - "ip": "193.56.252.187", + "ips": [ + "193.56.252.187" + ], "tcp": true, "udp": true }, @@ -50127,7 +51760,49 @@ "region": "Ireland", "hostname": "ie146.nordvpn.com", "number": 146, - "ip": "193.56.252.195", + "ips": [ + "193.56.252.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "Ireland", + "hostname": "ie149.nordvpn.com", + "number": 149, + "ips": [ + "146.70.90.3" + ], + "tcp": true, + "udp": true + }, + { + "region": "Ireland", + "hostname": "ie150.nordvpn.com", + "number": 150, + "ips": [ + "146.70.90.11" + ], + "tcp": true, + "udp": true + }, + { + "region": "Ireland", + "hostname": "ie151.nordvpn.com", + "number": 151, + "ips": [ + "146.70.90.19" + ], + "tcp": true, + "udp": true + }, + { + "region": "Ireland", + "hostname": "ie152.nordvpn.com", + "number": 152, + "ips": [ + "146.70.90.27" + ], "tcp": true, "udp": true }, @@ -50135,7 +51810,9 @@ "region": "Israel", "hostname": "il19.nordvpn.com", "number": 19, - "ip": "185.191.204.139", + "ips": [ + "185.191.204.139" + ], "tcp": true, "udp": true }, @@ -50143,7 +51820,9 @@ "region": "Israel", "hostname": "il26.nordvpn.com", "number": 26, - "ip": "31.168.98.72", + "ips": [ + "31.168.98.72" + ], "tcp": true, "udp": true }, @@ -50151,7 +51830,9 @@ "region": "Israel", "hostname": "il33.nordvpn.com", "number": 33, - "ip": "87.239.255.36", + "ips": [ + "87.239.255.36" + ], "tcp": true, "udp": true }, @@ -50159,7 +51840,9 @@ "region": "Israel", "hostname": "il38.nordvpn.com", "number": 38, - "ip": "185.191.204.132", + "ips": [ + "185.191.204.132" + ], "tcp": true, "udp": true }, @@ -50167,7 +51850,9 @@ "region": "Israel", "hostname": "il39.nordvpn.com", "number": 39, - "ip": "185.191.207.51", + "ips": [ + "185.191.207.51" + ], "tcp": true, "udp": true }, @@ -50175,7 +51860,9 @@ "region": "Israel", "hostname": "il40.nordvpn.com", "number": 40, - "ip": "185.191.207.35", + "ips": [ + "185.191.207.35" + ], "tcp": true, "udp": true }, @@ -50183,7 +51870,9 @@ "region": "Israel", "hostname": "il41.nordvpn.com", "number": 41, - "ip": "185.191.207.136", + "ips": [ + "185.191.207.136" + ], "tcp": true, "udp": true }, @@ -50191,7 +51880,9 @@ "region": "Israel", "hostname": "il42.nordvpn.com", "number": 42, - "ip": "185.191.207.56", + "ips": [ + "185.191.207.56" + ], "tcp": true, "udp": true }, @@ -50199,7 +51890,9 @@ "region": "Israel", "hostname": "il43.nordvpn.com", "number": 43, - "ip": "185.191.207.131", + "ips": [ + "185.191.207.131" + ], "tcp": true, "udp": true }, @@ -50207,15 +51900,9 @@ "region": "Israel", "hostname": "il44.nordvpn.com", "number": 44, - "ip": "185.191.207.163", - "tcp": true, - "udp": true - }, - { - "region": "Israel", - "hostname": "il45.nordvpn.com", - "number": 45, - "ip": "185.191.207.168", + "ips": [ + "185.191.207.163" + ], "tcp": true, "udp": true }, @@ -50223,7 +51910,9 @@ "region": "Israel", "hostname": "il46.nordvpn.com", "number": 46, - "ip": "185.191.207.173", + "ips": [ + "185.191.207.173" + ], "tcp": true, "udp": true }, @@ -50231,7 +51920,9 @@ "region": "Israel", "hostname": "il47.nordvpn.com", "number": 47, - "ip": "185.191.207.178", + "ips": [ + "185.191.207.178" + ], "tcp": true, "udp": true }, @@ -50239,7 +51930,9 @@ "region": "Israel", "hostname": "il49.nordvpn.com", "number": 49, - "ip": "185.191.207.102", + "ips": [ + "185.191.207.102" + ], "tcp": true, "udp": true }, @@ -50247,7 +51940,9 @@ "region": "Israel", "hostname": "il50.nordvpn.com", "number": 50, - "ip": "185.191.207.188", + "ips": [ + "185.191.207.188" + ], "tcp": true, "udp": true }, @@ -50255,7 +51950,9 @@ "region": "Israel", "hostname": "il51.nordvpn.com", "number": 51, - "ip": "185.191.207.11", + "ips": [ + "185.191.207.11" + ], "tcp": true, "udp": true }, @@ -50263,7 +51960,9 @@ "region": "Israel", "hostname": "il53.nordvpn.com", "number": 53, - "ip": "87.239.255.99", + "ips": [ + "87.239.255.99" + ], "tcp": true, "udp": true }, @@ -50271,7 +51970,29 @@ "region": "Israel", "hostname": "il54.nordvpn.com", "number": 54, - "ip": "185.191.207.87", + "ips": [ + "185.191.207.87" + ], + "tcp": true, + "udp": true + }, + { + "region": "Israel", + "hostname": "il55.nordvpn.com", + "number": 55, + "ips": [ + "185.191.204.227" + ], + "tcp": true, + "udp": true + }, + { + "region": "Israel", + "hostname": "il57.nordvpn.com", + "number": 57, + "ips": [ + "185.191.204.179" + ], "tcp": true, "udp": true }, @@ -50279,7 +52000,9 @@ "region": "Italy", "hostname": "it132.nordvpn.com", "number": 132, - "ip": "217.138.197.75", + "ips": [ + "217.138.197.75" + ], "tcp": true, "udp": true }, @@ -50287,7 +52010,9 @@ "region": "Italy", "hostname": "it146.nordvpn.com", "number": 146, - "ip": "212.102.54.108", + "ips": [ + "212.102.54.108" + ], "tcp": true, "udp": true }, @@ -50295,7 +52020,9 @@ "region": "Italy", "hostname": "it147.nordvpn.com", "number": 147, - "ip": "212.102.54.98", + "ips": [ + "212.102.54.98" + ], "tcp": true, "udp": true }, @@ -50303,7 +52030,9 @@ "region": "Italy", "hostname": "it148.nordvpn.com", "number": 148, - "ip": "212.102.54.118", + "ips": [ + "212.102.54.118" + ], "tcp": true, "udp": true }, @@ -50311,7 +52040,9 @@ "region": "Italy", "hostname": "it149.nordvpn.com", "number": 149, - "ip": "212.102.54.103", + "ips": [ + "212.102.54.103" + ], "tcp": true, "udp": true }, @@ -50319,7 +52050,9 @@ "region": "Italy", "hostname": "it150.nordvpn.com", "number": 150, - "ip": "212.102.54.113", + "ips": [ + "212.102.54.113" + ], "tcp": true, "udp": true }, @@ -50327,7 +52060,9 @@ "region": "Italy", "hostname": "it156.nordvpn.com", "number": 156, - "ip": "217.138.219.171", + "ips": [ + "217.138.219.171" + ], "tcp": true, "udp": true }, @@ -50335,7 +52070,9 @@ "region": "Italy", "hostname": "it157.nordvpn.com", "number": 157, - "ip": "217.138.219.163", + "ips": [ + "217.138.219.163" + ], "tcp": true, "udp": true }, @@ -50343,31 +52080,9 @@ "region": "Italy", "hostname": "it174.nordvpn.com", "number": 174, - "ip": "192.145.127.179", - "tcp": true, - "udp": true - }, - { - "region": "Italy", - "hostname": "it183.nordvpn.com", - "number": 183, - "ip": "84.17.59.155", - "tcp": true, - "udp": true - }, - { - "region": "Italy", - "hostname": "it184.nordvpn.com", - "number": 184, - "ip": "84.17.59.150", - "tcp": true, - "udp": true - }, - { - "region": "Italy", - "hostname": "it185.nordvpn.com", - "number": 185, - "ip": "84.17.59.142", + "ips": [ + "192.145.127.179" + ], "tcp": true, "udp": true }, @@ -50375,7 +52090,9 @@ "region": "Italy", "hostname": "it186.nordvpn.com", "number": 186, - "ip": "37.120.201.211", + "ips": [ + "37.120.201.211" + ], "tcp": true, "udp": true }, @@ -50383,7 +52100,9 @@ "region": "Italy", "hostname": "it187.nordvpn.com", "number": 187, - "ip": "37.120.201.219", + "ips": [ + "37.120.201.219" + ], "tcp": true, "udp": true }, @@ -50391,7 +52110,9 @@ "region": "Italy", "hostname": "it188.nordvpn.com", "number": 188, - "ip": "37.120.201.227", + "ips": [ + "37.120.201.227" + ], "tcp": true, "udp": true }, @@ -50399,7 +52120,9 @@ "region": "Italy", "hostname": "it189.nordvpn.com", "number": 189, - "ip": "37.120.201.235", + "ips": [ + "37.120.201.235" + ], "tcp": true, "udp": true }, @@ -50407,7 +52130,9 @@ "region": "Italy", "hostname": "it190.nordvpn.com", "number": 190, - "ip": "37.120.201.243", + "ips": [ + "37.120.201.243" + ], "tcp": true, "udp": true }, @@ -50415,7 +52140,9 @@ "region": "Italy", "hostname": "it191.nordvpn.com", "number": 191, - "ip": "37.120.201.171", + "ips": [ + "37.120.201.171" + ], "tcp": true, "udp": true }, @@ -50423,7 +52150,9 @@ "region": "Italy", "hostname": "it192.nordvpn.com", "number": 192, - "ip": "37.120.201.179", + "ips": [ + "37.120.201.179" + ], "tcp": true, "udp": true }, @@ -50431,7 +52160,9 @@ "region": "Italy", "hostname": "it193.nordvpn.com", "number": 193, - "ip": "37.120.201.187", + "ips": [ + "37.120.201.187" + ], "tcp": true, "udp": true }, @@ -50439,7 +52170,9 @@ "region": "Italy", "hostname": "it194.nordvpn.com", "number": 194, - "ip": "37.120.201.195", + "ips": [ + "37.120.201.195" + ], "tcp": true, "udp": true }, @@ -50447,7 +52180,9 @@ "region": "Italy", "hostname": "it195.nordvpn.com", "number": 195, - "ip": "37.120.201.203", + "ips": [ + "37.120.201.203" + ], "tcp": true, "udp": true }, @@ -50455,7 +52190,9 @@ "region": "Italy", "hostname": "it196.nordvpn.com", "number": 196, - "ip": "217.138.197.43", + "ips": [ + "217.138.197.43" + ], "tcp": true, "udp": true }, @@ -50463,7 +52200,9 @@ "region": "Italy", "hostname": "it197.nordvpn.com", "number": 197, - "ip": "217.138.197.51", + "ips": [ + "217.138.197.51" + ], "tcp": true, "udp": true }, @@ -50471,7 +52210,9 @@ "region": "Italy", "hostname": "it198.nordvpn.com", "number": 198, - "ip": "217.138.197.59", + "ips": [ + "217.138.197.59" + ], "tcp": true, "udp": true }, @@ -50479,7 +52220,9 @@ "region": "Italy", "hostname": "it199.nordvpn.com", "number": 199, - "ip": "217.138.197.67", + "ips": [ + "217.138.197.67" + ], "tcp": true, "udp": true }, @@ -50487,7 +52230,9 @@ "region": "Italy", "hostname": "it201.nordvpn.com", "number": 201, - "ip": "217.138.197.235", + "ips": [ + "217.138.197.235" + ], "tcp": true, "udp": true }, @@ -50495,7 +52240,9 @@ "region": "Italy", "hostname": "it203.nordvpn.com", "number": 203, - "ip": "217.138.197.243", + "ips": [ + "217.138.197.243" + ], "tcp": true, "udp": true }, @@ -50503,7 +52250,9 @@ "region": "Italy", "hostname": "it204.nordvpn.com", "number": 204, - "ip": "217.138.197.251", + "ips": [ + "217.138.197.251" + ], "tcp": true, "udp": true }, @@ -50511,7 +52260,9 @@ "region": "Italy", "hostname": "it205.nordvpn.com", "number": 205, - "ip": "217.138.219.35", + "ips": [ + "217.138.219.35" + ], "tcp": true, "udp": true }, @@ -50519,7 +52270,9 @@ "region": "Italy", "hostname": "it210.nordvpn.com", "number": 210, - "ip": "138.199.54.236", + "ips": [ + "138.199.54.236" + ], "tcp": true, "udp": true }, @@ -50527,7 +52280,9 @@ "region": "Italy", "hostname": "it211.nordvpn.com", "number": 211, - "ip": "138.199.54.231", + "ips": [ + "138.199.54.231" + ], "tcp": true, "udp": true }, @@ -50535,7 +52290,9 @@ "region": "Italy", "hostname": "it212.nordvpn.com", "number": 212, - "ip": "138.199.54.226", + "ips": [ + "138.199.54.226" + ], "tcp": true, "udp": true }, @@ -50543,7 +52300,9 @@ "region": "Italy", "hostname": "it213.nordvpn.com", "number": 213, - "ip": "146.70.73.75", + "ips": [ + "146.70.73.75" + ], "tcp": true, "udp": true }, @@ -50551,7 +52310,9 @@ "region": "Italy", "hostname": "it214.nordvpn.com", "number": 214, - "ip": "146.70.73.83", + "ips": [ + "146.70.73.83" + ], "tcp": true, "udp": true }, @@ -50559,7 +52320,9 @@ "region": "Italy", "hostname": "it215.nordvpn.com", "number": 215, - "ip": "45.9.251.27", + "ips": [ + "45.9.251.27" + ], "tcp": true, "udp": true }, @@ -50567,7 +52330,9 @@ "region": "Italy", "hostname": "it216.nordvpn.com", "number": 216, - "ip": "45.9.251.35", + "ips": [ + "45.9.251.35" + ], "tcp": true, "udp": true }, @@ -50575,7 +52340,9 @@ "region": "Italy", "hostname": "it217.nordvpn.com", "number": 217, - "ip": "82.102.21.35", + "ips": [ + "82.102.21.35" + ], "tcp": true, "udp": true }, @@ -50583,7 +52350,9 @@ "region": "Italy", "hostname": "it218.nordvpn.com", "number": 218, - "ip": "82.102.21.43", + "ips": [ + "82.102.21.43" + ], "tcp": true, "udp": true }, @@ -50591,7 +52360,9 @@ "region": "Italy", "hostname": "it219.nordvpn.com", "number": 219, - "ip": "82.102.21.123", + "ips": [ + "82.102.21.123" + ], "tcp": true, "udp": true }, @@ -50599,7 +52370,9 @@ "region": "Italy", "hostname": "it220.nordvpn.com", "number": 220, - "ip": "82.102.21.195", + "ips": [ + "82.102.21.195" + ], "tcp": true, "udp": true }, @@ -50607,7 +52380,9 @@ "region": "Italy", "hostname": "it221.nordvpn.com", "number": 221, - "ip": "95.174.64.35", + "ips": [ + "95.174.64.35" + ], "tcp": true, "udp": true }, @@ -50615,15 +52390,149 @@ "region": "Italy", "hostname": "it222.nordvpn.com", "number": 222, - "ip": "146.70.73.91", + "ips": [ + "146.70.73.91" + ], "tcp": true, "udp": true }, { - "region": "Japan", - "hostname": "jp429.nordvpn.com", - "number": 429, - "ip": "37.120.210.107", + "region": "Italy", + "hostname": "it223.nordvpn.com", + "number": 223, + "ips": [ + "138.199.54.242" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it224.nordvpn.com", + "number": 224, + "ips": [ + "138.199.54.247" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it225.nordvpn.com", + "number": 225, + "ips": [ + "178.249.211.42" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it226.nordvpn.com", + "number": 226, + "ips": [ + "178.249.211.37" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it227.nordvpn.com", + "number": 227, + "ips": [ + "178.249.211.32" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it228.nordvpn.com", + "number": 228, + "ips": [ + "178.249.211.27" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it229.nordvpn.com", + "number": 229, + "ips": [ + "178.249.211.22" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it230.nordvpn.com", + "number": 230, + "ips": [ + "178.249.211.17" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it231.nordvpn.com", + "number": 231, + "ips": [ + "178.249.211.12" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it232.nordvpn.com", + "number": 232, + "ips": [ + "178.249.211.7" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it233.nordvpn.com", + "number": 233, + "ips": [ + "178.249.211.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it237.nordvpn.com", + "number": 237, + "ips": [ + "178.249.211.58" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it238.nordvpn.com", + "number": 238, + "ips": [ + "178.249.211.53" + ], + "tcp": true, + "udp": true + }, + { + "region": "Italy", + "hostname": "it239.nordvpn.com", + "number": 239, + "ips": [ + "178.249.211.48" + ], "tcp": true, "udp": true }, @@ -50631,39 +52540,9 @@ "region": "Japan", "hostname": "jp454.nordvpn.com", "number": 454, - "ip": "89.187.161.54", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp514.nordvpn.com", - "number": 514, - "ip": "37.120.154.211", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp515.nordvpn.com", - "number": 515, - "ip": "5.181.235.107", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp516.nordvpn.com", - "number": 516, - "ip": "5.181.235.115", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp517.nordvpn.com", - "number": 517, - "ip": "5.181.235.83", + "ips": [ + "89.187.161.54" + ], "tcp": true, "udp": true }, @@ -50671,7 +52550,9 @@ "region": "Japan", "hostname": "jp518.nordvpn.com", "number": 518, - "ip": "156.146.35.115", + "ips": [ + "156.146.35.115" + ], "tcp": true, "udp": true }, @@ -50679,7 +52560,9 @@ "region": "Japan", "hostname": "jp519.nordvpn.com", "number": 519, - "ip": "212.102.50.116", + "ips": [ + "212.102.50.116" + ], "tcp": true, "udp": true }, @@ -50687,7 +52570,9 @@ "region": "Japan", "hostname": "jp520.nordvpn.com", "number": 520, - "ip": "212.102.50.119", + "ips": [ + "212.102.50.119" + ], "tcp": true, "udp": true }, @@ -50695,7 +52580,9 @@ "region": "Japan", "hostname": "jp521.nordvpn.com", "number": 521, - "ip": "212.102.50.122", + "ips": [ + "212.102.50.122" + ], "tcp": true, "udp": true }, @@ -50703,7 +52590,9 @@ "region": "Japan", "hostname": "jp522.nordvpn.com", "number": 522, - "ip": "212.102.50.203", + "ips": [ + "212.102.50.203" + ], "tcp": true, "udp": true }, @@ -50711,7 +52600,9 @@ "region": "Japan", "hostname": "jp523.nordvpn.com", "number": 523, - "ip": "212.102.50.206", + "ips": [ + "212.102.50.206" + ], "tcp": true, "udp": true }, @@ -50719,7 +52610,9 @@ "region": "Japan", "hostname": "jp524.nordvpn.com", "number": 524, - "ip": "212.102.50.209", + "ips": [ + "212.102.50.209" + ], "tcp": true, "udp": true }, @@ -50727,7 +52620,9 @@ "region": "Japan", "hostname": "jp525.nordvpn.com", "number": 525, - "ip": "212.102.50.194", + "ips": [ + "212.102.50.194" + ], "tcp": true, "udp": true }, @@ -50735,7 +52630,9 @@ "region": "Japan", "hostname": "jp526.nordvpn.com", "number": 526, - "ip": "212.102.50.197", + "ips": [ + "212.102.50.197" + ], "tcp": true, "udp": true }, @@ -50743,7 +52640,9 @@ "region": "Japan", "hostname": "jp527.nordvpn.com", "number": 527, - "ip": "212.102.50.200", + "ips": [ + "212.102.50.200" + ], "tcp": true, "udp": true }, @@ -50751,7 +52650,9 @@ "region": "Japan", "hostname": "jp528.nordvpn.com", "number": 528, - "ip": "212.102.51.194", + "ips": [ + "212.102.51.194" + ], "tcp": true, "udp": true }, @@ -50759,7 +52660,9 @@ "region": "Japan", "hostname": "jp529.nordvpn.com", "number": 529, - "ip": "212.102.51.197", + "ips": [ + "212.102.51.197" + ], "tcp": true, "udp": true }, @@ -50767,7 +52670,9 @@ "region": "Japan", "hostname": "jp530.nordvpn.com", "number": 530, - "ip": "212.102.51.200", + "ips": [ + "212.102.51.200" + ], "tcp": true, "udp": true }, @@ -50775,7 +52680,9 @@ "region": "Japan", "hostname": "jp531.nordvpn.com", "number": 531, - "ip": "212.102.50.212", + "ips": [ + "212.102.50.212" + ], "tcp": true, "udp": true }, @@ -50783,7 +52690,9 @@ "region": "Japan", "hostname": "jp532.nordvpn.com", "number": 532, - "ip": "212.102.51.218", + "ips": [ + "212.102.51.218" + ], "tcp": true, "udp": true }, @@ -50791,7 +52700,9 @@ "region": "Japan", "hostname": "jp533.nordvpn.com", "number": 533, - "ip": "212.102.51.215", + "ips": [ + "212.102.51.215" + ], "tcp": true, "udp": true }, @@ -50799,7 +52710,9 @@ "region": "Japan", "hostname": "jp534.nordvpn.com", "number": 534, - "ip": "212.102.51.212", + "ips": [ + "212.102.51.212" + ], "tcp": true, "udp": true }, @@ -50807,7 +52720,9 @@ "region": "Japan", "hostname": "jp535.nordvpn.com", "number": 535, - "ip": "212.102.51.203", + "ips": [ + "212.102.51.203" + ], "tcp": true, "udp": true }, @@ -50815,7 +52730,9 @@ "region": "Japan", "hostname": "jp536.nordvpn.com", "number": 536, - "ip": "212.102.51.206", + "ips": [ + "212.102.51.206" + ], "tcp": true, "udp": true }, @@ -50823,39 +52740,9 @@ "region": "Japan", "hostname": "jp537.nordvpn.com", "number": 537, - "ip": "212.102.51.209", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp538.nordvpn.com", - "number": 538, - "ip": "37.120.154.43", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp539.nordvpn.com", - "number": 539, - "ip": "37.120.154.51", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp540.nordvpn.com", - "number": 540, - "ip": "37.120.154.203", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp541.nordvpn.com", - "number": 541, - "ip": "37.120.154.235", + "ips": [ + "212.102.51.209" + ], "tcp": true, "udp": true }, @@ -50863,7 +52750,9 @@ "region": "Japan", "hostname": "jp542.nordvpn.com", "number": 542, - "ip": "156.146.35.66", + "ips": [ + "156.146.35.66" + ], "tcp": true, "udp": true }, @@ -50871,7 +52760,9 @@ "region": "Japan", "hostname": "jp543.nordvpn.com", "number": 543, - "ip": "156.146.35.93", + "ips": [ + "156.146.35.93" + ], "tcp": true, "udp": true }, @@ -50879,7 +52770,9 @@ "region": "Japan", "hostname": "jp544.nordvpn.com", "number": 544, - "ip": "156.146.35.90", + "ips": [ + "156.146.35.90" + ], "tcp": true, "udp": true }, @@ -50887,7 +52780,9 @@ "region": "Japan", "hostname": "jp545.nordvpn.com", "number": 545, - "ip": "156.146.35.87", + "ips": [ + "156.146.35.87" + ], "tcp": true, "udp": true }, @@ -50895,7 +52790,9 @@ "region": "Japan", "hostname": "jp546.nordvpn.com", "number": 546, - "ip": "156.146.35.84", + "ips": [ + "156.146.35.84" + ], "tcp": true, "udp": true }, @@ -50903,7 +52800,9 @@ "region": "Japan", "hostname": "jp547.nordvpn.com", "number": 547, - "ip": "156.146.35.81", + "ips": [ + "156.146.35.81" + ], "tcp": true, "udp": true }, @@ -50911,7 +52810,9 @@ "region": "Japan", "hostname": "jp548.nordvpn.com", "number": 548, - "ip": "156.146.35.78", + "ips": [ + "156.146.35.78" + ], "tcp": true, "udp": true }, @@ -50919,7 +52820,9 @@ "region": "Japan", "hostname": "jp549.nordvpn.com", "number": 549, - "ip": "156.146.35.75", + "ips": [ + "156.146.35.75" + ], "tcp": true, "udp": true }, @@ -50927,7 +52830,9 @@ "region": "Japan", "hostname": "jp550.nordvpn.com", "number": 550, - "ip": "156.146.35.72", + "ips": [ + "156.146.35.72" + ], "tcp": true, "udp": true }, @@ -50935,39 +52840,9 @@ "region": "Japan", "hostname": "jp551.nordvpn.com", "number": 551, - "ip": "156.146.35.69", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp552.nordvpn.com", - "number": 552, - "ip": "5.181.235.19", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp553.nordvpn.com", - "number": 553, - "ip": "5.181.235.35", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp554.nordvpn.com", - "number": 554, - "ip": "5.181.235.43", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp555.nordvpn.com", - "number": 555, - "ip": "5.181.235.51", + "ips": [ + "156.146.35.69" + ], "tcp": true, "udp": true }, @@ -50975,7 +52850,9 @@ "region": "Japan", "hostname": "jp556.nordvpn.com", "number": 556, - "ip": "89.187.161.144", + "ips": [ + "89.187.161.144" + ], "tcp": true, "udp": true }, @@ -50983,47 +52860,9 @@ "region": "Japan", "hostname": "jp557.nordvpn.com", "number": 557, - "ip": "89.187.161.149", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp562.nordvpn.com", - "number": 562, - "ip": "82.102.28.35", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp563.nordvpn.com", - "number": 563, - "ip": "82.102.28.83", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp564.nordvpn.com", - "number": 564, - "ip": "91.207.174.147", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp565.nordvpn.com", - "number": 565, - "ip": "91.207.174.155", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp566.nordvpn.com", - "number": 566, - "ip": "91.207.174.163", + "ips": [ + "89.187.161.149" + ], "tcp": true, "udp": true }, @@ -51031,7 +52870,9 @@ "region": "Japan", "hostname": "jp567.nordvpn.com", "number": 567, - "ip": "156.146.35.96", + "ips": [ + "156.146.35.96" + ], "tcp": true, "udp": true }, @@ -51039,7 +52880,9 @@ "region": "Japan", "hostname": "jp568.nordvpn.com", "number": 568, - "ip": "156.146.35.99", + "ips": [ + "156.146.35.99" + ], "tcp": true, "udp": true }, @@ -51047,7 +52890,9 @@ "region": "Japan", "hostname": "jp569.nordvpn.com", "number": 569, - "ip": "156.146.35.102", + "ips": [ + "156.146.35.102" + ], "tcp": true, "udp": true }, @@ -51055,7 +52900,9 @@ "region": "Japan", "hostname": "jp570.nordvpn.com", "number": 570, - "ip": "156.146.35.105", + "ips": [ + "156.146.35.105" + ], "tcp": true, "udp": true }, @@ -51063,7 +52910,9 @@ "region": "Japan", "hostname": "jp571.nordvpn.com", "number": 571, - "ip": "156.146.35.108", + "ips": [ + "156.146.35.108" + ], "tcp": true, "udp": true }, @@ -51071,7 +52920,9 @@ "region": "Japan", "hostname": "jp572.nordvpn.com", "number": 572, - "ip": "89.187.161.205", + "ips": [ + "89.187.161.205" + ], "tcp": true, "udp": true }, @@ -51079,7 +52930,9 @@ "region": "Japan", "hostname": "jp573.nordvpn.com", "number": 573, - "ip": "89.187.161.200", + "ips": [ + "89.187.161.200" + ], "tcp": true, "udp": true }, @@ -51087,7 +52940,9 @@ "region": "Japan", "hostname": "jp574.nordvpn.com", "number": 574, - "ip": "89.187.161.195", + "ips": [ + "89.187.161.195" + ], "tcp": true, "udp": true }, @@ -51095,7 +52950,9 @@ "region": "Japan", "hostname": "jp575.nordvpn.com", "number": 575, - "ip": "89.187.161.190", + "ips": [ + "89.187.161.190" + ], "tcp": true, "udp": true }, @@ -51103,7 +52960,9 @@ "region": "Japan", "hostname": "jp576.nordvpn.com", "number": 576, - "ip": "89.187.161.66", + "ips": [ + "89.187.161.66" + ], "tcp": true, "udp": true }, @@ -51111,7 +52970,9 @@ "region": "Japan", "hostname": "jp577.nordvpn.com", "number": 577, - "ip": "89.187.161.81", + "ips": [ + "89.187.161.81" + ], "tcp": true, "udp": true }, @@ -51119,7 +52980,9 @@ "region": "Japan", "hostname": "jp578.nordvpn.com", "number": 578, - "ip": "89.187.161.71", + "ips": [ + "89.187.161.71" + ], "tcp": true, "udp": true }, @@ -51127,39 +52990,9 @@ "region": "Japan", "hostname": "jp579.nordvpn.com", "number": 579, - "ip": "89.187.161.76", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp581.nordvpn.com", - "number": 581, - "ip": "37.120.210.59", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp582.nordvpn.com", - "number": 582, - "ip": "37.120.210.83", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp583.nordvpn.com", - "number": 583, - "ip": "37.120.210.91", - "tcp": true, - "udp": true - }, - { - "region": "Japan", - "hostname": "jp584.nordvpn.com", - "number": 584, - "ip": "37.120.210.99", + "ips": [ + "89.187.161.76" + ], "tcp": true, "udp": true }, @@ -51167,7 +53000,9 @@ "region": "Japan", "hostname": "jp585.nordvpn.com", "number": 585, - "ip": "89.187.161.49", + "ips": [ + "89.187.161.49" + ], "tcp": true, "udp": true }, @@ -51175,7 +53010,9 @@ "region": "Japan", "hostname": "jp586.nordvpn.com", "number": 586, - "ip": "89.187.161.44", + "ips": [ + "89.187.161.44" + ], "tcp": true, "udp": true }, @@ -51183,7 +53020,9 @@ "region": "Japan", "hostname": "jp587.nordvpn.com", "number": 587, - "ip": "89.187.161.39", + "ips": [ + "89.187.161.39" + ], "tcp": true, "udp": true }, @@ -51191,7 +53030,9 @@ "region": "Japan", "hostname": "jp588.nordvpn.com", "number": 588, - "ip": "89.187.161.34", + "ips": [ + "89.187.161.34" + ], "tcp": true, "udp": true }, @@ -51199,7 +53040,9 @@ "region": "Japan", "hostname": "jp589.nordvpn.com", "number": 589, - "ip": "89.187.161.86", + "ips": [ + "89.187.161.86" + ], "tcp": true, "udp": true }, @@ -51207,7 +53050,9 @@ "region": "Japan", "hostname": "jp590.nordvpn.com", "number": 590, - "ip": "212.102.50.86", + "ips": [ + "212.102.50.86" + ], "tcp": true, "udp": true }, @@ -51215,7 +53060,9 @@ "region": "Japan", "hostname": "jp591.nordvpn.com", "number": 591, - "ip": "212.102.50.91", + "ips": [ + "212.102.50.91" + ], "tcp": true, "udp": true }, @@ -51223,7 +53070,9 @@ "region": "Japan", "hostname": "jp592.nordvpn.com", "number": 592, - "ip": "212.102.50.96", + "ips": [ + "212.102.50.96" + ], "tcp": true, "udp": true }, @@ -51231,7 +53080,9 @@ "region": "Japan", "hostname": "jp593.nordvpn.com", "number": 593, - "ip": "212.102.50.101", + "ips": [ + "212.102.50.101" + ], "tcp": true, "udp": true }, @@ -51239,7 +53090,9 @@ "region": "Japan", "hostname": "jp594.nordvpn.com", "number": 594, - "ip": "212.102.50.106", + "ips": [ + "212.102.50.106" + ], "tcp": true, "udp": true }, @@ -51247,31 +53100,129 @@ "region": "Japan", "hostname": "jp595.nordvpn.com", "number": 595, - "ip": "212.102.50.111", + "ips": [ + "212.102.50.111" + ], "tcp": true, "udp": true }, { - "region": "Latvia", - "hostname": "lv41.nordvpn.com", - "number": 41, - "ip": "185.176.222.47", + "region": "Japan", + "hostname": "jp602.nordvpn.com", + "number": 602, + "ips": [ + "203.10.99.27" + ], "tcp": true, "udp": true }, { - "region": "Latvia", - "hostname": "lv42.nordvpn.com", - "number": 42, - "ip": "80.246.31.8", + "region": "Japan", + "hostname": "jp603.nordvpn.com", + "number": 603, + "ips": [ + "203.10.99.35" + ], "tcp": true, "udp": true }, { - "region": "Latvia", - "hostname": "lv43.nordvpn.com", - "number": 43, - "ip": "80.246.31.3", + "region": "Japan", + "hostname": "jp604.nordvpn.com", + "number": 604, + "ips": [ + "203.10.99.43" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp605.nordvpn.com", + "number": 605, + "ips": [ + "203.10.99.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp606.nordvpn.com", + "number": 606, + "ips": [ + "203.10.99.59" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp607.nordvpn.com", + "number": 607, + "ips": [ + "203.10.99.67" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp608.nordvpn.com", + "number": 608, + "ips": [ + "203.10.99.75" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp609.nordvpn.com", + "number": 609, + "ips": [ + "203.10.99.83" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp610.nordvpn.com", + "number": 610, + "ips": [ + "203.10.99.11" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp611.nordvpn.com", + "number": 611, + "ips": [ + "203.10.99.91" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp612.nordvpn.com", + "number": 612, + "ips": [ + "203.10.99.99" + ], + "tcp": true, + "udp": true + }, + { + "region": "Japan", + "hostname": "jp613.nordvpn.com", + "number": 613, + "ips": [ + "203.10.99.107" + ], "tcp": true, "udp": true }, @@ -51279,7 +53230,9 @@ "region": "Latvia", "hostname": "lv44.nordvpn.com", "number": 44, - "ip": "196.240.54.3", + "ips": [ + "196.240.54.3" + ], "tcp": true, "udp": true }, @@ -51287,7 +53240,9 @@ "region": "Latvia", "hostname": "lv45.nordvpn.com", "number": 45, - "ip": "196.240.54.11", + "ips": [ + "196.240.54.11" + ], "tcp": true, "udp": true }, @@ -51295,15 +53250,9 @@ "region": "Latvia", "hostname": "lv46.nordvpn.com", "number": 46, - "ip": "196.240.54.19", - "tcp": true, - "udp": true - }, - { - "region": "Latvia", - "hostname": "lv47.nordvpn.com", - "number": 47, - "ip": "185.176.221.170", + "ips": [ + "196.240.54.19" + ], "tcp": true, "udp": true }, @@ -51311,7 +53260,9 @@ "region": "Latvia", "hostname": "lv48.nordvpn.com", "number": 48, - "ip": "196.240.54.35", + "ips": [ + "196.240.54.35" + ], "tcp": true, "udp": true }, @@ -51319,7 +53270,9 @@ "region": "Latvia", "hostname": "lv49.nordvpn.com", "number": 49, - "ip": "196.240.54.51", + "ips": [ + "196.240.54.51" + ], "tcp": true, "udp": true }, @@ -51327,15 +53280,9 @@ "region": "Latvia", "hostname": "lv50.nordvpn.com", "number": 50, - "ip": "196.240.54.59", - "tcp": true, - "udp": true - }, - { - "region": "Latvia", - "hostname": "lv51.nordvpn.com", - "number": 51, - "ip": "185.176.221.181", + "ips": [ + "196.240.54.59" + ], "tcp": true, "udp": true }, @@ -51343,47 +53290,59 @@ "region": "Latvia", "hostname": "lv52.nordvpn.com", "number": 52, - "ip": "196.240.54.43", + "ips": [ + "196.240.54.43" + ], "tcp": true, "udp": true }, { "region": "Latvia", - "hostname": "lv53.nordvpn.com", - "number": 53, - "ip": "185.176.221.182", + "hostname": "lv58.nordvpn.com", + "number": 58, + "ips": [ + "185.176.222.163" + ], "tcp": true, "udp": true }, { "region": "Latvia", - "hostname": "lv54.nordvpn.com", - "number": 54, - "ip": "185.176.221.92", + "hostname": "lv59.nordvpn.com", + "number": 59, + "ips": [ + "185.176.222.156" + ], "tcp": true, "udp": true }, { "region": "Latvia", - "hostname": "lv55.nordvpn.com", - "number": 55, - "ip": "185.176.221.186", + "hostname": "lv60.nordvpn.com", + "number": 60, + "ips": [ + "185.176.222.138" + ], "tcp": true, "udp": true }, { "region": "Latvia", - "hostname": "lv56.nordvpn.com", - "number": 56, - "ip": "185.176.222.51", + "hostname": "lv61.nordvpn.com", + "number": 61, + "ips": [ + "185.176.222.135" + ], "tcp": true, "udp": true }, { "region": "Latvia", - "hostname": "lv57.nordvpn.com", - "number": 57, - "ip": "185.176.222.52", + "hostname": "lv62.nordvpn.com", + "number": 62, + "ips": [ + "185.176.222.134" + ], "tcp": true, "udp": true }, @@ -51391,7 +53350,9 @@ "region": "Lithuania", "hostname": "lt7.nordvpn.com", "number": 7, - "ip": "185.65.50.11", + "ips": [ + "185.65.50.11" + ], "tcp": true, "udp": true }, @@ -51399,7 +53360,9 @@ "region": "Lithuania", "hostname": "lt8.nordvpn.com", "number": 8, - "ip": "185.65.50.17", + "ips": [ + "185.65.50.17" + ], "tcp": true, "udp": true }, @@ -51407,7 +53370,9 @@ "region": "Lithuania", "hostname": "lt9.nordvpn.com", "number": 9, - "ip": "185.65.50.23", + "ips": [ + "185.65.50.23" + ], "tcp": true, "udp": true }, @@ -51415,7 +53380,9 @@ "region": "Lithuania", "hostname": "lt10.nordvpn.com", "number": 10, - "ip": "185.65.50.29", + "ips": [ + "185.65.50.29" + ], "tcp": true, "udp": true }, @@ -51423,15 +53390,59 @@ "region": "Lithuania", "hostname": "lt11.nordvpn.com", "number": 11, - "ip": "185.65.50.35", + "ips": [ + "185.65.50.35" + ], "tcp": true, "udp": true }, { - "region": "Luxembourg", - "hostname": "lu85.nordvpn.com", - "number": 85, - "ip": "185.153.151.42", + "region": "Lithuania", + "hostname": "lt13.nordvpn.com", + "number": 13, + "ips": [ + "45.82.33.4" + ], + "tcp": true, + "udp": true + }, + { + "region": "Lithuania", + "hostname": "lt14.nordvpn.com", + "number": 14, + "ips": [ + "45.82.33.6" + ], + "tcp": true, + "udp": true + }, + { + "region": "Lithuania", + "hostname": "lt15.nordvpn.com", + "number": 15, + "ips": [ + "45.82.33.8" + ], + "tcp": true, + "udp": true + }, + { + "region": "Lithuania", + "hostname": "lt16.nordvpn.com", + "number": 16, + "ips": [ + "45.82.33.10" + ], + "tcp": true, + "udp": true + }, + { + "region": "Lithuania", + "hostname": "lt17.nordvpn.com", + "number": 17, + "ips": [ + "45.82.33.14" + ], "tcp": true, "udp": true }, @@ -51439,7 +53450,9 @@ "region": "Luxembourg", "hostname": "lu86.nordvpn.com", "number": 86, - "ip": "92.223.89.59", + "ips": [ + "92.223.89.59" + ], "tcp": true, "udp": true }, @@ -51447,7 +53460,9 @@ "region": "Luxembourg", "hostname": "lu87.nordvpn.com", "number": 87, - "ip": "92.223.89.171", + "ips": [ + "92.223.89.171" + ], "tcp": true, "udp": true }, @@ -51455,7 +53470,9 @@ "region": "Luxembourg", "hostname": "lu88.nordvpn.com", "number": 88, - "ip": "92.223.89.173", + "ips": [ + "92.223.89.173" + ], "tcp": true, "udp": true }, @@ -51463,7 +53480,9 @@ "region": "Luxembourg", "hostname": "lu89.nordvpn.com", "number": 89, - "ip": "92.223.89.192", + "ips": [ + "92.223.89.192" + ], "tcp": true, "udp": true }, @@ -51471,7 +53490,9 @@ "region": "Luxembourg", "hostname": "lu90.nordvpn.com", "number": 90, - "ip": "92.223.89.190", + "ips": [ + "92.223.89.190" + ], "tcp": true, "udp": true }, @@ -51479,7 +53500,9 @@ "region": "Luxembourg", "hostname": "lu91.nordvpn.com", "number": 91, - "ip": "92.223.89.186", + "ips": [ + "92.223.89.186" + ], "tcp": true, "udp": true }, @@ -51487,7 +53510,9 @@ "region": "Luxembourg", "hostname": "lu92.nordvpn.com", "number": 92, - "ip": "92.223.89.213", + "ips": [ + "92.223.89.213" + ], "tcp": true, "udp": true }, @@ -51495,7 +53520,9 @@ "region": "Luxembourg", "hostname": "lu93.nordvpn.com", "number": 93, - "ip": "92.223.89.211", + "ips": [ + "92.223.89.211" + ], "tcp": true, "udp": true }, @@ -51503,7 +53530,9 @@ "region": "Luxembourg", "hostname": "lu94.nordvpn.com", "number": 94, - "ip": "92.223.89.209", + "ips": [ + "92.223.89.209" + ], "tcp": true, "udp": true }, @@ -51511,7 +53540,9 @@ "region": "Luxembourg", "hostname": "lu95.nordvpn.com", "number": 95, - "ip": "92.223.89.207", + "ips": [ + "92.223.89.207" + ], "tcp": true, "udp": true }, @@ -51519,7 +53550,9 @@ "region": "Luxembourg", "hostname": "lu96.nordvpn.com", "number": 96, - "ip": "92.223.89.205", + "ips": [ + "92.223.89.205" + ], "tcp": true, "udp": true }, @@ -51527,7 +53560,9 @@ "region": "Luxembourg", "hostname": "lu97.nordvpn.com", "number": 97, - "ip": "92.223.89.223", + "ips": [ + "92.223.89.223" + ], "tcp": true, "udp": true }, @@ -51535,7 +53570,9 @@ "region": "Luxembourg", "hostname": "lu98.nordvpn.com", "number": 98, - "ip": "92.223.89.225", + "ips": [ + "92.223.89.225" + ], "tcp": true, "udp": true }, @@ -51543,7 +53580,9 @@ "region": "Luxembourg", "hostname": "lu99.nordvpn.com", "number": 99, - "ip": "92.223.89.221", + "ips": [ + "92.223.89.221" + ], "tcp": true, "udp": true }, @@ -51551,7 +53590,9 @@ "region": "Luxembourg", "hostname": "lu100.nordvpn.com", "number": 100, - "ip": "92.223.89.72", + "ips": [ + "92.223.89.72" + ], "tcp": true, "udp": true }, @@ -51559,135 +53600,9 @@ "region": "Luxembourg", "hostname": "lu101.nordvpn.com", "number": 101, - "ip": "92.223.89.219", - "tcp": true, - "udp": true - }, - { - "region": "Luxembourg", - "hostname": "lu102.nordvpn.com", - "number": 102, - "ip": "185.153.151.33", - "tcp": true, - "udp": true - }, - { - "region": "Luxembourg", - "hostname": "lu103.nordvpn.com", - "number": 103, - "ip": "185.153.151.51", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my20.nordvpn.com", - "number": 20, - "ip": "139.5.177.214", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my23.nordvpn.com", - "number": 23, - "ip": "202.176.5.118", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my24.nordvpn.com", - "number": 24, - "ip": "139.5.177.229", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my25.nordvpn.com", - "number": 25, - "ip": "103.212.70.92", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my27.nordvpn.com", - "number": 27, - "ip": "103.228.54.7", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my28.nordvpn.com", - "number": 28, - "ip": "103.106.250.14", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my29.nordvpn.com", - "number": 29, - "ip": "103.106.250.17", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my30.nordvpn.com", - "number": 30, - "ip": "103.106.250.55", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my31.nordvpn.com", - "number": 31, - "ip": "103.106.250.7", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my32.nordvpn.com", - "number": 32, - "ip": "103.212.70.207", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my33.nordvpn.com", - "number": 33, - "ip": "103.212.70.235", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my34.nordvpn.com", - "number": 34, - "ip": "103.106.250.39", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my35.nordvpn.com", - "number": 35, - "ip": "103.106.250.28", - "tcp": true, - "udp": true - }, - { - "region": "Malaysia", - "hostname": "my36.nordvpn.com", - "number": 36, - "ip": "103.106.250.42", + "ips": [ + "92.223.89.219" + ], "tcp": true, "udp": true }, @@ -51695,7 +53610,9 @@ "region": "Malaysia", "hostname": "my37.nordvpn.com", "number": 37, - "ip": "202.87.221.198", + "ips": [ + "202.87.221.198" + ], "tcp": true, "udp": true }, @@ -51703,7 +53620,9 @@ "region": "Malaysia", "hostname": "my38.nordvpn.com", "number": 38, - "ip": "202.87.221.252", + "ips": [ + "202.87.221.252" + ], "tcp": true, "udp": true }, @@ -51711,7 +53630,9 @@ "region": "Malaysia", "hostname": "my39.nordvpn.com", "number": 39, - "ip": "202.87.221.137", + "ips": [ + "202.87.221.137" + ], "tcp": true, "udp": true }, @@ -51719,7 +53640,9 @@ "region": "Malaysia", "hostname": "my40.nordvpn.com", "number": 40, - "ip": "202.73.12.106", + "ips": [ + "202.73.12.106" + ], "tcp": true, "udp": true }, @@ -51727,7 +53650,9 @@ "region": "Malaysia", "hostname": "my41.nordvpn.com", "number": 41, - "ip": "202.73.12.103", + "ips": [ + "202.73.12.103" + ], "tcp": true, "udp": true }, @@ -51735,7 +53660,9 @@ "region": "Malaysia", "hostname": "my42.nordvpn.com", "number": 42, - "ip": "202.73.12.100", + "ips": [ + "202.73.12.100" + ], "tcp": true, "udp": true }, @@ -51743,7 +53670,9 @@ "region": "Malaysia", "hostname": "my43.nordvpn.com", "number": 43, - "ip": "202.73.12.97", + "ips": [ + "202.73.12.97" + ], "tcp": true, "udp": true }, @@ -51751,7 +53680,9 @@ "region": "Malaysia", "hostname": "my44.nordvpn.com", "number": 44, - "ip": "202.73.12.94", + "ips": [ + "202.73.12.94" + ], "tcp": true, "udp": true }, @@ -51759,7 +53690,9 @@ "region": "Malaysia", "hostname": "my45.nordvpn.com", "number": 45, - "ip": "202.73.12.91", + "ips": [ + "202.73.12.91" + ], "tcp": true, "udp": true }, @@ -51767,7 +53700,9 @@ "region": "Malaysia", "hostname": "my46.nordvpn.com", "number": 46, - "ip": "202.87.222.102", + "ips": [ + "202.87.222.102" + ], "tcp": true, "udp": true }, @@ -51775,7 +53710,9 @@ "region": "Malaysia", "hostname": "my47.nordvpn.com", "number": 47, - "ip": "202.73.12.61", + "ips": [ + "202.73.12.61" + ], "tcp": true, "udp": true }, @@ -51783,7 +53720,9 @@ "region": "Malaysia", "hostname": "my48.nordvpn.com", "number": 48, - "ip": "202.73.12.73", + "ips": [ + "202.73.12.73" + ], "tcp": true, "udp": true }, @@ -51791,7 +53730,9 @@ "region": "Mexico", "hostname": "mx50.nordvpn.com", "number": 50, - "ip": "192.154.196.13", + "ips": [ + "192.154.196.13" + ], "tcp": true, "udp": true }, @@ -51799,7 +53740,9 @@ "region": "Mexico", "hostname": "mx51.nordvpn.com", "number": 51, - "ip": "192.154.196.15", + "ips": [ + "192.154.196.15" + ], "tcp": true, "udp": true }, @@ -51807,7 +53750,9 @@ "region": "Mexico", "hostname": "mx52.nordvpn.com", "number": 52, - "ip": "192.154.196.17", + "ips": [ + "192.154.196.17" + ], "tcp": true, "udp": true }, @@ -51815,7 +53760,9 @@ "region": "Mexico", "hostname": "mx53.nordvpn.com", "number": 53, - "ip": "192.154.196.19", + "ips": [ + "192.154.196.19" + ], "tcp": true, "udp": true }, @@ -51823,7 +53770,9 @@ "region": "Mexico", "hostname": "mx54.nordvpn.com", "number": 54, - "ip": "192.154.196.21", + "ips": [ + "192.154.196.21" + ], "tcp": true, "udp": true }, @@ -51831,7 +53780,9 @@ "region": "Mexico", "hostname": "mx55.nordvpn.com", "number": 55, - "ip": "192.154.196.23", + "ips": [ + "192.154.196.23" + ], "tcp": true, "udp": true }, @@ -51839,7 +53790,9 @@ "region": "Mexico", "hostname": "mx56.nordvpn.com", "number": 56, - "ip": "192.154.196.25", + "ips": [ + "192.154.196.25" + ], "tcp": true, "udp": true }, @@ -51847,7 +53800,9 @@ "region": "Mexico", "hostname": "mx57.nordvpn.com", "number": 57, - "ip": "192.154.196.27", + "ips": [ + "192.154.196.27" + ], "tcp": true, "udp": true }, @@ -51855,7 +53810,9 @@ "region": "Mexico", "hostname": "mx58.nordvpn.com", "number": 58, - "ip": "192.154.196.29", + "ips": [ + "192.154.196.29" + ], "tcp": true, "udp": true }, @@ -51863,87 +53820,209 @@ "region": "Mexico", "hostname": "mx59.nordvpn.com", "number": 59, - "ip": "192.154.196.31", + "ips": [ + "192.154.196.31" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx60.nordvpn.com", - "number": 60, - "ip": "103.14.26.128", + "hostname": "mx70.nordvpn.com", + "number": 70, + "ips": [ + "185.153.177.102" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx61.nordvpn.com", - "number": 61, - "ip": "103.14.26.133", + "hostname": "mx71.nordvpn.com", + "number": 71, + "ips": [ + "185.153.177.104" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx62.nordvpn.com", - "number": 62, - "ip": "103.14.26.138", + "hostname": "mx72.nordvpn.com", + "number": 72, + "ips": [ + "185.153.177.106" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx63.nordvpn.com", - "number": 63, - "ip": "103.14.26.143", + "hostname": "mx73.nordvpn.com", + "number": 73, + "ips": [ + "185.153.177.108" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx64.nordvpn.com", - "number": 64, - "ip": "103.14.26.148", + "hostname": "mx74.nordvpn.com", + "number": 74, + "ips": [ + "185.153.177.110" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx65.nordvpn.com", - "number": 65, - "ip": "103.14.26.168", + "hostname": "mx80.nordvpn.com", + "number": 80, + "ips": [ + "185.153.177.122" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx66.nordvpn.com", - "number": 66, - "ip": "103.14.26.153", + "hostname": "mx81.nordvpn.com", + "number": 81, + "ips": [ + "185.153.177.124" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx67.nordvpn.com", - "number": 67, - "ip": "103.14.26.158", + "hostname": "mx82.nordvpn.com", + "number": 82, + "ips": [ + "185.153.177.126" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx68.nordvpn.com", - "number": 68, - "ip": "103.14.26.163", + "hostname": "mx83.nordvpn.com", + "number": 83, + "ips": [ + "185.153.177.158" + ], "tcp": true, "udp": true }, { "region": "Mexico", - "hostname": "mx69.nordvpn.com", - "number": 69, - "ip": "103.14.26.173", + "hostname": "mx84.nordvpn.com", + "number": 84, + "ips": [ + "185.153.177.170" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx85.nordvpn.com", + "number": 85, + "ips": [ + "185.153.177.182" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx86.nordvpn.com", + "number": 86, + "ips": [ + "185.153.177.194" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx87.nordvpn.com", + "number": 87, + "ips": [ + "185.153.177.206" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx88.nordvpn.com", + "number": 88, + "ips": [ + "185.153.177.218" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx89.nordvpn.com", + "number": 89, + "ips": [ + "185.153.177.230" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx90.nordvpn.com", + "number": 90, + "ips": [ + "185.153.177.112" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx91.nordvpn.com", + "number": 91, + "ips": [ + "185.153.177.114" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx92.nordvpn.com", + "number": 92, + "ips": [ + "185.153.177.116" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx93.nordvpn.com", + "number": 93, + "ips": [ + "185.153.177.118" + ], + "tcp": true, + "udp": true + }, + { + "region": "Mexico", + "hostname": "mx94.nordvpn.com", + "number": 94, + "ips": [ + "185.153.177.120" + ], "tcp": true, "udp": true }, @@ -51951,7 +54030,9 @@ "region": "Moldova", "hostname": "md13.nordvpn.com", "number": 13, - "ip": "178.175.133.99", + "ips": [ + "178.175.133.99" + ], "tcp": true, "udp": true }, @@ -51959,7 +54040,9 @@ "region": "Moldova", "hostname": "md14.nordvpn.com", "number": 14, - "ip": "178.175.132.27", + "ips": [ + "178.175.132.27" + ], "tcp": true, "udp": true }, @@ -51967,7 +54050,9 @@ "region": "Moldova", "hostname": "md15.nordvpn.com", "number": 15, - "ip": "178.17.167.171", + "ips": [ + "178.17.167.171" + ], "tcp": true, "udp": true }, @@ -51975,7 +54060,29 @@ "region": "Moldova", "hostname": "md16.nordvpn.com", "number": 16, - "ip": "178.17.167.179", + "ips": [ + "178.17.167.179" + ], + "tcp": true, + "udp": true + }, + { + "region": "Moldova", + "hostname": "md17.nordvpn.com", + "number": 17, + "ips": [ + "178.175.131.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "Moldova", + "hostname": "md18.nordvpn.com", + "number": 18, + "ips": [ + "178.175.131.59" + ], "tcp": true, "udp": true }, @@ -51983,15 +54090,18 @@ "region": "Netherlands", "hostname": "nl-onion4.nordvpn.com", "number": 4, - "ip": "217.23.9.213", - "tcp": true, - "udp": true + "ips": [ + "217.23.9.213" + ], + "tcp": true }, { "region": "Netherlands", "hostname": "nl-onion6.nordvpn.com", "number": 6, - "ip": "213.232.87.219", + "ips": [ + "213.232.87.219" + ], "tcp": true, "udp": true }, @@ -51999,7 +54109,9 @@ "region": "Netherlands", "hostname": "nl-ch8.nordvpn.com", "number": 8, - "ip": "213.232.87.170", + "ips": [ + "213.232.87.170" + ], "tcp": true, "udp": true }, @@ -52007,15 +54119,9 @@ "region": "Netherlands", "hostname": "nl-ch9.nordvpn.com", "number": 9, - "ip": "213.232.87.171", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl-se10.nordvpn.com", - "number": 10, - "ip": "194.127.173.34", + "ips": [ + "213.232.87.171" + ], "tcp": true, "udp": true }, @@ -52023,7 +54129,19 @@ "region": "Netherlands", "hostname": "nl-ch10.nordvpn.com", "number": 10, - "ip": "194.127.173.35", + "ips": [ + "194.127.173.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl-se10.nordvpn.com", + "number": 10, + "ips": [ + "194.127.173.34" + ], "tcp": true, "udp": true }, @@ -52031,15 +54149,9 @@ "region": "Netherlands", "hostname": "nl-uk10.nordvpn.com", "number": 10, - "ip": "213.232.87.141", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl-ch11.nordvpn.com", - "number": 11, - "ip": "213.232.87.146", + "ips": [ + "213.232.87.141" + ], "tcp": true, "udp": true }, @@ -52047,7 +54159,19 @@ "region": "Netherlands", "hostname": "nl-se11.nordvpn.com", "number": 11, - "ip": "213.232.87.174", + "ips": [ + "213.232.87.174" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl-ch11.nordvpn.com", + "number": 11, + "ips": [ + "213.232.87.146" + ], "tcp": true, "udp": true }, @@ -52055,7 +54179,9 @@ "region": "Netherlands", "hostname": "nl-uk11.nordvpn.com", "number": 11, - "ip": "213.232.87.142", + "ips": [ + "213.232.87.142" + ], "tcp": true, "udp": true }, @@ -52063,7 +54189,9 @@ "region": "Netherlands", "hostname": "nl-uk12.nordvpn.com", "number": 12, - "ip": "213.232.87.49", + "ips": [ + "213.232.87.49" + ], "tcp": true, "udp": true }, @@ -52071,7 +54199,9 @@ "region": "Netherlands", "hostname": "nl-se12.nordvpn.com", "number": 12, - "ip": "213.232.87.175", + "ips": [ + "213.232.87.175" + ], "tcp": true, "udp": true }, @@ -52079,7 +54209,9 @@ "region": "Netherlands", "hostname": "nl-uk13.nordvpn.com", "number": 13, - "ip": "213.232.87.50", + "ips": [ + "213.232.87.50" + ], "tcp": true, "udp": true }, @@ -52087,7 +54219,9 @@ "region": "Netherlands", "hostname": "nl-se13.nordvpn.com", "number": 13, - "ip": "213.232.87.145", + "ips": [ + "213.232.87.145" + ], "tcp": true, "udp": true }, @@ -52095,7 +54229,9 @@ "region": "Netherlands", "hostname": "nl400.nordvpn.com", "number": 400, - "ip": "217.23.2.31", + "ips": [ + "217.23.2.31" + ], "tcp": true, "udp": true }, @@ -52103,7 +54239,9 @@ "region": "Netherlands", "hostname": "nl405.nordvpn.com", "number": 405, - "ip": "185.217.171.68", + "ips": [ + "185.217.171.68" + ], "tcp": true, "udp": true }, @@ -52111,7 +54249,9 @@ "region": "Netherlands", "hostname": "nl406.nordvpn.com", "number": 406, - "ip": "185.217.171.133", + "ips": [ + "185.217.171.133" + ], "tcp": true, "udp": true }, @@ -52119,7 +54259,9 @@ "region": "Netherlands", "hostname": "nl407.nordvpn.com", "number": 407, - "ip": "185.217.171.199", + "ips": [ + "185.217.171.199" + ], "tcp": true, "udp": true }, @@ -52127,7 +54269,9 @@ "region": "Netherlands", "hostname": "nl408.nordvpn.com", "number": 408, - "ip": "185.229.58.3", + "ips": [ + "185.229.58.3" + ], "tcp": true, "udp": true }, @@ -52135,7 +54279,9 @@ "region": "Netherlands", "hostname": "nl409.nordvpn.com", "number": 409, - "ip": "185.229.58.129", + "ips": [ + "185.229.58.129" + ], "tcp": true, "udp": true }, @@ -52143,7 +54289,9 @@ "region": "Netherlands", "hostname": "nl716.nordvpn.com", "number": 716, - "ip": "213.232.87.178", + "ips": [ + "213.232.87.178" + ], "tcp": true, "udp": true }, @@ -52151,7 +54299,9 @@ "region": "Netherlands", "hostname": "nl717.nordvpn.com", "number": 717, - "ip": "213.232.87.180", + "ips": [ + "213.232.87.180" + ], "tcp": true, "udp": true }, @@ -52159,7 +54309,9 @@ "region": "Netherlands", "hostname": "nl718.nordvpn.com", "number": 718, - "ip": "213.232.87.182", + "ips": [ + "213.232.87.182" + ], "tcp": true, "udp": true }, @@ -52167,7 +54319,9 @@ "region": "Netherlands", "hostname": "nl719.nordvpn.com", "number": 719, - "ip": "213.232.87.184", + "ips": [ + "213.232.87.184" + ], "tcp": true, "udp": true }, @@ -52175,7 +54329,9 @@ "region": "Netherlands", "hostname": "nl720.nordvpn.com", "number": 720, - "ip": "213.232.87.186", + "ips": [ + "213.232.87.186" + ], "tcp": true, "udp": true }, @@ -52183,7 +54339,9 @@ "region": "Netherlands", "hostname": "nl721.nordvpn.com", "number": 721, - "ip": "213.232.87.188", + "ips": [ + "213.232.87.188" + ], "tcp": true, "udp": true }, @@ -52191,7 +54349,9 @@ "region": "Netherlands", "hostname": "nl722.nordvpn.com", "number": 722, - "ip": "213.232.87.190", + "ips": [ + "213.232.87.190" + ], "tcp": true, "udp": true }, @@ -52199,7 +54359,9 @@ "region": "Netherlands", "hostname": "nl723.nordvpn.com", "number": 723, - "ip": "213.232.87.192", + "ips": [ + "213.232.87.192" + ], "tcp": true, "udp": true }, @@ -52207,7 +54369,9 @@ "region": "Netherlands", "hostname": "nl724.nordvpn.com", "number": 724, - "ip": "213.232.87.194", + "ips": [ + "213.232.87.194" + ], "tcp": true, "udp": true }, @@ -52215,7 +54379,9 @@ "region": "Netherlands", "hostname": "nl725.nordvpn.com", "number": 725, - "ip": "213.232.87.196", + "ips": [ + "213.232.87.196" + ], "tcp": true, "udp": true }, @@ -52223,7 +54389,9 @@ "region": "Netherlands", "hostname": "nl726.nordvpn.com", "number": 726, - "ip": "213.232.87.198", + "ips": [ + "213.232.87.198" + ], "tcp": true, "udp": true }, @@ -52231,7 +54399,9 @@ "region": "Netherlands", "hostname": "nl727.nordvpn.com", "number": 727, - "ip": "213.232.87.200", + "ips": [ + "213.232.87.200" + ], "tcp": true, "udp": true }, @@ -52239,7 +54409,9 @@ "region": "Netherlands", "hostname": "nl728.nordvpn.com", "number": 728, - "ip": "213.232.87.202", + "ips": [ + "213.232.87.202" + ], "tcp": true, "udp": true }, @@ -52247,7 +54419,9 @@ "region": "Netherlands", "hostname": "nl729.nordvpn.com", "number": 729, - "ip": "213.232.87.204", + "ips": [ + "213.232.87.204" + ], "tcp": true, "udp": true }, @@ -52255,7 +54429,9 @@ "region": "Netherlands", "hostname": "nl730.nordvpn.com", "number": 730, - "ip": "213.232.87.206", + "ips": [ + "213.232.87.206" + ], "tcp": true, "udp": true }, @@ -52263,7 +54439,9 @@ "region": "Netherlands", "hostname": "nl731.nordvpn.com", "number": 731, - "ip": "213.232.87.208", + "ips": [ + "213.232.87.208" + ], "tcp": true, "udp": true }, @@ -52271,7 +54449,9 @@ "region": "Netherlands", "hostname": "nl732.nordvpn.com", "number": 732, - "ip": "213.232.87.210", + "ips": [ + "213.232.87.210" + ], "tcp": true, "udp": true }, @@ -52279,7 +54459,9 @@ "region": "Netherlands", "hostname": "nl733.nordvpn.com", "number": 733, - "ip": "213.232.87.212", + "ips": [ + "213.232.87.212" + ], "tcp": true, "udp": true }, @@ -52287,7 +54469,9 @@ "region": "Netherlands", "hostname": "nl734.nordvpn.com", "number": 734, - "ip": "213.232.87.214", + "ips": [ + "213.232.87.214" + ], "tcp": true, "udp": true }, @@ -52295,7 +54479,9 @@ "region": "Netherlands", "hostname": "nl754.nordvpn.com", "number": 754, - "ip": "195.181.173.200", + "ips": [ + "195.181.173.200" + ], "tcp": true, "udp": true }, @@ -52303,7 +54489,9 @@ "region": "Netherlands", "hostname": "nl755.nordvpn.com", "number": 755, - "ip": "195.181.173.104", + "ips": [ + "195.181.173.104" + ], "tcp": true, "udp": true }, @@ -52311,7 +54499,9 @@ "region": "Netherlands", "hostname": "nl756.nordvpn.com", "number": 756, - "ip": "185.229.191.101", + "ips": [ + "185.229.191.101" + ], "tcp": true, "udp": true }, @@ -52319,7 +54509,9 @@ "region": "Netherlands", "hostname": "nl757.nordvpn.com", "number": 757, - "ip": "213.152.188.36", + "ips": [ + "213.152.188.36" + ], "tcp": true, "udp": true }, @@ -52327,7 +54519,9 @@ "region": "Netherlands", "hostname": "nl767.nordvpn.com", "number": 767, - "ip": "185.59.222.116", + "ips": [ + "185.59.222.116" + ], "tcp": true, "udp": true }, @@ -52335,7 +54529,9 @@ "region": "Netherlands", "hostname": "nl815.nordvpn.com", "number": 815, - "ip": "178.239.173.251", + "ips": [ + "178.239.173.251" + ], "tcp": true, "udp": true }, @@ -52343,7 +54539,9 @@ "region": "Netherlands", "hostname": "nl816.nordvpn.com", "number": 816, - "ip": "178.239.173.247", + "ips": [ + "178.239.173.247" + ], "tcp": true, "udp": true }, @@ -52351,7 +54549,9 @@ "region": "Netherlands", "hostname": "nl817.nordvpn.com", "number": 817, - "ip": "178.239.173.243", + "ips": [ + "178.239.173.243" + ], "tcp": true, "udp": true }, @@ -52359,7 +54559,9 @@ "region": "Netherlands", "hostname": "nl818.nordvpn.com", "number": 818, - "ip": "178.239.173.239", + "ips": [ + "178.239.173.239" + ], "tcp": true, "udp": true }, @@ -52367,7 +54569,9 @@ "region": "Netherlands", "hostname": "nl819.nordvpn.com", "number": 819, - "ip": "178.239.173.235", + "ips": [ + "178.239.173.235" + ], "tcp": true, "udp": true }, @@ -52375,7 +54579,9 @@ "region": "Netherlands", "hostname": "nl820.nordvpn.com", "number": 820, - "ip": "178.239.173.231", + "ips": [ + "178.239.173.231" + ], "tcp": true, "udp": true }, @@ -52383,7 +54589,9 @@ "region": "Netherlands", "hostname": "nl821.nordvpn.com", "number": 821, - "ip": "178.239.173.227", + "ips": [ + "178.239.173.227" + ], "tcp": true, "udp": true }, @@ -52391,7 +54599,9 @@ "region": "Netherlands", "hostname": "nl822.nordvpn.com", "number": 822, - "ip": "178.239.173.223", + "ips": [ + "178.239.173.223" + ], "tcp": true, "udp": true }, @@ -52399,7 +54609,9 @@ "region": "Netherlands", "hostname": "nl823.nordvpn.com", "number": 823, - "ip": "178.239.173.219", + "ips": [ + "178.239.173.219" + ], "tcp": true, "udp": true }, @@ -52407,7 +54619,9 @@ "region": "Netherlands", "hostname": "nl824.nordvpn.com", "number": 824, - "ip": "178.239.173.215", + "ips": [ + "178.239.173.215" + ], "tcp": true, "udp": true }, @@ -52415,7 +54629,9 @@ "region": "Netherlands", "hostname": "nl825.nordvpn.com", "number": 825, - "ip": "178.239.173.211", + "ips": [ + "178.239.173.211" + ], "tcp": true, "udp": true }, @@ -52423,7 +54639,9 @@ "region": "Netherlands", "hostname": "nl826.nordvpn.com", "number": 826, - "ip": "178.239.173.207", + "ips": [ + "178.239.173.207" + ], "tcp": true, "udp": true }, @@ -52431,7 +54649,9 @@ "region": "Netherlands", "hostname": "nl827.nordvpn.com", "number": 827, - "ip": "178.239.173.203", + "ips": [ + "178.239.173.203" + ], "tcp": true, "udp": true }, @@ -52439,7 +54659,9 @@ "region": "Netherlands", "hostname": "nl828.nordvpn.com", "number": 828, - "ip": "178.239.173.199", + "ips": [ + "178.239.173.199" + ], "tcp": true, "udp": true }, @@ -52447,7 +54669,9 @@ "region": "Netherlands", "hostname": "nl829.nordvpn.com", "number": 829, - "ip": "178.239.173.195", + "ips": [ + "178.239.173.195" + ], "tcp": true, "udp": true }, @@ -52455,7 +54679,9 @@ "region": "Netherlands", "hostname": "nl830.nordvpn.com", "number": 830, - "ip": "178.239.173.191", + "ips": [ + "178.239.173.191" + ], "tcp": true, "udp": true }, @@ -52463,7 +54689,9 @@ "region": "Netherlands", "hostname": "nl831.nordvpn.com", "number": 831, - "ip": "178.239.173.187", + "ips": [ + "178.239.173.187" + ], "tcp": true, "udp": true }, @@ -52471,7 +54699,9 @@ "region": "Netherlands", "hostname": "nl832.nordvpn.com", "number": 832, - "ip": "178.239.173.183", + "ips": [ + "178.239.173.183" + ], "tcp": true, "udp": true }, @@ -52479,7 +54709,9 @@ "region": "Netherlands", "hostname": "nl833.nordvpn.com", "number": 833, - "ip": "178.239.173.179", + "ips": [ + "178.239.173.179" + ], "tcp": true, "udp": true }, @@ -52487,7 +54719,9 @@ "region": "Netherlands", "hostname": "nl834.nordvpn.com", "number": 834, - "ip": "178.239.173.175", + "ips": [ + "178.239.173.175" + ], "tcp": true, "udp": true }, @@ -52495,7 +54729,9 @@ "region": "Netherlands", "hostname": "nl835.nordvpn.com", "number": 835, - "ip": "178.239.173.171", + "ips": [ + "178.239.173.171" + ], "tcp": true, "udp": true }, @@ -52503,7 +54739,9 @@ "region": "Netherlands", "hostname": "nl836.nordvpn.com", "number": 836, - "ip": "178.239.173.167", + "ips": [ + "178.239.173.167" + ], "tcp": true, "udp": true }, @@ -52511,7 +54749,9 @@ "region": "Netherlands", "hostname": "nl837.nordvpn.com", "number": 837, - "ip": "178.239.173.163", + "ips": [ + "178.239.173.163" + ], "tcp": true, "udp": true }, @@ -52519,7 +54759,9 @@ "region": "Netherlands", "hostname": "nl839.nordvpn.com", "number": 839, - "ip": "178.239.173.159", + "ips": [ + "178.239.173.159" + ], "tcp": true, "udp": true }, @@ -52527,7 +54769,9 @@ "region": "Netherlands", "hostname": "nl840.nordvpn.com", "number": 840, - "ip": "194.127.172.67", + "ips": [ + "194.127.172.67" + ], "tcp": true, "udp": true }, @@ -52535,7 +54779,9 @@ "region": "Netherlands", "hostname": "nl841.nordvpn.com", "number": 841, - "ip": "194.127.172.70", + "ips": [ + "194.127.172.70" + ], "tcp": true, "udp": true }, @@ -52543,7 +54789,9 @@ "region": "Netherlands", "hostname": "nl842.nordvpn.com", "number": 842, - "ip": "194.127.172.73", + "ips": [ + "194.127.172.73" + ], "tcp": true, "udp": true }, @@ -52551,7 +54799,9 @@ "region": "Netherlands", "hostname": "nl843.nordvpn.com", "number": 843, - "ip": "194.127.172.76", + "ips": [ + "194.127.172.76" + ], "tcp": true, "udp": true }, @@ -52559,7 +54809,9 @@ "region": "Netherlands", "hostname": "nl844.nordvpn.com", "number": 844, - "ip": "194.127.172.79", + "ips": [ + "194.127.172.79" + ], "tcp": true, "udp": true }, @@ -52567,7 +54819,9 @@ "region": "Netherlands", "hostname": "nl845.nordvpn.com", "number": 845, - "ip": "194.127.172.82", + "ips": [ + "194.127.172.82" + ], "tcp": true, "udp": true }, @@ -52575,7 +54829,9 @@ "region": "Netherlands", "hostname": "nl846.nordvpn.com", "number": 846, - "ip": "194.127.172.85", + "ips": [ + "194.127.172.85" + ], "tcp": true, "udp": true }, @@ -52583,7 +54839,9 @@ "region": "Netherlands", "hostname": "nl847.nordvpn.com", "number": 847, - "ip": "194.127.172.88", + "ips": [ + "194.127.172.88" + ], "tcp": true, "udp": true }, @@ -52591,7 +54849,9 @@ "region": "Netherlands", "hostname": "nl848.nordvpn.com", "number": 848, - "ip": "194.127.172.91", + "ips": [ + "194.127.172.91" + ], "tcp": true, "udp": true }, @@ -52599,7 +54859,9 @@ "region": "Netherlands", "hostname": "nl849.nordvpn.com", "number": 849, - "ip": "194.127.172.94", + "ips": [ + "194.127.172.94" + ], "tcp": true, "udp": true }, @@ -52607,7 +54869,9 @@ "region": "Netherlands", "hostname": "nl850.nordvpn.com", "number": 850, - "ip": "194.127.172.97", + "ips": [ + "194.127.172.97" + ], "tcp": true, "udp": true }, @@ -52615,7 +54879,9 @@ "region": "Netherlands", "hostname": "nl851.nordvpn.com", "number": 851, - "ip": "194.127.172.100", + "ips": [ + "194.127.172.100" + ], "tcp": true, "udp": true }, @@ -52623,7 +54889,9 @@ "region": "Netherlands", "hostname": "nl852.nordvpn.com", "number": 852, - "ip": "194.127.172.103", + "ips": [ + "194.127.172.103" + ], "tcp": true, "udp": true }, @@ -52631,7 +54899,9 @@ "region": "Netherlands", "hostname": "nl853.nordvpn.com", "number": 853, - "ip": "194.127.172.106", + "ips": [ + "194.127.172.106" + ], "tcp": true, "udp": true }, @@ -52639,7 +54909,9 @@ "region": "Netherlands", "hostname": "nl854.nordvpn.com", "number": 854, - "ip": "194.127.172.109", + "ips": [ + "194.127.172.109" + ], "tcp": true, "udp": true }, @@ -52647,7 +54919,9 @@ "region": "Netherlands", "hostname": "nl863.nordvpn.com", "number": 863, - "ip": "213.232.87.57", + "ips": [ + "213.232.87.57" + ], "tcp": true, "udp": true }, @@ -52655,7 +54929,9 @@ "region": "Netherlands", "hostname": "nl864.nordvpn.com", "number": 864, - "ip": "213.232.87.59", + "ips": [ + "213.232.87.59" + ], "tcp": true, "udp": true }, @@ -52663,7 +54939,9 @@ "region": "Netherlands", "hostname": "nl865.nordvpn.com", "number": 865, - "ip": "213.232.87.61", + "ips": [ + "213.232.87.61" + ], "tcp": true, "udp": true }, @@ -52671,7 +54949,9 @@ "region": "Netherlands", "hostname": "nl866.nordvpn.com", "number": 866, - "ip": "213.232.87.63", + "ips": [ + "213.232.87.63" + ], "tcp": true, "udp": true }, @@ -52679,7 +54959,9 @@ "region": "Netherlands", "hostname": "nl867.nordvpn.com", "number": 867, - "ip": "213.232.87.65", + "ips": [ + "213.232.87.65" + ], "tcp": true, "udp": true }, @@ -52687,7 +54969,9 @@ "region": "Netherlands", "hostname": "nl868.nordvpn.com", "number": 868, - "ip": "213.232.87.67", + "ips": [ + "213.232.87.67" + ], "tcp": true, "udp": true }, @@ -52695,7 +54979,9 @@ "region": "Netherlands", "hostname": "nl869.nordvpn.com", "number": 869, - "ip": "213.232.87.69", + "ips": [ + "213.232.87.69" + ], "tcp": true, "udp": true }, @@ -52703,7 +54989,9 @@ "region": "Netherlands", "hostname": "nl870.nordvpn.com", "number": 870, - "ip": "213.232.87.71", + "ips": [ + "213.232.87.71" + ], "tcp": true, "udp": true }, @@ -52711,7 +54999,9 @@ "region": "Netherlands", "hostname": "nl871.nordvpn.com", "number": 871, - "ip": "213.232.87.73", + "ips": [ + "213.232.87.73" + ], "tcp": true, "udp": true }, @@ -52719,7 +55009,9 @@ "region": "Netherlands", "hostname": "nl872.nordvpn.com", "number": 872, - "ip": "213.232.87.75", + "ips": [ + "213.232.87.75" + ], "tcp": true, "udp": true }, @@ -52727,7 +55019,9 @@ "region": "Netherlands", "hostname": "nl873.nordvpn.com", "number": 873, - "ip": "213.232.87.77", + "ips": [ + "213.232.87.77" + ], "tcp": true, "udp": true }, @@ -52735,7 +55029,9 @@ "region": "Netherlands", "hostname": "nl874.nordvpn.com", "number": 874, - "ip": "213.232.87.79", + "ips": [ + "213.232.87.79" + ], "tcp": true, "udp": true }, @@ -52743,7 +55039,9 @@ "region": "Netherlands", "hostname": "nl875.nordvpn.com", "number": 875, - "ip": "213.232.87.81", + "ips": [ + "213.232.87.81" + ], "tcp": true, "udp": true }, @@ -52751,7 +55049,9 @@ "region": "Netherlands", "hostname": "nl876.nordvpn.com", "number": 876, - "ip": "213.232.87.83", + "ips": [ + "213.232.87.83" + ], "tcp": true, "udp": true }, @@ -52759,7 +55059,9 @@ "region": "Netherlands", "hostname": "nl877.nordvpn.com", "number": 877, - "ip": "213.232.87.85", + "ips": [ + "213.232.87.85" + ], "tcp": true, "udp": true }, @@ -52767,7 +55069,9 @@ "region": "Netherlands", "hostname": "nl878.nordvpn.com", "number": 878, - "ip": "213.232.87.87", + "ips": [ + "213.232.87.87" + ], "tcp": true, "udp": true }, @@ -52775,7 +55079,9 @@ "region": "Netherlands", "hostname": "nl879.nordvpn.com", "number": 879, - "ip": "213.232.87.89", + "ips": [ + "213.232.87.89" + ], "tcp": true, "udp": true }, @@ -52783,7 +55089,9 @@ "region": "Netherlands", "hostname": "nl880.nordvpn.com", "number": 880, - "ip": "213.232.87.91", + "ips": [ + "213.232.87.91" + ], "tcp": true, "udp": true }, @@ -52791,7 +55099,9 @@ "region": "Netherlands", "hostname": "nl881.nordvpn.com", "number": 881, - "ip": "213.232.87.93", + "ips": [ + "213.232.87.93" + ], "tcp": true, "udp": true }, @@ -52799,7 +55109,9 @@ "region": "Netherlands", "hostname": "nl882.nordvpn.com", "number": 882, - "ip": "213.232.87.95", + "ips": [ + "213.232.87.95" + ], "tcp": true, "udp": true }, @@ -52807,7 +55119,9 @@ "region": "Netherlands", "hostname": "nl883.nordvpn.com", "number": 883, - "ip": "213.232.87.97", + "ips": [ + "213.232.87.97" + ], "tcp": true, "udp": true }, @@ -52815,7 +55129,9 @@ "region": "Netherlands", "hostname": "nl884.nordvpn.com", "number": 884, - "ip": "213.232.87.99", + "ips": [ + "213.232.87.99" + ], "tcp": true, "udp": true }, @@ -52823,7 +55139,9 @@ "region": "Netherlands", "hostname": "nl885.nordvpn.com", "number": 885, - "ip": "213.232.87.101", + "ips": [ + "213.232.87.101" + ], "tcp": true, "udp": true }, @@ -52831,7 +55149,9 @@ "region": "Netherlands", "hostname": "nl886.nordvpn.com", "number": 886, - "ip": "213.232.87.103", + "ips": [ + "213.232.87.103" + ], "tcp": true, "udp": true }, @@ -52839,7 +55159,9 @@ "region": "Netherlands", "hostname": "nl887.nordvpn.com", "number": 887, - "ip": "213.232.87.105", + "ips": [ + "213.232.87.105" + ], "tcp": true, "udp": true }, @@ -52847,7 +55169,9 @@ "region": "Netherlands", "hostname": "nl888.nordvpn.com", "number": 888, - "ip": "213.232.87.107", + "ips": [ + "213.232.87.107" + ], "tcp": true, "udp": true }, @@ -52855,7 +55179,9 @@ "region": "Netherlands", "hostname": "nl889.nordvpn.com", "number": 889, - "ip": "213.232.87.109", + "ips": [ + "213.232.87.109" + ], "tcp": true, "udp": true }, @@ -52863,7 +55189,9 @@ "region": "Netherlands", "hostname": "nl890.nordvpn.com", "number": 890, - "ip": "213.232.87.111", + "ips": [ + "213.232.87.111" + ], "tcp": true, "udp": true }, @@ -52871,7 +55199,9 @@ "region": "Netherlands", "hostname": "nl891.nordvpn.com", "number": 891, - "ip": "213.232.87.113", + "ips": [ + "213.232.87.113" + ], "tcp": true, "udp": true }, @@ -52879,7 +55209,9 @@ "region": "Netherlands", "hostname": "nl892.nordvpn.com", "number": 892, - "ip": "213.232.87.115", + "ips": [ + "213.232.87.115" + ], "tcp": true, "udp": true }, @@ -52887,7 +55219,9 @@ "region": "Netherlands", "hostname": "nl893.nordvpn.com", "number": 893, - "ip": "213.232.87.117", + "ips": [ + "213.232.87.117" + ], "tcp": true, "udp": true }, @@ -52895,7 +55229,9 @@ "region": "Netherlands", "hostname": "nl894.nordvpn.com", "number": 894, - "ip": "213.232.87.119", + "ips": [ + "213.232.87.119" + ], "tcp": true, "udp": true }, @@ -52903,7 +55239,9 @@ "region": "Netherlands", "hostname": "nl895.nordvpn.com", "number": 895, - "ip": "213.232.87.121", + "ips": [ + "213.232.87.121" + ], "tcp": true, "udp": true }, @@ -52911,7 +55249,9 @@ "region": "Netherlands", "hostname": "nl896.nordvpn.com", "number": 896, - "ip": "213.232.87.123", + "ips": [ + "213.232.87.123" + ], "tcp": true, "udp": true }, @@ -52919,7 +55259,9 @@ "region": "Netherlands", "hostname": "nl897.nordvpn.com", "number": 897, - "ip": "213.232.87.125", + "ips": [ + "213.232.87.125" + ], "tcp": true, "udp": true }, @@ -52927,7 +55269,9 @@ "region": "Netherlands", "hostname": "nl898.nordvpn.com", "number": 898, - "ip": "213.232.87.127", + "ips": [ + "213.232.87.127" + ], "tcp": true, "udp": true }, @@ -52935,7 +55279,9 @@ "region": "Netherlands", "hostname": "nl899.nordvpn.com", "number": 899, - "ip": "213.232.87.129", + "ips": [ + "213.232.87.129" + ], "tcp": true, "udp": true }, @@ -52943,7 +55289,9 @@ "region": "Netherlands", "hostname": "nl900.nordvpn.com", "number": 900, - "ip": "213.232.87.131", + "ips": [ + "213.232.87.131" + ], "tcp": true, "udp": true }, @@ -52951,7 +55299,9 @@ "region": "Netherlands", "hostname": "nl901.nordvpn.com", "number": 901, - "ip": "213.232.87.133", + "ips": [ + "213.232.87.133" + ], "tcp": true, "udp": true }, @@ -52959,7 +55309,9 @@ "region": "Netherlands", "hostname": "nl902.nordvpn.com", "number": 902, - "ip": "213.232.87.135", + "ips": [ + "213.232.87.135" + ], "tcp": true, "udp": true }, @@ -52967,7 +55319,9 @@ "region": "Netherlands", "hostname": "nl903.nordvpn.com", "number": 903, - "ip": "213.232.87.137", + "ips": [ + "213.232.87.137" + ], "tcp": true, "udp": true }, @@ -52975,7 +55329,9 @@ "region": "Netherlands", "hostname": "nl910.nordvpn.com", "number": 910, - "ip": "213.152.188.3", + "ips": [ + "213.152.188.3" + ], "tcp": true, "udp": true }, @@ -52983,7 +55339,9 @@ "region": "Netherlands", "hostname": "nl911.nordvpn.com", "number": 911, - "ip": "213.152.188.6", + "ips": [ + "213.152.188.6" + ], "tcp": true, "udp": true }, @@ -52991,7 +55349,9 @@ "region": "Netherlands", "hostname": "nl912.nordvpn.com", "number": 912, - "ip": "213.152.188.9", + "ips": [ + "213.152.188.9" + ], "tcp": true, "udp": true }, @@ -52999,7 +55359,9 @@ "region": "Netherlands", "hostname": "nl913.nordvpn.com", "number": 913, - "ip": "213.152.188.12", + "ips": [ + "213.152.188.12" + ], "tcp": true, "udp": true }, @@ -53007,7 +55369,9 @@ "region": "Netherlands", "hostname": "nl914.nordvpn.com", "number": 914, - "ip": "213.152.188.15", + "ips": [ + "213.152.188.15" + ], "tcp": true, "udp": true }, @@ -53015,7 +55379,9 @@ "region": "Netherlands", "hostname": "nl915.nordvpn.com", "number": 915, - "ip": "213.152.188.18", + "ips": [ + "213.152.188.18" + ], "tcp": true, "udp": true }, @@ -53023,7 +55389,9 @@ "region": "Netherlands", "hostname": "nl916.nordvpn.com", "number": 916, - "ip": "213.152.188.21", + "ips": [ + "213.152.188.21" + ], "tcp": true, "udp": true }, @@ -53031,7 +55399,9 @@ "region": "Netherlands", "hostname": "nl917.nordvpn.com", "number": 917, - "ip": "213.152.188.24", + "ips": [ + "213.152.188.24" + ], "tcp": true, "udp": true }, @@ -53039,7 +55409,9 @@ "region": "Netherlands", "hostname": "nl918.nordvpn.com", "number": 918, - "ip": "213.152.188.27", + "ips": [ + "213.152.188.27" + ], "tcp": true, "udp": true }, @@ -53047,7 +55419,9 @@ "region": "Netherlands", "hostname": "nl919.nordvpn.com", "number": 919, - "ip": "213.152.188.30", + "ips": [ + "213.152.188.30" + ], "tcp": true, "udp": true }, @@ -53055,7 +55429,9 @@ "region": "Netherlands", "hostname": "nl920.nordvpn.com", "number": 920, - "ip": "213.152.188.33", + "ips": [ + "213.152.188.33" + ], "tcp": true, "udp": true }, @@ -53063,7 +55439,9 @@ "region": "Netherlands", "hostname": "nl923.nordvpn.com", "number": 923, - "ip": "213.152.188.67", + "ips": [ + "213.152.188.67" + ], "tcp": true, "udp": true }, @@ -53071,7 +55449,9 @@ "region": "Netherlands", "hostname": "nl924.nordvpn.com", "number": 924, - "ip": "213.152.188.70", + "ips": [ + "213.152.188.70" + ], "tcp": true, "udp": true }, @@ -53079,7 +55459,9 @@ "region": "Netherlands", "hostname": "nl925.nordvpn.com", "number": 925, - "ip": "213.152.188.73", + "ips": [ + "213.152.188.73" + ], "tcp": true, "udp": true }, @@ -53087,7 +55469,9 @@ "region": "Netherlands", "hostname": "nl926.nordvpn.com", "number": 926, - "ip": "213.152.188.76", + "ips": [ + "213.152.188.76" + ], "tcp": true, "udp": true }, @@ -53095,7 +55479,9 @@ "region": "Netherlands", "hostname": "nl927.nordvpn.com", "number": 927, - "ip": "213.152.188.79", + "ips": [ + "213.152.188.79" + ], "tcp": true, "udp": true }, @@ -53103,7 +55489,9 @@ "region": "Netherlands", "hostname": "nl928.nordvpn.com", "number": 928, - "ip": "213.152.188.82", + "ips": [ + "213.152.188.82" + ], "tcp": true, "udp": true }, @@ -53111,7 +55499,9 @@ "region": "Netherlands", "hostname": "nl929.nordvpn.com", "number": 929, - "ip": "213.152.188.85", + "ips": [ + "213.152.188.85" + ], "tcp": true, "udp": true }, @@ -53119,7 +55509,9 @@ "region": "Netherlands", "hostname": "nl930.nordvpn.com", "number": 930, - "ip": "213.152.188.88", + "ips": [ + "213.152.188.88" + ], "tcp": true, "udp": true }, @@ -53127,7 +55519,9 @@ "region": "Netherlands", "hostname": "nl931.nordvpn.com", "number": 931, - "ip": "213.152.188.91", + "ips": [ + "213.152.188.91" + ], "tcp": true, "udp": true }, @@ -53135,7 +55529,9 @@ "region": "Netherlands", "hostname": "nl932.nordvpn.com", "number": 932, - "ip": "213.152.188.94", + "ips": [ + "213.152.188.94" + ], "tcp": true, "udp": true }, @@ -53143,7 +55539,9 @@ "region": "Netherlands", "hostname": "nl933.nordvpn.com", "number": 933, - "ip": "213.152.188.97", + "ips": [ + "213.152.188.97" + ], "tcp": true, "udp": true }, @@ -53151,87 +55549,9 @@ "region": "Netherlands", "hostname": "nl934.nordvpn.com", "number": 934, - "ip": "213.152.188.100", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl935.nordvpn.com", - "number": 935, - "ip": "134.19.185.3", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl936.nordvpn.com", - "number": 936, - "ip": "134.19.185.6", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl937.nordvpn.com", - "number": 937, - "ip": "134.19.185.9", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl938.nordvpn.com", - "number": 938, - "ip": "134.19.185.12", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl939.nordvpn.com", - "number": 939, - "ip": "134.19.185.15", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl940.nordvpn.com", - "number": 940, - "ip": "134.19.185.18", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl941.nordvpn.com", - "number": 941, - "ip": "134.19.185.24", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl942.nordvpn.com", - "number": 942, - "ip": "134.19.185.27", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl943.nordvpn.com", - "number": 943, - "ip": "134.19.185.30", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl944.nordvpn.com", - "number": 944, - "ip": "134.19.185.33", + "ips": [ + "213.152.188.100" + ], "tcp": true, "udp": true }, @@ -53239,7 +55559,9 @@ "region": "Netherlands", "hostname": "nl945.nordvpn.com", "number": 945, - "ip": "213.152.188.227", + "ips": [ + "213.152.188.227" + ], "tcp": true, "udp": true }, @@ -53247,55 +55569,9 @@ "region": "Netherlands", "hostname": "nl946.nordvpn.com", "number": 946, - "ip": "213.152.188.228", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl951.nordvpn.com", - "number": 951, - "ip": "134.19.185.71", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl952.nordvpn.com", - "number": 952, - "ip": "134.19.185.79", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl953.nordvpn.com", - "number": 953, - "ip": "134.19.185.84", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl954.nordvpn.com", - "number": 954, - "ip": "134.19.185.88", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl955.nordvpn.com", - "number": 955, - "ip": "134.19.185.92", - "tcp": true, - "udp": true - }, - { - "region": "Netherlands", - "hostname": "nl956.nordvpn.com", - "number": 956, - "ip": "134.19.185.96", + "ips": [ + "213.152.188.228" + ], "tcp": true, "udp": true }, @@ -53303,23 +55579,369 @@ "region": "Netherlands", "hostname": "nl957.nordvpn.com", "number": 957, - "ip": "213.152.188.203", + "ips": [ + "213.152.188.203" + ], "tcp": true, "udp": true }, { - "region": "New Zealand", - "hostname": "nz66.nordvpn.com", - "number": 66, - "ip": "180.149.231.155", + "region": "Netherlands", + "hostname": "nl958.nordvpn.com", + "number": 958, + "ips": [ + "213.152.188.204" + ], "tcp": true, "udp": true }, { - "region": "New Zealand", - "hostname": "nz67.nordvpn.com", - "number": 67, - "ip": "180.149.231.147", + "region": "Netherlands", + "hostname": "nl960.nordvpn.com", + "number": 960, + "ips": [ + "194.49.52.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl961.nordvpn.com", + "number": 961, + "ips": [ + "194.49.52.17" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl962.nordvpn.com", + "number": 962, + "ips": [ + "194.49.52.32" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl963.nordvpn.com", + "number": 963, + "ips": [ + "194.49.52.47" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl964.nordvpn.com", + "number": 964, + "ips": [ + "194.49.52.62" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl965.nordvpn.com", + "number": 965, + "ips": [ + "194.49.52.77" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl966.nordvpn.com", + "number": 966, + "ips": [ + "194.49.52.92" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl967.nordvpn.com", + "number": 967, + "ips": [ + "194.49.52.107" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl968.nordvpn.com", + "number": 968, + "ips": [ + "194.49.52.122" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl970.nordvpn.com", + "number": 970, + "ips": [ + "143.244.41.1" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl971.nordvpn.com", + "number": 971, + "ips": [ + "143.244.41.9" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl972.nordvpn.com", + "number": 972, + "ips": [ + "143.244.41.17" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl973.nordvpn.com", + "number": 973, + "ips": [ + "143.244.41.25" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl974.nordvpn.com", + "number": 974, + "ips": [ + "143.244.41.33" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl975.nordvpn.com", + "number": 975, + "ips": [ + "143.244.41.41" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl976.nordvpn.com", + "number": 976, + "ips": [ + "143.244.41.49" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl977.nordvpn.com", + "number": 977, + "ips": [ + "143.244.41.57" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl978.nordvpn.com", + "number": 978, + "ips": [ + "143.244.41.65" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl979.nordvpn.com", + "number": 979, + "ips": [ + "143.244.41.73" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl980.nordvpn.com", + "number": 980, + "ips": [ + "143.244.41.81" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl981.nordvpn.com", + "number": 981, + "ips": [ + "143.244.41.89" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl982.nordvpn.com", + "number": 982, + "ips": [ + "143.244.41.96" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl983.nordvpn.com", + "number": 983, + "ips": [ + "143.244.41.103" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl984.nordvpn.com", + "number": 984, + "ips": [ + "143.244.41.110" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl985.nordvpn.com", + "number": 985, + "ips": [ + "143.244.41.117" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl992.nordvpn.com", + "number": 992, + "ips": [ + "213.152.162.214" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl993.nordvpn.com", + "number": 993, + "ips": [ + "213.152.162.218" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl994.nordvpn.com", + "number": 994, + "ips": [ + "213.152.162.222" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl995.nordvpn.com", + "number": 995, + "ips": [ + "213.152.162.226" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl996.nordvpn.com", + "number": 996, + "ips": [ + "213.152.162.230" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl997.nordvpn.com", + "number": 997, + "ips": [ + "213.152.162.234" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl998.nordvpn.com", + "number": 998, + "ips": [ + "213.152.162.238" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl999.nordvpn.com", + "number": 999, + "ips": [ + "213.152.162.242" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl1000.nordvpn.com", + "number": 1000, + "ips": [ + "213.152.162.246" + ], + "tcp": true, + "udp": true + }, + { + "region": "Netherlands", + "hostname": "nl1001.nordvpn.com", + "number": 1001, + "ips": [ + "213.152.162.250" + ], "tcp": true, "udp": true }, @@ -53327,111 +55949,9 @@ "region": "New Zealand", "hostname": "nz68.nordvpn.com", "number": 68, - "ip": "103.62.49.193", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz69.nordvpn.com", - "number": 69, - "ip": "103.62.49.198", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz70.nordvpn.com", - "number": 70, - "ip": "103.62.49.203", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz71.nordvpn.com", - "number": 71, - "ip": "103.62.49.208", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz72.nordvpn.com", - "number": 72, - "ip": "103.62.49.213", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz73.nordvpn.com", - "number": 73, - "ip": "103.62.49.218", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz74.nordvpn.com", - "number": 74, - "ip": "180.149.231.211", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz75.nordvpn.com", - "number": 75, - "ip": "180.149.231.203", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz76.nordvpn.com", - "number": 76, - "ip": "180.149.231.195", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz77.nordvpn.com", - "number": 77, - "ip": "180.149.231.91", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz78.nordvpn.com", - "number": 78, - "ip": "180.149.231.251", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz79.nordvpn.com", - "number": 79, - "ip": "180.149.231.241", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz80.nordvpn.com", - "number": 80, - "ip": "180.149.231.99", - "tcp": true, - "udp": true - }, - { - "region": "New Zealand", - "hostname": "nz81.nordvpn.com", - "number": 81, - "ip": "180.149.231.83", + "ips": [ + "103.62.49.193" + ], "tcp": true, "udp": true }, @@ -53439,7 +55959,9 @@ "region": "New Zealand", "hostname": "nz82.nordvpn.com", "number": 82, - "ip": "103.62.49.223", + "ips": [ + "103.62.49.223" + ], "tcp": true, "udp": true }, @@ -53447,7 +55969,9 @@ "region": "New Zealand", "hostname": "nz83.nordvpn.com", "number": 83, - "ip": "103.62.49.228", + "ips": [ + "103.62.49.228" + ], "tcp": true, "udp": true }, @@ -53455,7 +55979,9 @@ "region": "New Zealand", "hostname": "nz84.nordvpn.com", "number": 84, - "ip": "103.62.49.233", + "ips": [ + "103.62.49.233" + ], "tcp": true, "udp": true }, @@ -53463,7 +55989,9 @@ "region": "New Zealand", "hostname": "nz85.nordvpn.com", "number": 85, - "ip": "103.62.49.238", + "ips": [ + "103.62.49.238" + ], "tcp": true, "udp": true }, @@ -53471,7 +55999,9 @@ "region": "New Zealand", "hostname": "nz86.nordvpn.com", "number": 86, - "ip": "116.90.74.67", + "ips": [ + "116.90.74.67" + ], "tcp": true, "udp": true }, @@ -53479,7 +56009,9 @@ "region": "New Zealand", "hostname": "nz87.nordvpn.com", "number": 87, - "ip": "116.90.74.75", + "ips": [ + "116.90.74.75" + ], "tcp": true, "udp": true }, @@ -53487,7 +56019,9 @@ "region": "New Zealand", "hostname": "nz88.nordvpn.com", "number": 88, - "ip": "116.90.74.83", + "ips": [ + "116.90.74.83" + ], "tcp": true, "udp": true }, @@ -53495,7 +56029,9 @@ "region": "New Zealand", "hostname": "nz89.nordvpn.com", "number": 89, - "ip": "116.90.74.91", + "ips": [ + "116.90.74.91" + ], "tcp": true, "udp": true }, @@ -53503,7 +56039,9 @@ "region": "New Zealand", "hostname": "nz90.nordvpn.com", "number": 90, - "ip": "116.90.74.99", + "ips": [ + "116.90.74.99" + ], "tcp": true, "udp": true }, @@ -53511,7 +56049,169 @@ "region": "New Zealand", "hostname": "nz91.nordvpn.com", "number": 91, - "ip": "116.90.74.107", + "ips": [ + "116.90.74.107" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz92.nordvpn.com", + "number": 92, + "ips": [ + "180.149.231.146" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz93.nordvpn.com", + "number": 93, + "ips": [ + "180.149.231.150" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz94.nordvpn.com", + "number": 94, + "ips": [ + "180.149.231.154" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz95.nordvpn.com", + "number": 95, + "ips": [ + "180.149.231.242" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz96.nordvpn.com", + "number": 96, + "ips": [ + "180.149.231.249" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz97.nordvpn.com", + "number": 97, + "ips": [ + "180.149.231.194" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz98.nordvpn.com", + "number": 98, + "ips": [ + "180.149.231.201" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz99.nordvpn.com", + "number": 99, + "ips": [ + "180.149.231.82" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz100.nordvpn.com", + "number": 100, + "ips": [ + "116.90.74.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz101.nordvpn.com", + "number": 101, + "ips": [ + "116.90.74.123" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz102.nordvpn.com", + "number": 102, + "ips": [ + "116.90.74.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz103.nordvpn.com", + "number": 103, + "ips": [ + "116.90.74.139" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz104.nordvpn.com", + "number": 104, + "ips": [ + "116.90.74.147" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz105.nordvpn.com", + "number": 105, + "ips": [ + "116.90.74.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz106.nordvpn.com", + "number": 106, + "ips": [ + "116.90.74.163" + ], + "tcp": true, + "udp": true + }, + { + "region": "New Zealand", + "hostname": "nz107.nordvpn.com", + "number": 107, + "ips": [ + "116.90.74.235" + ], "tcp": true, "udp": true }, @@ -53519,7 +56219,9 @@ "region": "North Macedonia", "hostname": "mk9.nordvpn.com", "number": 9, - "ip": "185.225.28.43", + "ips": [ + "185.225.28.43" + ], "tcp": true, "udp": true }, @@ -53527,7 +56229,9 @@ "region": "North Macedonia", "hostname": "mk10.nordvpn.com", "number": 10, - "ip": "185.225.28.35", + "ips": [ + "185.225.28.35" + ], "tcp": true, "udp": true }, @@ -53535,7 +56239,9 @@ "region": "Norway", "hostname": "no140.nordvpn.com", "number": 140, - "ip": "37.120.203.155", + "ips": [ + "37.120.203.155" + ], "tcp": true, "udp": true }, @@ -53543,7 +56249,9 @@ "region": "Norway", "hostname": "no141.nordvpn.com", "number": 141, - "ip": "37.120.203.163", + "ips": [ + "37.120.203.163" + ], "tcp": true, "udp": true }, @@ -53551,7 +56259,9 @@ "region": "Norway", "hostname": "no142.nordvpn.com", "number": 142, - "ip": "37.120.203.171", + "ips": [ + "37.120.203.171" + ], "tcp": true, "udp": true }, @@ -53559,7 +56269,9 @@ "region": "Norway", "hostname": "no143.nordvpn.com", "number": 143, - "ip": "37.120.203.179", + "ips": [ + "37.120.203.179" + ], "tcp": true, "udp": true }, @@ -53567,7 +56279,9 @@ "region": "Norway", "hostname": "no144.nordvpn.com", "number": 144, - "ip": "37.120.203.187", + "ips": [ + "37.120.203.187" + ], "tcp": true, "udp": true }, @@ -53575,7 +56289,9 @@ "region": "Norway", "hostname": "no145.nordvpn.com", "number": 145, - "ip": "37.120.203.195", + "ips": [ + "37.120.203.195" + ], "tcp": true, "udp": true }, @@ -53583,7 +56299,9 @@ "region": "Norway", "hostname": "no146.nordvpn.com", "number": 146, - "ip": "37.120.203.203", + "ips": [ + "37.120.203.203" + ], "tcp": true, "udp": true }, @@ -53591,7 +56309,9 @@ "region": "Norway", "hostname": "no147.nordvpn.com", "number": 147, - "ip": "37.120.203.211", + "ips": [ + "37.120.203.211" + ], "tcp": true, "udp": true }, @@ -53599,7 +56319,9 @@ "region": "Norway", "hostname": "no148.nordvpn.com", "number": 148, - "ip": "37.120.203.219", + "ips": [ + "37.120.203.219" + ], "tcp": true, "udp": true }, @@ -53607,15 +56329,9 @@ "region": "Norway", "hostname": "no149.nordvpn.com", "number": 149, - "ip": "95.174.66.27", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no150.nordvpn.com", - "number": 150, - "ip": "185.206.225.196", + "ips": [ + "95.174.66.27" + ], "tcp": true, "udp": true }, @@ -53623,87 +56339,9 @@ "region": "Norway", "hostname": "no151.nordvpn.com", "number": 151, - "ip": "82.102.22.92", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no152.nordvpn.com", - "number": 152, - "ip": "84.247.50.35", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no153.nordvpn.com", - "number": 153, - "ip": "84.247.50.38", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no154.nordvpn.com", - "number": 154, - "ip": "84.247.50.41", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no155.nordvpn.com", - "number": 155, - "ip": "84.247.50.44", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no156.nordvpn.com", - "number": 156, - "ip": "84.247.50.47", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no157.nordvpn.com", - "number": 157, - "ip": "84.247.50.50", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no158.nordvpn.com", - "number": 158, - "ip": "84.247.50.53", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no159.nordvpn.com", - "number": 159, - "ip": "84.247.50.56", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no160.nordvpn.com", - "number": 160, - "ip": "84.247.50.59", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no161.nordvpn.com", - "number": 161, - "ip": "84.247.50.61", + "ips": [ + "82.102.22.92" + ], "tcp": true, "udp": true }, @@ -53711,7 +56349,9 @@ "region": "Norway", "hostname": "no162.nordvpn.com", "number": 162, - "ip": "82.102.27.211", + "ips": [ + "82.102.27.211" + ], "tcp": true, "udp": true }, @@ -53719,7 +56359,9 @@ "region": "Norway", "hostname": "no163.nordvpn.com", "number": 163, - "ip": "95.174.66.67", + "ips": [ + "95.174.66.67" + ], "tcp": true, "udp": true }, @@ -53727,15 +56369,9 @@ "region": "Norway", "hostname": "no164.nordvpn.com", "number": 164, - "ip": "95.174.66.83", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no166.nordvpn.com", - "number": 166, - "ip": "82.102.27.216", + "ips": [ + "95.174.66.83" + ], "tcp": true, "udp": true }, @@ -53743,7 +56379,9 @@ "region": "Norway", "hostname": "no167.nordvpn.com", "number": 167, - "ip": "185.206.225.243", + "ips": [ + "185.206.225.243" + ], "tcp": true, "udp": true }, @@ -53751,7 +56389,9 @@ "region": "Norway", "hostname": "no168.nordvpn.com", "number": 168, - "ip": "185.206.225.248", + "ips": [ + "185.206.225.248" + ], "tcp": true, "udp": true }, @@ -53759,7 +56399,9 @@ "region": "Norway", "hostname": "no169.nordvpn.com", "number": 169, - "ip": "37.120.149.163", + "ips": [ + "37.120.149.163" + ], "tcp": true, "udp": true }, @@ -53767,7 +56409,9 @@ "region": "Norway", "hostname": "no170.nordvpn.com", "number": 170, - "ip": "82.102.27.147", + "ips": [ + "82.102.27.147" + ], "tcp": true, "udp": true }, @@ -53775,7 +56419,9 @@ "region": "Norway", "hostname": "no171.nordvpn.com", "number": 171, - "ip": "82.102.27.203", + "ips": [ + "82.102.27.203" + ], "tcp": true, "udp": true }, @@ -53783,7 +56429,9 @@ "region": "Norway", "hostname": "no172.nordvpn.com", "number": 172, - "ip": "82.102.22.219", + "ips": [ + "82.102.22.219" + ], "tcp": true, "udp": true }, @@ -53791,7 +56439,9 @@ "region": "Norway", "hostname": "no173.nordvpn.com", "number": 173, - "ip": "95.174.66.227", + "ips": [ + "95.174.66.227" + ], "tcp": true, "udp": true }, @@ -53799,7 +56449,9 @@ "region": "Norway", "hostname": "no174.nordvpn.com", "number": 174, - "ip": "95.174.66.235", + "ips": [ + "95.174.66.235" + ], "tcp": true, "udp": true }, @@ -53807,7 +56459,9 @@ "region": "Norway", "hostname": "no175.nordvpn.com", "number": 175, - "ip": "82.102.27.235", + "ips": [ + "82.102.27.235" + ], "tcp": true, "udp": true }, @@ -53815,15 +56469,9 @@ "region": "Norway", "hostname": "no176.nordvpn.com", "number": 176, - "ip": "82.102.27.243", - "tcp": true, - "udp": true - }, - { - "region": "Norway", - "hostname": "no177.nordvpn.com", - "number": 177, - "ip": "82.102.27.248", + "ips": [ + "82.102.27.243" + ], "tcp": true, "udp": true }, @@ -53831,7 +56479,9 @@ "region": "Norway", "hostname": "no178.nordvpn.com", "number": 178, - "ip": "95.174.66.179", + "ips": [ + "95.174.66.179" + ], "tcp": true, "udp": true }, @@ -53839,7 +56489,9 @@ "region": "Norway", "hostname": "no179.nordvpn.com", "number": 179, - "ip": "95.174.66.187", + "ips": [ + "95.174.66.187" + ], "tcp": true, "udp": true }, @@ -53847,7 +56499,9 @@ "region": "Norway", "hostname": "no180.nordvpn.com", "number": 180, - "ip": "95.174.66.195", + "ips": [ + "95.174.66.195" + ], "tcp": true, "udp": true }, @@ -53855,7 +56509,9 @@ "region": "Norway", "hostname": "no181.nordvpn.com", "number": 181, - "ip": "82.102.22.83", + "ips": [ + "82.102.22.83" + ], "tcp": true, "udp": true }, @@ -53863,7 +56519,9 @@ "region": "Norway", "hostname": "no182.nordvpn.com", "number": 182, - "ip": "82.102.22.235", + "ips": [ + "82.102.22.235" + ], "tcp": true, "udp": true }, @@ -53871,7 +56529,9 @@ "region": "Norway", "hostname": "no183.nordvpn.com", "number": 183, - "ip": "82.102.22.227", + "ips": [ + "82.102.22.227" + ], "tcp": true, "udp": true }, @@ -53879,7 +56539,9 @@ "region": "Norway", "hostname": "no184.nordvpn.com", "number": 184, - "ip": "37.120.149.42", + "ips": [ + "37.120.149.42" + ], "tcp": true, "udp": true }, @@ -53887,7 +56549,9 @@ "region": "Norway", "hostname": "no185.nordvpn.com", "number": 185, - "ip": "37.120.149.91", + "ips": [ + "37.120.149.91" + ], "tcp": true, "udp": true }, @@ -53895,7 +56559,9 @@ "region": "Norway", "hostname": "no186.nordvpn.com", "number": 186, - "ip": "37.120.149.99", + "ips": [ + "37.120.149.99" + ], "tcp": true, "udp": true }, @@ -53903,7 +56569,9 @@ "region": "Norway", "hostname": "no187.nordvpn.com", "number": 187, - "ip": "95.174.66.251", + "ips": [ + "95.174.66.251" + ], "tcp": true, "udp": true }, @@ -53911,7 +56579,9 @@ "region": "Norway", "hostname": "no188.nordvpn.com", "number": 188, - "ip": "45.12.223.83", + "ips": [ + "45.12.223.83" + ], "tcp": true, "udp": true }, @@ -53919,7 +56589,9 @@ "region": "Norway", "hostname": "no189.nordvpn.com", "number": 189, - "ip": "45.12.223.91", + "ips": [ + "45.12.223.91" + ], "tcp": true, "udp": true }, @@ -53927,7 +56599,9 @@ "region": "Norway", "hostname": "no190.nordvpn.com", "number": 190, - "ip": "45.12.223.99", + "ips": [ + "45.12.223.99" + ], "tcp": true, "udp": true }, @@ -53935,7 +56609,9 @@ "region": "Norway", "hostname": "no191.nordvpn.com", "number": 191, - "ip": "45.12.223.107", + "ips": [ + "45.12.223.107" + ], "tcp": true, "udp": true }, @@ -53943,7 +56619,9 @@ "region": "Norway", "hostname": "no192.nordvpn.com", "number": 192, - "ip": "45.12.223.243", + "ips": [ + "45.12.223.243" + ], "tcp": true, "udp": true }, @@ -53951,7 +56629,9 @@ "region": "Norway", "hostname": "no193.nordvpn.com", "number": 193, - "ip": "37.120.149.155", + "ips": [ + "37.120.149.155" + ], "tcp": true, "udp": true }, @@ -53959,7 +56639,9 @@ "region": "Norway", "hostname": "no194.nordvpn.com", "number": 194, - "ip": "45.12.223.235", + "ips": [ + "45.12.223.235" + ], "tcp": true, "udp": true }, @@ -53967,7 +56649,9 @@ "region": "Norway", "hostname": "no195.nordvpn.com", "number": 195, - "ip": "45.12.223.251", + "ips": [ + "45.12.223.251" + ], "tcp": true, "udp": true }, @@ -53975,7 +56659,9 @@ "region": "Norway", "hostname": "no196.nordvpn.com", "number": 196, - "ip": "45.12.223.227", + "ips": [ + "45.12.223.227" + ], "tcp": true, "udp": true }, @@ -53983,7 +56669,9 @@ "region": "Norway", "hostname": "no197.nordvpn.com", "number": 197, - "ip": "37.120.149.19", + "ips": [ + "37.120.149.19" + ], "tcp": true, "udp": true }, @@ -53991,7 +56679,9 @@ "region": "Norway", "hostname": "no198.nordvpn.com", "number": 198, - "ip": "37.120.149.24", + "ips": [ + "37.120.149.24" + ], "tcp": true, "udp": true }, @@ -53999,7 +56689,9 @@ "region": "Norway", "hostname": "no199.nordvpn.com", "number": 199, - "ip": "37.120.149.29", + "ips": [ + "37.120.149.29" + ], "tcp": true, "udp": true }, @@ -54007,7 +56699,139 @@ "region": "Norway", "hostname": "no200.nordvpn.com", "number": 200, - "ip": "37.120.149.37", + "ips": [ + "37.120.149.37" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no201.nordvpn.com", + "number": 201, + "ips": [ + "146.70.17.163" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no202.nordvpn.com", + "number": 202, + "ips": [ + "146.70.17.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no203.nordvpn.com", + "number": 203, + "ips": [ + "84.247.50.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no204.nordvpn.com", + "number": 204, + "ips": [ + "84.247.50.43" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no205.nordvpn.com", + "number": 205, + "ips": [ + "84.247.50.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no206.nordvpn.com", + "number": 206, + "ips": [ + "84.247.50.59" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no207.nordvpn.com", + "number": 207, + "ips": [ + "95.174.66.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no208.nordvpn.com", + "number": 208, + "ips": [ + "185.206.225.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no209.nordvpn.com", + "number": 209, + "ips": [ + "146.70.17.139" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no210.nordvpn.com", + "number": 210, + "ips": [ + "146.70.17.179" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no211.nordvpn.com", + "number": 211, + "ips": [ + "146.70.17.187" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no212.nordvpn.com", + "number": 212, + "ips": [ + "146.70.17.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "Norway", + "hostname": "no213.nordvpn.com", + "number": 213, + "ips": [ + "146.70.17.203" + ], "tcp": true, "udp": true }, @@ -54015,7 +56839,9 @@ "region": "Poland", "hostname": "pl122.nordvpn.com", "number": 122, - "ip": "37.120.211.171", + "ips": [ + "37.120.211.171" + ], "tcp": true, "udp": true }, @@ -54023,7 +56849,9 @@ "region": "Poland", "hostname": "pl125.nordvpn.com", "number": 125, - "ip": "217.138.209.67", + "ips": [ + "217.138.209.67" + ], "tcp": true, "udp": true }, @@ -54031,39 +56859,9 @@ "region": "Poland", "hostname": "pl128.nordvpn.com", "number": 128, - "ip": "194.99.105.100", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl129.nordvpn.com", - "number": 129, - "ip": "196.247.180.131", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl130.nordvpn.com", - "number": 130, - "ip": "196.247.180.139", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl131.nordvpn.com", - "number": 131, - "ip": "196.247.180.147", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl132.nordvpn.com", - "number": 132, - "ip": "196.247.180.155", + "ips": [ + "194.99.105.100" + ], "tcp": true, "udp": true }, @@ -54071,7 +56869,9 @@ "region": "Poland", "hostname": "pl133.nordvpn.com", "number": 133, - "ip": "84.17.55.82", + "ips": [ + "84.17.55.82" + ], "tcp": true, "udp": true }, @@ -54079,7 +56879,9 @@ "region": "Poland", "hostname": "pl134.nordvpn.com", "number": 134, - "ip": "37.120.156.219", + "ips": [ + "37.120.156.219" + ], "tcp": true, "udp": true }, @@ -54087,7 +56889,9 @@ "region": "Poland", "hostname": "pl135.nordvpn.com", "number": 135, - "ip": "37.120.156.227", + "ips": [ + "37.120.156.227" + ], "tcp": true, "udp": true }, @@ -54095,7 +56899,9 @@ "region": "Poland", "hostname": "pl136.nordvpn.com", "number": 136, - "ip": "37.120.156.131", + "ips": [ + "37.120.156.131" + ], "tcp": true, "udp": true }, @@ -54103,7 +56909,9 @@ "region": "Poland", "hostname": "pl137.nordvpn.com", "number": 137, - "ip": "37.120.156.139", + "ips": [ + "37.120.156.139" + ], "tcp": true, "udp": true }, @@ -54111,7 +56919,9 @@ "region": "Poland", "hostname": "pl138.nordvpn.com", "number": 138, - "ip": "37.120.156.147", + "ips": [ + "37.120.156.147" + ], "tcp": true, "udp": true }, @@ -54119,7 +56929,9 @@ "region": "Poland", "hostname": "pl139.nordvpn.com", "number": 139, - "ip": "5.253.206.51", + "ips": [ + "5.253.206.51" + ], "tcp": true, "udp": true }, @@ -54127,7 +56939,9 @@ "region": "Poland", "hostname": "pl140.nordvpn.com", "number": 140, - "ip": "5.253.206.83", + "ips": [ + "5.253.206.83" + ], "tcp": true, "udp": true }, @@ -54135,15 +56949,9 @@ "region": "Poland", "hostname": "pl141.nordvpn.com", "number": 141, - "ip": "5.253.206.91", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl142.nordvpn.com", - "number": 142, - "ip": "185.246.208.121", + "ips": [ + "5.253.206.91" + ], "tcp": true, "udp": true }, @@ -54151,7 +56959,9 @@ "region": "Poland", "hostname": "pl143.nordvpn.com", "number": 143, - "ip": "5.253.206.139", + "ips": [ + "5.253.206.139" + ], "tcp": true, "udp": true }, @@ -54159,7 +56969,9 @@ "region": "Poland", "hostname": "pl144.nordvpn.com", "number": 144, - "ip": "5.253.206.147", + "ips": [ + "5.253.206.147" + ], "tcp": true, "udp": true }, @@ -54167,7 +56979,9 @@ "region": "Poland", "hostname": "pl145.nordvpn.com", "number": 145, - "ip": "5.253.206.155", + "ips": [ + "5.253.206.155" + ], "tcp": true, "udp": true }, @@ -54175,7 +56989,9 @@ "region": "Poland", "hostname": "pl146.nordvpn.com", "number": 146, - "ip": "5.253.206.163", + "ips": [ + "5.253.206.163" + ], "tcp": true, "udp": true }, @@ -54183,7 +56999,9 @@ "region": "Poland", "hostname": "pl147.nordvpn.com", "number": 147, - "ip": "5.253.206.171", + "ips": [ + "5.253.206.171" + ], "tcp": true, "udp": true }, @@ -54191,7 +57009,9 @@ "region": "Poland", "hostname": "pl148.nordvpn.com", "number": 148, - "ip": "185.244.214.227", + "ips": [ + "185.244.214.227" + ], "tcp": true, "udp": true }, @@ -54199,7 +57019,9 @@ "region": "Poland", "hostname": "pl149.nordvpn.com", "number": 149, - "ip": "185.244.214.232", + "ips": [ + "185.244.214.232" + ], "tcp": true, "udp": true }, @@ -54207,7 +57029,9 @@ "region": "Poland", "hostname": "pl150.nordvpn.com", "number": 150, - "ip": "185.244.214.237", + "ips": [ + "185.244.214.237" + ], "tcp": true, "udp": true }, @@ -54215,7 +57039,9 @@ "region": "Poland", "hostname": "pl151.nordvpn.com", "number": 151, - "ip": "185.244.214.242", + "ips": [ + "185.244.214.242" + ], "tcp": true, "udp": true }, @@ -54223,7 +57049,9 @@ "region": "Poland", "hostname": "pl152.nordvpn.com", "number": 152, - "ip": "185.244.214.247", + "ips": [ + "185.244.214.247" + ], "tcp": true, "udp": true }, @@ -54231,7 +57059,9 @@ "region": "Poland", "hostname": "pl153.nordvpn.com", "number": 153, - "ip": "194.99.105.227", + "ips": [ + "194.99.105.227" + ], "tcp": true, "udp": true }, @@ -54239,7 +57069,9 @@ "region": "Poland", "hostname": "pl154.nordvpn.com", "number": 154, - "ip": "194.99.105.232", + "ips": [ + "194.99.105.232" + ], "tcp": true, "udp": true }, @@ -54247,7 +57079,9 @@ "region": "Poland", "hostname": "pl155.nordvpn.com", "number": 155, - "ip": "194.99.105.237", + "ips": [ + "194.99.105.237" + ], "tcp": true, "udp": true }, @@ -54255,7 +57089,9 @@ "region": "Poland", "hostname": "pl156.nordvpn.com", "number": 156, - "ip": "194.99.105.242", + "ips": [ + "194.99.105.242" + ], "tcp": true, "udp": true }, @@ -54263,7 +57099,9 @@ "region": "Poland", "hostname": "pl157.nordvpn.com", "number": 157, - "ip": "194.99.105.247", + "ips": [ + "194.99.105.247" + ], "tcp": true, "udp": true }, @@ -54271,7 +57109,9 @@ "region": "Poland", "hostname": "pl158.nordvpn.com", "number": 158, - "ip": "37.120.156.67", + "ips": [ + "37.120.156.67" + ], "tcp": true, "udp": true }, @@ -54279,7 +57119,9 @@ "region": "Poland", "hostname": "pl159.nordvpn.com", "number": 159, - "ip": "37.120.156.75", + "ips": [ + "37.120.156.75" + ], "tcp": true, "udp": true }, @@ -54287,23 +57129,9 @@ "region": "Poland", "hostname": "pl160.nordvpn.com", "number": 160, - "ip": "37.120.156.83", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl161.nordvpn.com", - "number": 161, - "ip": "185.246.208.92", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl162.nordvpn.com", - "number": 162, - "ip": "185.246.208.174", + "ips": [ + "37.120.156.83" + ], "tcp": true, "udp": true }, @@ -54311,7 +57139,9 @@ "region": "Poland", "hostname": "pl163.nordvpn.com", "number": 163, - "ip": "37.120.211.99", + "ips": [ + "37.120.211.99" + ], "tcp": true, "udp": true }, @@ -54319,7 +57149,9 @@ "region": "Poland", "hostname": "pl164.nordvpn.com", "number": 164, - "ip": "37.120.211.107", + "ips": [ + "37.120.211.107" + ], "tcp": true, "udp": true }, @@ -54327,7 +57159,9 @@ "region": "Poland", "hostname": "pl165.nordvpn.com", "number": 165, - "ip": "37.120.211.115", + "ips": [ + "37.120.211.115" + ], "tcp": true, "udp": true }, @@ -54335,7 +57169,9 @@ "region": "Poland", "hostname": "pl166.nordvpn.com", "number": 166, - "ip": "37.120.211.123", + "ips": [ + "37.120.211.123" + ], "tcp": true, "udp": true }, @@ -54343,7 +57179,9 @@ "region": "Poland", "hostname": "pl167.nordvpn.com", "number": 167, - "ip": "37.120.211.131", + "ips": [ + "37.120.211.131" + ], "tcp": true, "udp": true }, @@ -54351,7 +57189,9 @@ "region": "Poland", "hostname": "pl168.nordvpn.com", "number": 168, - "ip": "37.120.211.139", + "ips": [ + "37.120.211.139" + ], "tcp": true, "udp": true }, @@ -54359,7 +57199,9 @@ "region": "Poland", "hostname": "pl169.nordvpn.com", "number": 169, - "ip": "37.120.211.147", + "ips": [ + "37.120.211.147" + ], "tcp": true, "udp": true }, @@ -54367,7 +57209,9 @@ "region": "Poland", "hostname": "pl170.nordvpn.com", "number": 170, - "ip": "37.120.211.155", + "ips": [ + "37.120.211.155" + ], "tcp": true, "udp": true }, @@ -54375,7 +57219,9 @@ "region": "Poland", "hostname": "pl171.nordvpn.com", "number": 171, - "ip": "37.120.211.163", + "ips": [ + "37.120.211.163" + ], "tcp": true, "udp": true }, @@ -54383,7 +57229,9 @@ "region": "Poland", "hostname": "pl172.nordvpn.com", "number": 172, - "ip": "217.138.209.83", + "ips": [ + "217.138.209.83" + ], "tcp": true, "udp": true }, @@ -54391,183 +57239,9 @@ "region": "Poland", "hostname": "pl173.nordvpn.com", "number": 173, - "ip": "217.138.209.75", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl174.nordvpn.com", - "number": 174, - "ip": "217.138.209.59", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl175.nordvpn.com", - "number": 175, - "ip": "217.138.209.51", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl176.nordvpn.com", - "number": 176, - "ip": "194.110.114.251", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl177.nordvpn.com", - "number": 177, - "ip": "5.253.206.59", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl178.nordvpn.com", - "number": 178, - "ip": "185.244.214.19", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl179.nordvpn.com", - "number": 179, - "ip": "37.120.211.227", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl180.nordvpn.com", - "number": 180, - "ip": "194.110.114.131", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl181.nordvpn.com", - "number": 181, - "ip": "194.110.114.139", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl182.nordvpn.com", - "number": 182, - "ip": "194.110.114.147", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl183.nordvpn.com", - "number": 183, - "ip": "194.110.114.155", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl184.nordvpn.com", - "number": 184, - "ip": "194.110.114.163", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl185.nordvpn.com", - "number": 185, - "ip": "194.110.114.171", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl186.nordvpn.com", - "number": 186, - "ip": "194.110.114.179", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl187.nordvpn.com", - "number": 187, - "ip": "194.110.114.187", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl188.nordvpn.com", - "number": 188, - "ip": "194.110.114.195", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl189.nordvpn.com", - "number": 189, - "ip": "194.110.114.203", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl190.nordvpn.com", - "number": 190, - "ip": "194.110.114.211", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl191.nordvpn.com", - "number": 191, - "ip": "194.110.114.219", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl192.nordvpn.com", - "number": 192, - "ip": "194.110.114.227", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl193.nordvpn.com", - "number": 193, - "ip": "194.110.114.235", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl194.nordvpn.com", - "number": 194, - "ip": "194.110.114.243", - "tcp": true, - "udp": true - }, - { - "region": "Poland", - "hostname": "pl195.nordvpn.com", - "number": 195, - "ip": "37.120.211.235", + "ips": [ + "217.138.209.75" + ], "tcp": true, "udp": true }, @@ -54575,7 +57249,9 @@ "region": "Poland", "hostname": "pl196.nordvpn.com", "number": 196, - "ip": "45.134.212.179", + "ips": [ + "45.134.212.179" + ], "tcp": true, "udp": true }, @@ -54583,7 +57259,9 @@ "region": "Poland", "hostname": "pl197.nordvpn.com", "number": 197, - "ip": "45.134.212.172", + "ips": [ + "45.134.212.172" + ], "tcp": true, "udp": true }, @@ -54591,7 +57269,9 @@ "region": "Poland", "hostname": "pl198.nordvpn.com", "number": 198, - "ip": "45.134.212.165", + "ips": [ + "45.134.212.165" + ], "tcp": true, "udp": true }, @@ -54599,7 +57279,9 @@ "region": "Poland", "hostname": "pl199.nordvpn.com", "number": 199, - "ip": "45.134.212.158", + "ips": [ + "45.134.212.158" + ], "tcp": true, "udp": true }, @@ -54607,7 +57289,9 @@ "region": "Poland", "hostname": "pl200.nordvpn.com", "number": 200, - "ip": "45.134.212.151", + "ips": [ + "45.134.212.151" + ], "tcp": true, "udp": true }, @@ -54615,7 +57299,9 @@ "region": "Poland", "hostname": "pl201.nordvpn.com", "number": 201, - "ip": "45.134.212.144", + "ips": [ + "45.134.212.144" + ], "tcp": true, "udp": true }, @@ -54623,7 +57309,9 @@ "region": "Poland", "hostname": "pl202.nordvpn.com", "number": 202, - "ip": "45.134.212.137", + "ips": [ + "45.134.212.137" + ], "tcp": true, "udp": true }, @@ -54631,7 +57319,149 @@ "region": "Poland", "hostname": "pl203.nordvpn.com", "number": 203, - "ip": "45.134.212.130", + "ips": [ + "45.134.212.130" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl208.nordvpn.com", + "number": 208, + "ips": [ + "82.180.151.1" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl209.nordvpn.com", + "number": 209, + "ips": [ + "82.180.151.7" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl210.nordvpn.com", + "number": 210, + "ips": [ + "82.180.151.13" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl211.nordvpn.com", + "number": 211, + "ips": [ + "82.180.151.19" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl212.nordvpn.com", + "number": 212, + "ips": [ + "82.180.151.25" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl213.nordvpn.com", + "number": 213, + "ips": [ + "82.180.151.31" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl214.nordvpn.com", + "number": 214, + "ips": [ + "82.180.151.37" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl215.nordvpn.com", + "number": 215, + "ips": [ + "82.180.151.43" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl216.nordvpn.com", + "number": 216, + "ips": [ + "82.180.151.49" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl217.nordvpn.com", + "number": 217, + "ips": [ + "82.180.151.55" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl218.nordvpn.com", + "number": 218, + "ips": [ + "82.180.151.61" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl219.nordvpn.com", + "number": 219, + "ips": [ + "82.180.151.67" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl220.nordvpn.com", + "number": 220, + "ips": [ + "82.180.151.73" + ], + "tcp": true, + "udp": true + }, + { + "region": "Poland", + "hostname": "pl221.nordvpn.com", + "number": 221, + "ips": [ + "82.180.151.79" + ], "tcp": true, "udp": true }, @@ -54639,7 +57469,9 @@ "region": "Portugal", "hostname": "pt37.nordvpn.com", "number": 37, - "ip": "195.158.248.3", + "ips": [ + "195.158.248.3" + ], "tcp": true, "udp": true }, @@ -54647,7 +57479,9 @@ "region": "Portugal", "hostname": "pt38.nordvpn.com", "number": 38, - "ip": "195.158.248.11", + "ips": [ + "195.158.248.11" + ], "tcp": true, "udp": true }, @@ -54655,7 +57489,9 @@ "region": "Portugal", "hostname": "pt39.nordvpn.com", "number": 39, - "ip": "195.158.248.19", + "ips": [ + "195.158.248.19" + ], "tcp": true, "udp": true }, @@ -54663,87 +57499,9 @@ "region": "Portugal", "hostname": "pt40.nordvpn.com", "number": 40, - "ip": "195.158.248.51", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt43.nordvpn.com", - "number": 43, - "ip": "195.158.248.150", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt44.nordvpn.com", - "number": 44, - "ip": "195.158.248.152", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt45.nordvpn.com", - "number": 45, - "ip": "195.158.248.154", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt46.nordvpn.com", - "number": 46, - "ip": "195.158.248.156", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt47.nordvpn.com", - "number": 47, - "ip": "195.158.248.158", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt48.nordvpn.com", - "number": 48, - "ip": "195.158.248.160", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt49.nordvpn.com", - "number": 49, - "ip": "195.158.248.162", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt50.nordvpn.com", - "number": 50, - "ip": "195.158.248.164", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt51.nordvpn.com", - "number": 51, - "ip": "195.158.248.166", - "tcp": true, - "udp": true - }, - { - "region": "Portugal", - "hostname": "pt52.nordvpn.com", - "number": 52, - "ip": "195.158.248.168", + "ips": [ + "195.158.248.51" + ], "tcp": true, "udp": true }, @@ -54751,7 +57509,9 @@ "region": "Portugal", "hostname": "pt54.nordvpn.com", "number": 54, - "ip": "195.158.248.75", + "ips": [ + "195.158.248.75" + ], "tcp": true, "udp": true }, @@ -54759,7 +57519,9 @@ "region": "Portugal", "hostname": "pt55.nordvpn.com", "number": 55, - "ip": "195.158.248.211", + "ips": [ + "195.158.248.211" + ], "tcp": true, "udp": true }, @@ -54767,7 +57529,9 @@ "region": "Portugal", "hostname": "pt58.nordvpn.com", "number": 58, - "ip": "195.158.248.59", + "ips": [ + "195.158.248.59" + ], "tcp": true, "udp": true }, @@ -54775,7 +57539,19 @@ "region": "Portugal", "hostname": "pt59.nordvpn.com", "number": 59, - "ip": "195.158.248.67", + "ips": [ + "195.158.248.67" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt64.nordvpn.com", + "number": 64, + "ips": [ + "5.154.174.83" + ], "tcp": true, "udp": true }, @@ -54783,7 +57559,9 @@ "region": "Portugal", "hostname": "pt65.nordvpn.com", "number": 65, - "ip": "5.154.174.163", + "ips": [ + "5.154.174.163" + ], "tcp": true, "udp": true }, @@ -54791,7 +57569,9 @@ "region": "Portugal", "hostname": "pt66.nordvpn.com", "number": 66, - "ip": "91.205.230.193", + "ips": [ + "91.205.230.193" + ], "tcp": true, "udp": true }, @@ -54799,7 +57579,9 @@ "region": "Portugal", "hostname": "pt67.nordvpn.com", "number": 67, - "ip": "91.205.230.201", + "ips": [ + "91.205.230.201" + ], "tcp": true, "udp": true }, @@ -54807,7 +57589,9 @@ "region": "Portugal", "hostname": "pt68.nordvpn.com", "number": 68, - "ip": "91.250.240.241", + "ips": [ + "91.250.240.241" + ], "tcp": true, "udp": true }, @@ -54815,7 +57599,9 @@ "region": "Portugal", "hostname": "pt69.nordvpn.com", "number": 69, - "ip": "91.250.240.245", + "ips": [ + "91.250.240.245" + ], "tcp": true, "udp": true }, @@ -54823,7 +57609,9 @@ "region": "Portugal", "hostname": "pt70.nordvpn.com", "number": 70, - "ip": "91.250.240.249", + "ips": [ + "91.250.240.249" + ], "tcp": true, "udp": true }, @@ -54831,7 +57619,9 @@ "region": "Portugal", "hostname": "pt71.nordvpn.com", "number": 71, - "ip": "91.205.230.219", + "ips": [ + "91.205.230.219" + ], "tcp": true, "udp": true }, @@ -54839,7 +57629,9 @@ "region": "Portugal", "hostname": "pt72.nordvpn.com", "number": 72, - "ip": "185.174.156.6", + "ips": [ + "185.174.156.6" + ], "tcp": true, "udp": true }, @@ -54847,7 +57639,9 @@ "region": "Portugal", "hostname": "pt73.nordvpn.com", "number": 73, - "ip": "185.174.156.2", + "ips": [ + "185.174.156.2" + ], "tcp": true, "udp": true }, @@ -54855,7 +57649,9 @@ "region": "Portugal", "hostname": "pt74.nordvpn.com", "number": 74, - "ip": "195.158.248.103", + "ips": [ + "195.158.248.103" + ], "tcp": true, "udp": true }, @@ -54863,7 +57659,9 @@ "region": "Portugal", "hostname": "pt75.nordvpn.com", "number": 75, - "ip": "195.158.248.105", + "ips": [ + "195.158.248.105" + ], "tcp": true, "udp": true }, @@ -54871,7 +57669,9 @@ "region": "Portugal", "hostname": "pt76.nordvpn.com", "number": 76, - "ip": "195.158.248.107", + "ips": [ + "195.158.248.107" + ], "tcp": true, "udp": true }, @@ -54879,7 +57679,9 @@ "region": "Portugal", "hostname": "pt77.nordvpn.com", "number": 77, - "ip": "195.158.248.109", + "ips": [ + "195.158.248.109" + ], "tcp": true, "udp": true }, @@ -54887,7 +57689,109 @@ "region": "Portugal", "hostname": "pt78.nordvpn.com", "number": 78, - "ip": "195.158.248.111", + "ips": [ + "195.158.248.111" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt79.nordvpn.com", + "number": 79, + "ips": [ + "195.158.248.82" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt80.nordvpn.com", + "number": 80, + "ips": [ + "195.158.248.90" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt81.nordvpn.com", + "number": 81, + "ips": [ + "195.158.248.218" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt82.nordvpn.com", + "number": 82, + "ips": [ + "5.154.174.18" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt83.nordvpn.com", + "number": 83, + "ips": [ + "5.154.174.138" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt84.nordvpn.com", + "number": 84, + "ips": [ + "5.154.174.194" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt85.nordvpn.com", + "number": 85, + "ips": [ + "91.250.240.42" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt86.nordvpn.com", + "number": 86, + "ips": [ + "91.250.240.50" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt87.nordvpn.com", + "number": 87, + "ips": [ + "91.250.240.58" + ], + "tcp": true, + "udp": true + }, + { + "region": "Portugal", + "hostname": "pt88.nordvpn.com", + "number": 88, + "ips": [ + "91.250.240.66" + ], "tcp": true, "udp": true }, @@ -54895,7 +57799,9 @@ "region": "Romania", "hostname": "ro59.nordvpn.com", "number": 59, - "ip": "86.106.137.187", + "ips": [ + "86.106.137.187" + ], "tcp": true, "udp": true }, @@ -54903,7 +57809,9 @@ "region": "Romania", "hostname": "ro62.nordvpn.com", "number": 62, - "ip": "86.105.9.91", + "ips": [ + "86.105.9.91" + ], "tcp": true, "udp": true }, @@ -54911,7 +57819,9 @@ "region": "Romania", "hostname": "ro63.nordvpn.com", "number": 63, - "ip": "86.105.9.99", + "ips": [ + "86.105.9.99" + ], "tcp": true, "udp": true }, @@ -54919,7 +57829,9 @@ "region": "Romania", "hostname": "ro64.nordvpn.com", "number": 64, - "ip": "89.46.102.11", + "ips": [ + "89.46.102.11" + ], "tcp": true, "udp": true }, @@ -54927,7 +57839,9 @@ "region": "Romania", "hostname": "ro65.nordvpn.com", "number": 65, - "ip": "185.210.218.219", + "ips": [ + "185.210.218.219" + ], "tcp": true, "udp": true }, @@ -54935,7 +57849,9 @@ "region": "Romania", "hostname": "ro66.nordvpn.com", "number": 66, - "ip": "86.105.9.115", + "ips": [ + "86.105.9.115" + ], "tcp": true, "udp": true }, @@ -54943,7 +57859,9 @@ "region": "Romania", "hostname": "ro67.nordvpn.com", "number": 67, - "ip": "89.46.103.171", + "ips": [ + "89.46.103.171" + ], "tcp": true, "udp": true }, @@ -54951,7 +57869,9 @@ "region": "Romania", "hostname": "ro68.nordvpn.com", "number": 68, - "ip": "89.46.102.115", + "ips": [ + "89.46.102.115" + ], "tcp": true, "udp": true }, @@ -54959,7 +57879,9 @@ "region": "Romania", "hostname": "ro69.nordvpn.com", "number": 69, - "ip": "185.181.103.187", + "ips": [ + "185.181.103.187" + ], "tcp": true, "udp": true }, @@ -54967,7 +57889,9 @@ "region": "Romania", "hostname": "ro70.nordvpn.com", "number": 70, - "ip": "89.40.71.99", + "ips": [ + "89.40.71.99" + ], "tcp": true, "udp": true }, @@ -54975,7 +57899,9 @@ "region": "Romania", "hostname": "ro71.nordvpn.com", "number": 71, - "ip": "89.36.224.107", + "ips": [ + "89.36.224.107" + ], "tcp": true, "udp": true }, @@ -54983,7 +57909,9 @@ "region": "Romania", "hostname": "ro72.nordvpn.com", "number": 72, - "ip": "86.105.9.11", + "ips": [ + "86.105.9.11" + ], "tcp": true, "udp": true }, @@ -54991,7 +57919,9 @@ "region": "Romania", "hostname": "ro73.nordvpn.com", "number": 73, - "ip": "89.33.246.19", + "ips": [ + "89.33.246.19" + ], "tcp": true, "udp": true }, @@ -54999,7 +57929,9 @@ "region": "Romania", "hostname": "ro74.nordvpn.com", "number": 74, - "ip": "89.36.224.251", + "ips": [ + "89.36.224.251" + ], "tcp": true, "udp": true }, @@ -55007,7 +57939,9 @@ "region": "Romania", "hostname": "ro75.nordvpn.com", "number": 75, - "ip": "89.36.224.243", + "ips": [ + "89.36.224.243" + ], "tcp": true, "udp": true }, @@ -55015,7 +57949,9 @@ "region": "Romania", "hostname": "ro76.nordvpn.com", "number": 76, - "ip": "89.33.246.27", + "ips": [ + "89.33.246.27" + ], "tcp": true, "udp": true }, @@ -55023,7 +57959,9 @@ "region": "Romania", "hostname": "ro77.nordvpn.com", "number": 77, - "ip": "86.106.137.11", + "ips": [ + "86.106.137.11" + ], "tcp": true, "udp": true }, @@ -55031,7 +57969,69 @@ "region": "Romania", "hostname": "ro78.nordvpn.com", "number": 78, - "ip": "89.40.71.243", + "ips": [ + "89.40.71.243" + ], + "tcp": true, + "udp": true + }, + { + "region": "Romania", + "hostname": "ro79.nordvpn.com", + "number": 79, + "ips": [ + "185.156.44.194" + ], + "tcp": true, + "udp": true + }, + { + "region": "Romania", + "hostname": "ro80.nordvpn.com", + "number": 80, + "ips": [ + "185.156.44.201" + ], + "tcp": true, + "udp": true + }, + { + "region": "Romania", + "hostname": "ro81.nordvpn.com", + "number": 81, + "ips": [ + "185.156.44.215" + ], + "tcp": true, + "udp": true + }, + { + "region": "Romania", + "hostname": "ro82.nordvpn.com", + "number": 82, + "ips": [ + "185.156.44.222" + ], + "tcp": true, + "udp": true + }, + { + "region": "Romania", + "hostname": "ro83.nordvpn.com", + "number": 83, + "ips": [ + "185.156.44.229" + ], + "tcp": true, + "udp": true + }, + { + "region": "Romania", + "hostname": "ro84.nordvpn.com", + "number": 84, + "ips": [ + "185.156.44.208" + ], "tcp": true, "udp": true }, @@ -55039,7 +58039,9 @@ "region": "Serbia", "hostname": "rs46.nordvpn.com", "number": 46, - "ip": "141.98.103.171", + "ips": [ + "141.98.103.171" + ], "tcp": true, "udp": true }, @@ -55047,7 +58049,9 @@ "region": "Serbia", "hostname": "rs47.nordvpn.com", "number": 47, - "ip": "141.98.103.179", + "ips": [ + "141.98.103.179" + ], "tcp": true, "udp": true }, @@ -55055,7 +58059,9 @@ "region": "Serbia", "hostname": "rs48.nordvpn.com", "number": 48, - "ip": "141.98.103.123", + "ips": [ + "141.98.103.123" + ], "tcp": true, "udp": true }, @@ -55063,7 +58069,9 @@ "region": "Serbia", "hostname": "rs49.nordvpn.com", "number": 49, - "ip": "141.98.103.131", + "ips": [ + "141.98.103.131" + ], "tcp": true, "udp": true }, @@ -55071,7 +58079,9 @@ "region": "Serbia", "hostname": "rs50.nordvpn.com", "number": 50, - "ip": "141.98.103.139", + "ips": [ + "141.98.103.139" + ], "tcp": true, "udp": true }, @@ -55079,7 +58089,9 @@ "region": "Serbia", "hostname": "rs51.nordvpn.com", "number": 51, - "ip": "141.98.103.147", + "ips": [ + "141.98.103.147" + ], "tcp": true, "udp": true }, @@ -55087,7 +58099,9 @@ "region": "Serbia", "hostname": "rs52.nordvpn.com", "number": 52, - "ip": "141.98.103.187", + "ips": [ + "141.98.103.187" + ], "tcp": true, "udp": true }, @@ -55095,7 +58109,9 @@ "region": "Serbia", "hostname": "rs53.nordvpn.com", "number": 53, - "ip": "141.98.103.195", + "ips": [ + "141.98.103.195" + ], "tcp": true, "udp": true }, @@ -55103,7 +58119,9 @@ "region": "Serbia", "hostname": "rs54.nordvpn.com", "number": 54, - "ip": "141.98.103.203", + "ips": [ + "141.98.103.203" + ], "tcp": true, "udp": true }, @@ -55111,7 +58129,9 @@ "region": "Serbia", "hostname": "rs55.nordvpn.com", "number": 55, - "ip": "141.98.103.211", + "ips": [ + "141.98.103.211" + ], "tcp": true, "udp": true }, @@ -55119,7 +58139,9 @@ "region": "Serbia", "hostname": "rs56.nordvpn.com", "number": 56, - "ip": "141.98.103.219", + "ips": [ + "141.98.103.219" + ], "tcp": true, "udp": true }, @@ -55127,7 +58149,9 @@ "region": "Serbia", "hostname": "rs57.nordvpn.com", "number": 57, - "ip": "141.98.103.227", + "ips": [ + "141.98.103.227" + ], "tcp": true, "udp": true }, @@ -55135,7 +58159,9 @@ "region": "Serbia", "hostname": "rs58.nordvpn.com", "number": 58, - "ip": "141.98.103.235", + "ips": [ + "141.98.103.235" + ], "tcp": true, "udp": true }, @@ -55143,7 +58169,9 @@ "region": "Serbia", "hostname": "rs59.nordvpn.com", "number": 59, - "ip": "141.98.103.243", + "ips": [ + "141.98.103.243" + ], "tcp": true, "udp": true }, @@ -55151,7 +58179,9 @@ "region": "Serbia", "hostname": "rs60.nordvpn.com", "number": 60, - "ip": "141.98.103.75", + "ips": [ + "141.98.103.75" + ], "tcp": true, "udp": true }, @@ -55159,7 +58189,9 @@ "region": "Serbia", "hostname": "rs61.nordvpn.com", "number": 61, - "ip": "141.98.103.83", + "ips": [ + "141.98.103.83" + ], "tcp": true, "udp": true }, @@ -55167,7 +58199,9 @@ "region": "Serbia", "hostname": "rs62.nordvpn.com", "number": 62, - "ip": "141.98.103.91", + "ips": [ + "141.98.103.91" + ], "tcp": true, "udp": true }, @@ -55175,7 +58209,9 @@ "region": "Serbia", "hostname": "rs63.nordvpn.com", "number": 63, - "ip": "141.98.103.99", + "ips": [ + "141.98.103.99" + ], "tcp": true, "udp": true }, @@ -55183,7 +58219,9 @@ "region": "Serbia", "hostname": "rs64.nordvpn.com", "number": 64, - "ip": "141.98.103.107", + "ips": [ + "141.98.103.107" + ], "tcp": true, "udp": true }, @@ -55191,7 +58229,9 @@ "region": "Serbia", "hostname": "rs65.nordvpn.com", "number": 65, - "ip": "141.98.103.115", + "ips": [ + "141.98.103.115" + ], "tcp": true, "udp": true }, @@ -55199,7 +58239,9 @@ "region": "Singapore", "hostname": "sg455.nordvpn.com", "number": 455, - "ip": "103.107.198.131", + "ips": [ + "103.107.198.131" + ], "tcp": true, "udp": true }, @@ -55207,7 +58249,9 @@ "region": "Singapore", "hostname": "sg456.nordvpn.com", "number": 456, - "ip": "103.107.198.163", + "ips": [ + "103.107.198.163" + ], "tcp": true, "udp": true }, @@ -55215,7 +58259,9 @@ "region": "Singapore", "hostname": "sg457.nordvpn.com", "number": 457, - "ip": "103.107.199.131", + "ips": [ + "103.107.199.131" + ], "tcp": true, "udp": true }, @@ -55223,7 +58269,9 @@ "region": "Singapore", "hostname": "sg458.nordvpn.com", "number": 458, - "ip": "103.107.199.99", + "ips": [ + "103.107.199.99" + ], "tcp": true, "udp": true }, @@ -55231,7 +58279,9 @@ "region": "Singapore", "hostname": "sg459.nordvpn.com", "number": 459, - "ip": "103.107.199.107", + "ips": [ + "103.107.199.107" + ], "tcp": true, "udp": true }, @@ -55239,7 +58289,9 @@ "region": "Singapore", "hostname": "sg460.nordvpn.com", "number": 460, - "ip": "103.107.199.123", + "ips": [ + "103.107.199.123" + ], "tcp": true, "udp": true }, @@ -55247,7 +58299,9 @@ "region": "Singapore", "hostname": "sg461.nordvpn.com", "number": 461, - "ip": "103.107.199.139", + "ips": [ + "103.107.199.139" + ], "tcp": true, "udp": true }, @@ -55255,7 +58309,9 @@ "region": "Singapore", "hostname": "sg462.nordvpn.com", "number": 462, - "ip": "103.107.199.147", + "ips": [ + "103.107.199.147" + ], "tcp": true, "udp": true }, @@ -55263,15 +58319,9 @@ "region": "Singapore", "hostname": "sg463.nordvpn.com", "number": 463, - "ip": "103.107.199.155", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg464.nordvpn.com", - "number": 464, - "ip": "91.207.173.115", + "ips": [ + "103.107.199.155" + ], "tcp": true, "udp": true }, @@ -55279,7 +58329,9 @@ "region": "Singapore", "hostname": "sg465.nordvpn.com", "number": 465, - "ip": "84.17.39.133", + "ips": [ + "84.17.39.133" + ], "tcp": true, "udp": true }, @@ -55287,23 +58339,9 @@ "region": "Singapore", "hostname": "sg466.nordvpn.com", "number": 466, - "ip": "84.17.39.130", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg472.nordvpn.com", - "number": 472, - "ip": "89.187.162.97", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg473.nordvpn.com", - "number": 473, - "ip": "89.187.162.93", + "ips": [ + "84.17.39.130" + ], "tcp": true, "udp": true }, @@ -55311,7 +58349,9 @@ "region": "Singapore", "hostname": "sg474.nordvpn.com", "number": 474, - "ip": "84.17.39.194", + "ips": [ + "84.17.39.194" + ], "tcp": true, "udp": true }, @@ -55319,7 +58359,9 @@ "region": "Singapore", "hostname": "sg475.nordvpn.com", "number": 475, - "ip": "84.17.39.203", + "ips": [ + "84.17.39.203" + ], "tcp": true, "udp": true }, @@ -55327,7 +58369,9 @@ "region": "Singapore", "hostname": "sg476.nordvpn.com", "number": 476, - "ip": "84.17.39.197", + "ips": [ + "84.17.39.197" + ], "tcp": true, "udp": true }, @@ -55335,7 +58379,9 @@ "region": "Singapore", "hostname": "sg477.nordvpn.com", "number": 477, - "ip": "84.17.39.200", + "ips": [ + "84.17.39.200" + ], "tcp": true, "udp": true }, @@ -55343,7 +58389,9 @@ "region": "Singapore", "hostname": "sg478.nordvpn.com", "number": 478, - "ip": "84.17.39.206", + "ips": [ + "84.17.39.206" + ], "tcp": true, "udp": true }, @@ -55351,7 +58399,9 @@ "region": "Singapore", "hostname": "sg479.nordvpn.com", "number": 479, - "ip": "84.17.39.209", + "ips": [ + "84.17.39.209" + ], "tcp": true, "udp": true }, @@ -55359,7 +58409,9 @@ "region": "Singapore", "hostname": "sg480.nordvpn.com", "number": 480, - "ip": "84.17.39.212", + "ips": [ + "84.17.39.212" + ], "tcp": true, "udp": true }, @@ -55367,7 +58419,9 @@ "region": "Singapore", "hostname": "sg481.nordvpn.com", "number": 481, - "ip": "84.17.39.215", + "ips": [ + "84.17.39.215" + ], "tcp": true, "udp": true }, @@ -55375,7 +58429,9 @@ "region": "Singapore", "hostname": "sg482.nordvpn.com", "number": 482, - "ip": "84.17.39.218", + "ips": [ + "84.17.39.218" + ], "tcp": true, "udp": true }, @@ -55383,39 +58439,9 @@ "region": "Singapore", "hostname": "sg483.nordvpn.com", "number": 483, - "ip": "84.17.39.221", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg485.nordvpn.com", - "number": 485, - "ip": "82.102.25.251", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg486.nordvpn.com", - "number": 486, - "ip": "82.102.25.219", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg487.nordvpn.com", - "number": 487, - "ip": "82.102.25.243", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg489.nordvpn.com", - "number": 489, - "ip": "89.187.162.193", + "ips": [ + "84.17.39.221" + ], "tcp": true, "udp": true }, @@ -55423,7 +58449,9 @@ "region": "Singapore", "hostname": "sg490.nordvpn.com", "number": 490, - "ip": "103.107.198.99", + "ips": [ + "103.107.198.99" + ], "tcp": true, "udp": true }, @@ -55431,15 +58459,9 @@ "region": "Singapore", "hostname": "sg491.nordvpn.com", "number": 491, - "ip": "103.107.198.107", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg492.nordvpn.com", - "number": 492, - "ip": "89.187.162.197", + "ips": [ + "103.107.198.107" + ], "tcp": true, "udp": true }, @@ -55447,7 +58469,9 @@ "region": "Singapore", "hostname": "sg493.nordvpn.com", "number": 493, - "ip": "103.107.198.115", + "ips": [ + "103.107.198.115" + ], "tcp": true, "udp": true }, @@ -55455,79 +58479,9 @@ "region": "Singapore", "hostname": "sg494.nordvpn.com", "number": 494, - "ip": "103.107.198.123", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg495.nordvpn.com", - "number": 495, - "ip": "89.187.162.113", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg496.nordvpn.com", - "number": 496, - "ip": "185.200.116.155", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg497.nordvpn.com", - "number": 497, - "ip": "185.128.24.59", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg498.nordvpn.com", - "number": 498, - "ip": "82.102.25.59", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg499.nordvpn.com", - "number": 499, - "ip": "185.200.116.27", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg500.nordvpn.com", - "number": 500, - "ip": "185.200.116.139", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg501.nordvpn.com", - "number": 501, - "ip": "82.102.25.11", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg504.nordvpn.com", - "number": 504, - "ip": "82.102.25.75", - "tcp": true, - "udp": true - }, - { - "region": "Singapore", - "hostname": "sg505.nordvpn.com", - "number": 505, - "ip": "82.102.25.51", + "ips": [ + "103.107.198.123" + ], "tcp": true, "udp": true }, @@ -55535,7 +58489,9 @@ "region": "Singapore", "hostname": "sg507.nordvpn.com", "number": 507, - "ip": "103.107.198.91", + "ips": [ + "103.107.198.91" + ], "tcp": true, "udp": true }, @@ -55543,7 +58499,79 @@ "region": "Singapore", "hostname": "sg508.nordvpn.com", "number": 508, - "ip": "103.107.198.139", + "ips": [ + "103.107.198.139" + ], + "tcp": true, + "udp": true + }, + { + "region": "Singapore", + "hostname": "sg510.nordvpn.com", + "number": 510, + "ips": [ + "203.27.106.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "Singapore", + "hostname": "sg511.nordvpn.com", + "number": 511, + "ips": [ + "203.27.106.139" + ], + "tcp": true, + "udp": true + }, + { + "region": "Singapore", + "hostname": "sg512.nordvpn.com", + "number": 512, + "ips": [ + "203.27.106.147" + ], + "tcp": true, + "udp": true + }, + { + "region": "Singapore", + "hostname": "sg513.nordvpn.com", + "number": 513, + "ips": [ + "203.27.106.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "Singapore", + "hostname": "sg514.nordvpn.com", + "number": 514, + "ips": [ + "203.27.106.163" + ], + "tcp": true, + "udp": true + }, + { + "region": "Singapore", + "hostname": "sg515.nordvpn.com", + "number": 515, + "ips": [ + "203.27.106.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "Singapore", + "hostname": "sg516.nordvpn.com", + "number": 516, + "ips": [ + "203.27.106.179" + ], "tcp": true, "udp": true }, @@ -55551,47 +58579,9 @@ "region": "Slovakia", "hostname": "sk34.nordvpn.com", "number": 34, - "ip": "37.120.221.43", - "tcp": true, - "udp": true - }, - { - "region": "Slovakia", - "hostname": "sk35.nordvpn.com", - "number": 35, - "ip": "196.245.151.3", - "tcp": true, - "udp": true - }, - { - "region": "Slovakia", - "hostname": "sk36.nordvpn.com", - "number": 36, - "ip": "196.245.151.75", - "tcp": true, - "udp": true - }, - { - "region": "Slovakia", - "hostname": "sk37.nordvpn.com", - "number": 37, - "ip": "196.245.151.19", - "tcp": true, - "udp": true - }, - { - "region": "Slovakia", - "hostname": "sk38.nordvpn.com", - "number": 38, - "ip": "196.245.151.35", - "tcp": true, - "udp": true - }, - { - "region": "Slovakia", - "hostname": "sk39.nordvpn.com", - "number": 39, - "ip": "196.245.151.51", + "ips": [ + "37.120.221.43" + ], "tcp": true, "udp": true }, @@ -55599,7 +58589,9 @@ "region": "Slovakia", "hostname": "sk40.nordvpn.com", "number": 40, - "ip": "185.245.85.75", + "ips": [ + "185.245.85.75" + ], "tcp": true, "udp": true }, @@ -55607,7 +58599,9 @@ "region": "Slovakia", "hostname": "sk41.nordvpn.com", "number": 41, - "ip": "193.37.255.179", + "ips": [ + "193.37.255.179" + ], "tcp": true, "udp": true }, @@ -55615,7 +58609,9 @@ "region": "Slovakia", "hostname": "sk42.nordvpn.com", "number": 42, - "ip": "193.37.255.187", + "ips": [ + "193.37.255.187" + ], "tcp": true, "udp": true }, @@ -55623,7 +58619,9 @@ "region": "Slovakia", "hostname": "sk43.nordvpn.com", "number": 43, - "ip": "185.245.85.171", + "ips": [ + "185.245.85.171" + ], "tcp": true, "udp": true }, @@ -55631,7 +58629,9 @@ "region": "Slovakia", "hostname": "sk44.nordvpn.com", "number": 44, - "ip": "37.120.221.19", + "ips": [ + "37.120.221.19" + ], "tcp": true, "udp": true }, @@ -55639,7 +58639,9 @@ "region": "Slovakia", "hostname": "sk45.nordvpn.com", "number": 45, - "ip": "37.120.221.27", + "ips": [ + "37.120.221.27" + ], "tcp": true, "udp": true }, @@ -55647,7 +58649,9 @@ "region": "Slovakia", "hostname": "sk46.nordvpn.com", "number": 46, - "ip": "37.120.221.35", + "ips": [ + "37.120.221.35" + ], "tcp": true, "udp": true }, @@ -55655,7 +58659,9 @@ "region": "Slovakia", "hostname": "sk47.nordvpn.com", "number": 47, - "ip": "193.37.255.235", + "ips": [ + "193.37.255.235" + ], "tcp": true, "udp": true }, @@ -55663,7 +58669,9 @@ "region": "Slovakia", "hostname": "sk48.nordvpn.com", "number": 48, - "ip": "185.245.85.179", + "ips": [ + "185.245.85.179" + ], "tcp": true, "udp": true }, @@ -55671,7 +58679,9 @@ "region": "Slovakia", "hostname": "sk49.nordvpn.com", "number": 49, - "ip": "37.120.221.147", + "ips": [ + "37.120.221.147" + ], "tcp": true, "udp": true }, @@ -55679,7 +58689,9 @@ "region": "Slovakia", "hostname": "sk50.nordvpn.com", "number": 50, - "ip": "37.120.221.163", + "ips": [ + "37.120.221.163" + ], "tcp": true, "udp": true }, @@ -55687,7 +58699,9 @@ "region": "Slovakia", "hostname": "sk51.nordvpn.com", "number": 51, - "ip": "37.120.221.187", + "ips": [ + "37.120.221.187" + ], "tcp": true, "udp": true }, @@ -55695,7 +58709,9 @@ "region": "Slovakia", "hostname": "sk52.nordvpn.com", "number": 52, - "ip": "37.120.221.195", + "ips": [ + "37.120.221.195" + ], "tcp": true, "udp": true }, @@ -55703,7 +58719,9 @@ "region": "Slovakia", "hostname": "sk53.nordvpn.com", "number": 53, - "ip": "37.120.221.155", + "ips": [ + "37.120.221.155" + ], "tcp": true, "udp": true }, @@ -55711,7 +58729,59 @@ "region": "Slovakia", "hostname": "sk54.nordvpn.com", "number": 54, - "ip": "37.120.221.171", + "ips": [ + "37.120.221.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "Slovakia", + "hostname": "sk55.nordvpn.com", + "number": 55, + "ips": [ + "138.199.34.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "Slovakia", + "hostname": "sk56.nordvpn.com", + "number": 56, + "ips": [ + "138.199.34.14" + ], + "tcp": true, + "udp": true + }, + { + "region": "Slovakia", + "hostname": "sk57.nordvpn.com", + "number": 57, + "ips": [ + "138.199.34.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "Slovakia", + "hostname": "sk58.nordvpn.com", + "number": 58, + "ips": [ + "138.199.34.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "Slovakia", + "hostname": "sk59.nordvpn.com", + "number": 59, + "ips": [ + "138.199.34.50" + ], "tcp": true, "udp": true }, @@ -55719,7 +58789,9 @@ "region": "Slovenia", "hostname": "si9.nordvpn.com", "number": 9, - "ip": "195.158.249.7", + "ips": [ + "195.158.249.7" + ], "tcp": true, "udp": true }, @@ -55727,7 +58799,9 @@ "region": "Slovenia", "hostname": "si10.nordvpn.com", "number": 10, - "ip": "195.158.249.9", + "ips": [ + "195.158.249.9" + ], "tcp": true, "udp": true }, @@ -55735,7 +58809,9 @@ "region": "Slovenia", "hostname": "si11.nordvpn.com", "number": 11, - "ip": "195.158.249.11", + "ips": [ + "195.158.249.11" + ], "tcp": true, "udp": true }, @@ -55743,7 +58819,9 @@ "region": "Slovenia", "hostname": "si12.nordvpn.com", "number": 12, - "ip": "195.158.249.13", + "ips": [ + "195.158.249.13" + ], "tcp": true, "udp": true }, @@ -55751,7 +58829,9 @@ "region": "Slovenia", "hostname": "si13.nordvpn.com", "number": 13, - "ip": "195.158.249.15", + "ips": [ + "195.158.249.15" + ], "tcp": true, "udp": true }, @@ -55759,7 +58839,9 @@ "region": "South Africa", "hostname": "za61.nordvpn.com", "number": 61, - "ip": "165.73.240.43", + "ips": [ + "165.73.240.43" + ], "tcp": true, "udp": true }, @@ -55767,7 +58849,9 @@ "region": "South Africa", "hostname": "za76.nordvpn.com", "number": 76, - "ip": "165.73.240.147", + "ips": [ + "165.73.240.147" + ], "tcp": true, "udp": true }, @@ -55775,7 +58859,9 @@ "region": "South Africa", "hostname": "za77.nordvpn.com", "number": 77, - "ip": "165.73.242.50", + "ips": [ + "165.73.242.50" + ], "tcp": true, "udp": true }, @@ -55783,7 +58869,9 @@ "region": "South Africa", "hostname": "za78.nordvpn.com", "number": 78, - "ip": "165.73.242.58", + "ips": [ + "165.73.242.58" + ], "tcp": true, "udp": true }, @@ -55791,7 +58879,9 @@ "region": "South Africa", "hostname": "za79.nordvpn.com", "number": 79, - "ip": "165.73.242.82", + "ips": [ + "165.73.242.82" + ], "tcp": true, "udp": true }, @@ -55799,7 +58889,9 @@ "region": "South Africa", "hostname": "za80.nordvpn.com", "number": 80, - "ip": "165.73.240.83", + "ips": [ + "165.73.240.83" + ], "tcp": true, "udp": true }, @@ -55807,7 +58899,9 @@ "region": "South Africa", "hostname": "za89.nordvpn.com", "number": 89, - "ip": "165.73.240.99", + "ips": [ + "165.73.240.99" + ], "tcp": true, "udp": true }, @@ -55815,7 +58909,9 @@ "region": "South Africa", "hostname": "za97.nordvpn.com", "number": 97, - "ip": "165.73.240.123", + "ips": [ + "165.73.240.123" + ], "tcp": true, "udp": true }, @@ -55823,7 +58919,9 @@ "region": "South Africa", "hostname": "za101.nordvpn.com", "number": 101, - "ip": "172.107.93.163", + "ips": [ + "172.107.93.163" + ], "tcp": true, "udp": true }, @@ -55831,7 +58929,9 @@ "region": "South Africa", "hostname": "za107.nordvpn.com", "number": 107, - "ip": "165.73.240.179", + "ips": [ + "165.73.240.179" + ], "tcp": true, "udp": true }, @@ -55839,7 +58939,9 @@ "region": "South Africa", "hostname": "za108.nordvpn.com", "number": 108, - "ip": "165.73.248.243", + "ips": [ + "165.73.248.243" + ], "tcp": true, "udp": true }, @@ -55847,7 +58949,9 @@ "region": "South Africa", "hostname": "za109.nordvpn.com", "number": 109, - "ip": "165.73.240.251", + "ips": [ + "165.73.240.251" + ], "tcp": true, "udp": true }, @@ -55855,7 +58959,9 @@ "region": "South Africa", "hostname": "za110.nordvpn.com", "number": 110, - "ip": "165.73.240.195", + "ips": [ + "165.73.240.195" + ], "tcp": true, "udp": true }, @@ -55863,7 +58969,9 @@ "region": "South Africa", "hostname": "za111.nordvpn.com", "number": 111, - "ip": "165.73.240.115", + "ips": [ + "165.73.240.115" + ], "tcp": true, "udp": true }, @@ -55871,7 +58979,9 @@ "region": "South Africa", "hostname": "za117.nordvpn.com", "number": 117, - "ip": "165.73.240.187", + "ips": [ + "165.73.240.187" + ], "tcp": true, "udp": true }, @@ -55879,7 +58989,9 @@ "region": "South Africa", "hostname": "za118.nordvpn.com", "number": 118, - "ip": "165.73.240.59", + "ips": [ + "165.73.240.59" + ], "tcp": true, "udp": true }, @@ -55887,7 +58999,9 @@ "region": "South Africa", "hostname": "za119.nordvpn.com", "number": 119, - "ip": "165.73.242.3", + "ips": [ + "165.73.242.3" + ], "tcp": true, "udp": true }, @@ -55895,7 +59009,9 @@ "region": "South Africa", "hostname": "za120.nordvpn.com", "number": 120, - "ip": "165.73.242.11", + "ips": [ + "165.73.242.11" + ], "tcp": true, "udp": true }, @@ -55903,7 +59019,9 @@ "region": "South Africa", "hostname": "za121.nordvpn.com", "number": 121, - "ip": "165.73.241.26", + "ips": [ + "165.73.241.26" + ], "tcp": true, "udp": true }, @@ -55911,7 +59029,9 @@ "region": "South Africa", "hostname": "za122.nordvpn.com", "number": 122, - "ip": "165.73.241.18", + "ips": [ + "165.73.241.18" + ], "tcp": true, "udp": true }, @@ -55919,7 +59039,9 @@ "region": "South Africa", "hostname": "za123.nordvpn.com", "number": 123, - "ip": "165.73.241.10", + "ips": [ + "165.73.241.10" + ], "tcp": true, "udp": true }, @@ -55927,7 +59049,9 @@ "region": "South Africa", "hostname": "za124.nordvpn.com", "number": 124, - "ip": "165.73.241.2", + "ips": [ + "165.73.241.2" + ], "tcp": true, "udp": true }, @@ -55935,7 +59059,9 @@ "region": "South Africa", "hostname": "za125.nordvpn.com", "number": 125, - "ip": "196.240.128.19", + "ips": [ + "196.240.128.19" + ], "tcp": true, "udp": true }, @@ -55943,7 +59069,9 @@ "region": "South Africa", "hostname": "za126.nordvpn.com", "number": 126, - "ip": "196.240.128.11", + "ips": [ + "196.240.128.11" + ], "tcp": true, "udp": true }, @@ -55951,7 +59079,9 @@ "region": "South Africa", "hostname": "za127.nordvpn.com", "number": 127, - "ip": "196.240.128.4", + "ips": [ + "196.240.128.4" + ], "tcp": true, "udp": true }, @@ -55959,7 +59089,9 @@ "region": "South Korea", "hostname": "kr29.nordvpn.com", "number": 29, - "ip": "210.217.18.78", + "ips": [ + "210.217.18.78" + ], "tcp": true, "udp": true }, @@ -55967,7 +59099,9 @@ "region": "South Korea", "hostname": "kr30.nordvpn.com", "number": 30, - "ip": "210.217.18.69", + "ips": [ + "210.217.18.69" + ], "tcp": true, "udp": true }, @@ -55975,7 +59109,9 @@ "region": "South Korea", "hostname": "kr31.nordvpn.com", "number": 31, - "ip": "210.217.18.72", + "ips": [ + "210.217.18.72" + ], "tcp": true, "udp": true }, @@ -55983,7 +59119,9 @@ "region": "South Korea", "hostname": "kr32.nordvpn.com", "number": 32, - "ip": "210.217.18.66", + "ips": [ + "210.217.18.66" + ], "tcp": true, "udp": true }, @@ -55991,7 +59129,9 @@ "region": "South Korea", "hostname": "kr33.nordvpn.com", "number": 33, - "ip": "211.197.11.6", + "ips": [ + "211.197.11.6" + ], "tcp": true, "udp": true }, @@ -55999,7 +59139,9 @@ "region": "South Korea", "hostname": "kr34.nordvpn.com", "number": 34, - "ip": "211.197.11.5", + "ips": [ + "211.197.11.5" + ], "tcp": true, "udp": true }, @@ -56007,7 +59149,9 @@ "region": "South Korea", "hostname": "kr35.nordvpn.com", "number": 35, - "ip": "211.197.11.10", + "ips": [ + "211.197.11.10" + ], "tcp": true, "udp": true }, @@ -56015,7 +59159,9 @@ "region": "South Korea", "hostname": "kr36.nordvpn.com", "number": 36, - "ip": "172.107.194.187", + "ips": [ + "172.107.194.187" + ], "tcp": true, "udp": true }, @@ -56023,7 +59169,9 @@ "region": "South Korea", "hostname": "kr37.nordvpn.com", "number": 37, - "ip": "172.107.194.147", + "ips": [ + "172.107.194.147" + ], "tcp": true, "udp": true }, @@ -56031,15 +59179,9 @@ "region": "South Korea", "hostname": "kr38.nordvpn.com", "number": 38, - "ip": "172.107.194.155", - "tcp": true, - "udp": true - }, - { - "region": "South Korea", - "hostname": "kr39.nordvpn.com", - "number": 39, - "ip": "172.107.194.163", + "ips": [ + "172.107.194.155" + ], "tcp": true, "udp": true }, @@ -56047,7 +59189,9 @@ "region": "South Korea", "hostname": "kr40.nordvpn.com", "number": 40, - "ip": "172.107.194.171", + "ips": [ + "172.107.194.171" + ], "tcp": true, "udp": true }, @@ -56055,7 +59199,9 @@ "region": "South Korea", "hostname": "kr41.nordvpn.com", "number": 41, - "ip": "211.197.11.12", + "ips": [ + "211.197.11.12" + ], "tcp": true, "udp": true }, @@ -56063,23 +59209,9 @@ "region": "South Korea", "hostname": "kr42.nordvpn.com", "number": 42, - "ip": "211.197.11.14", - "tcp": true, - "udp": true - }, - { - "region": "South Korea", - "hostname": "kr43.nordvpn.com", - "number": 43, - "ip": "210.217.18.75", - "tcp": true, - "udp": true - }, - { - "region": "South Korea", - "hostname": "kr44.nordvpn.com", - "number": 44, - "ip": "172.107.248.227", + "ips": [ + "211.197.11.14" + ], "tcp": true, "udp": true }, @@ -56087,7 +59219,9 @@ "region": "South Korea", "hostname": "kr45.nordvpn.com", "number": 45, - "ip": "172.107.248.187", + "ips": [ + "172.107.248.187" + ], "tcp": true, "udp": true }, @@ -56095,55 +59229,9 @@ "region": "Spain", "hostname": "es114.nordvpn.com", "number": 114, - "ip": "37.120.199.243", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es122.nordvpn.com", - "number": 122, - "ip": "195.206.107.6", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es126.nordvpn.com", - "number": 126, - "ip": "195.206.107.18", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es127.nordvpn.com", - "number": 127, - "ip": "195.206.107.21", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es128.nordvpn.com", - "number": 128, - "ip": "195.206.107.24", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es129.nordvpn.com", - "number": 129, - "ip": "195.206.107.27", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es130.nordvpn.com", - "number": 130, - "ip": "195.206.107.29", + "ips": [ + "37.120.199.243" + ], "tcp": true, "udp": true }, @@ -56151,7 +59239,9 @@ "region": "Spain", "hostname": "es131.nordvpn.com", "number": 131, - "ip": "212.102.48.75", + "ips": [ + "212.102.48.75" + ], "tcp": true, "udp": true }, @@ -56159,7 +59249,19 @@ "region": "Spain", "hostname": "es132.nordvpn.com", "number": 132, - "ip": "212.102.48.72", + "ips": [ + "212.102.48.72" + ], + "tcp": true, + "udp": true + }, + { + "region": "Spain", + "hostname": "es133.nordvpn.com", + "number": 133, + "ips": [ + "212.102.48.69" + ], "tcp": true, "udp": true }, @@ -56167,7 +59269,9 @@ "region": "Spain", "hostname": "es134.nordvpn.com", "number": 134, - "ip": "212.102.48.66", + "ips": [ + "212.102.48.66" + ], "tcp": true, "udp": true }, @@ -56175,7 +59279,9 @@ "region": "Spain", "hostname": "es135.nordvpn.com", "number": 135, - "ip": "45.152.183.115", + "ips": [ + "45.152.183.115" + ], "tcp": true, "udp": true }, @@ -56183,7 +59289,9 @@ "region": "Spain", "hostname": "es136.nordvpn.com", "number": 136, - "ip": "31.13.188.99", + "ips": [ + "31.13.188.99" + ], "tcp": true, "udp": true }, @@ -56191,7 +59299,9 @@ "region": "Spain", "hostname": "es137.nordvpn.com", "number": 137, - "ip": "217.138.218.179", + "ips": [ + "217.138.218.179" + ], "tcp": true, "udp": true }, @@ -56199,7 +59309,9 @@ "region": "Spain", "hostname": "es138.nordvpn.com", "number": 138, - "ip": "217.138.218.187", + "ips": [ + "217.138.218.187" + ], "tcp": true, "udp": true }, @@ -56207,7 +59319,9 @@ "region": "Spain", "hostname": "es139.nordvpn.com", "number": 139, - "ip": "217.138.218.195", + "ips": [ + "217.138.218.195" + ], "tcp": true, "udp": true }, @@ -56215,7 +59329,9 @@ "region": "Spain", "hostname": "es141.nordvpn.com", "number": 141, - "ip": "195.12.50.227", + "ips": [ + "195.12.50.227" + ], "tcp": true, "udp": true }, @@ -56223,7 +59339,9 @@ "region": "Spain", "hostname": "es142.nordvpn.com", "number": 142, - "ip": "195.12.50.232", + "ips": [ + "195.12.50.232" + ], "tcp": true, "udp": true }, @@ -56231,7 +59349,9 @@ "region": "Spain", "hostname": "es143.nordvpn.com", "number": 143, - "ip": "195.12.50.237", + "ips": [ + "195.12.50.237" + ], "tcp": true, "udp": true }, @@ -56239,7 +59359,9 @@ "region": "Spain", "hostname": "es144.nordvpn.com", "number": 144, - "ip": "195.206.107.117", + "ips": [ + "195.206.107.117" + ], "tcp": true, "udp": true }, @@ -56247,7 +59369,9 @@ "region": "Spain", "hostname": "es145.nordvpn.com", "number": 145, - "ip": "31.13.188.131", + "ips": [ + "31.13.188.131" + ], "tcp": true, "udp": true }, @@ -56255,7 +59379,9 @@ "region": "Spain", "hostname": "es147.nordvpn.com", "number": 147, - "ip": "31.13.188.139", + "ips": [ + "31.13.188.139" + ], "tcp": true, "udp": true }, @@ -56263,7 +59389,9 @@ "region": "Spain", "hostname": "es148.nordvpn.com", "number": 148, - "ip": "31.13.188.147", + "ips": [ + "31.13.188.147" + ], "tcp": true, "udp": true }, @@ -56271,7 +59399,9 @@ "region": "Spain", "hostname": "es149.nordvpn.com", "number": 149, - "ip": "185.183.106.227", + "ips": [ + "185.183.106.227" + ], "tcp": true, "udp": true }, @@ -56279,7 +59409,19 @@ "region": "Spain", "hostname": "es150.nordvpn.com", "number": 150, - "ip": "185.183.106.19", + "ips": [ + "185.183.106.19" + ], + "tcp": true, + "udp": true + }, + { + "region": "Spain", + "hostname": "es151.nordvpn.com", + "number": 151, + "ips": [ + "185.183.106.27" + ], "tcp": true, "udp": true }, @@ -56287,7 +59429,9 @@ "region": "Spain", "hostname": "es152.nordvpn.com", "number": 152, - "ip": "185.216.32.35", + "ips": [ + "185.216.32.35" + ], "tcp": true, "udp": true }, @@ -56295,7 +59439,9 @@ "region": "Spain", "hostname": "es153.nordvpn.com", "number": 153, - "ip": "185.216.32.43", + "ips": [ + "185.216.32.43" + ], "tcp": true, "udp": true }, @@ -56303,7 +59449,9 @@ "region": "Spain", "hostname": "es154.nordvpn.com", "number": 154, - "ip": "37.120.148.187", + "ips": [ + "37.120.148.187" + ], "tcp": true, "udp": true }, @@ -56311,7 +59459,9 @@ "region": "Spain", "hostname": "es155.nordvpn.com", "number": 155, - "ip": "37.120.148.171", + "ips": [ + "37.120.148.171" + ], "tcp": true, "udp": true }, @@ -56319,23 +59469,9 @@ "region": "Spain", "hostname": "es156.nordvpn.com", "number": 156, - "ip": "37.120.148.179", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es160.nordvpn.com", - "number": 160, - "ip": "192.145.124.83", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es161.nordvpn.com", - "number": 161, - "ip": "192.145.124.91", + "ips": [ + "37.120.148.179" + ], "tcp": true, "udp": true }, @@ -56343,7 +59479,9 @@ "region": "Spain", "hostname": "es162.nordvpn.com", "number": 162, - "ip": "192.145.124.99", + "ips": [ + "192.145.124.99" + ], "tcp": true, "udp": true }, @@ -56351,7 +59489,9 @@ "region": "Spain", "hostname": "es163.nordvpn.com", "number": 163, - "ip": "192.145.124.107", + "ips": [ + "192.145.124.107" + ], "tcp": true, "udp": true }, @@ -56359,7 +59499,9 @@ "region": "Spain", "hostname": "es164.nordvpn.com", "number": 164, - "ip": "192.145.124.123", + "ips": [ + "192.145.124.123" + ], "tcp": true, "udp": true }, @@ -56367,7 +59509,9 @@ "region": "Spain", "hostname": "es169.nordvpn.com", "number": 169, - "ip": "37.120.199.251", + "ips": [ + "37.120.199.251" + ], "tcp": true, "udp": true }, @@ -56375,7 +59519,9 @@ "region": "Spain", "hostname": "es170.nordvpn.com", "number": 170, - "ip": "31.13.188.27", + "ips": [ + "31.13.188.27" + ], "tcp": true, "udp": true }, @@ -56383,7 +59529,9 @@ "region": "Spain", "hostname": "es171.nordvpn.com", "number": 171, - "ip": "31.13.188.107", + "ips": [ + "31.13.188.107" + ], "tcp": true, "udp": true }, @@ -56391,7 +59539,9 @@ "region": "Spain", "hostname": "es172.nordvpn.com", "number": 172, - "ip": "31.13.188.155", + "ips": [ + "31.13.188.155" + ], "tcp": true, "udp": true }, @@ -56399,7 +59549,9 @@ "region": "Spain", "hostname": "es173.nordvpn.com", "number": 173, - "ip": "45.152.183.11", + "ips": [ + "45.152.183.11" + ], "tcp": true, "udp": true }, @@ -56407,7 +59559,9 @@ "region": "Spain", "hostname": "es174.nordvpn.com", "number": 174, - "ip": "45.152.183.3", + "ips": [ + "45.152.183.3" + ], "tcp": true, "udp": true }, @@ -56415,7 +59569,9 @@ "region": "Spain", "hostname": "es175.nordvpn.com", "number": 175, - "ip": "37.120.199.235", + "ips": [ + "37.120.199.235" + ], "tcp": true, "udp": true }, @@ -56423,7 +59579,9 @@ "region": "Spain", "hostname": "es176.nordvpn.com", "number": 176, - "ip": "37.120.199.203", + "ips": [ + "37.120.199.203" + ], "tcp": true, "udp": true }, @@ -56431,7 +59589,9 @@ "region": "Spain", "hostname": "es177.nordvpn.com", "number": 177, - "ip": "37.120.199.195", + "ips": [ + "37.120.199.195" + ], "tcp": true, "udp": true }, @@ -56439,7 +59599,9 @@ "region": "Spain", "hostname": "es179.nordvpn.com", "number": 179, - "ip": "45.152.183.171", + "ips": [ + "45.152.183.171" + ], "tcp": true, "udp": true }, @@ -56447,7 +59609,9 @@ "region": "Spain", "hostname": "es180.nordvpn.com", "number": 180, - "ip": "45.152.183.179", + "ips": [ + "45.152.183.179" + ], "tcp": true, "udp": true }, @@ -56455,7 +59619,9 @@ "region": "Spain", "hostname": "es181.nordvpn.com", "number": 181, - "ip": "45.152.183.187", + "ips": [ + "45.152.183.187" + ], "tcp": true, "udp": true }, @@ -56463,7 +59629,9 @@ "region": "Spain", "hostname": "es182.nordvpn.com", "number": 182, - "ip": "45.152.183.195", + "ips": [ + "45.152.183.195" + ], "tcp": true, "udp": true }, @@ -56471,39 +59639,9 @@ "region": "Spain", "hostname": "es183.nordvpn.com", "number": 183, - "ip": "45.152.183.203", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es184.nordvpn.com", - "number": 184, - "ip": "195.206.107.3", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es185.nordvpn.com", - "number": 185, - "ip": "195.206.107.9", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es186.nordvpn.com", - "number": 186, - "ip": "195.206.107.12", - "tcp": true, - "udp": true - }, - { - "region": "Spain", - "hostname": "es187.nordvpn.com", - "number": 187, - "ip": "195.206.107.15", + "ips": [ + "45.152.183.203" + ], "tcp": true, "udp": true }, @@ -56511,7 +59649,9 @@ "region": "Spain", "hostname": "es188.nordvpn.com", "number": 188, - "ip": "185.93.182.251", + "ips": [ + "185.93.182.251" + ], "tcp": true, "udp": true }, @@ -56519,7 +59659,9 @@ "region": "Spain", "hostname": "es189.nordvpn.com", "number": 189, - "ip": "89.238.178.211", + "ips": [ + "89.238.178.211" + ], "tcp": true, "udp": true }, @@ -56527,7 +59669,9 @@ "region": "Spain", "hostname": "es190.nordvpn.com", "number": 190, - "ip": "185.199.100.1", + "ips": [ + "185.199.100.1" + ], "tcp": true, "udp": true }, @@ -56535,7 +59679,9 @@ "region": "Spain", "hostname": "es191.nordvpn.com", "number": 191, - "ip": "185.199.100.3", + "ips": [ + "185.199.100.3" + ], "tcp": true, "udp": true }, @@ -56543,7 +59689,9 @@ "region": "Spain", "hostname": "es192.nordvpn.com", "number": 192, - "ip": "185.199.100.5", + "ips": [ + "185.199.100.5" + ], "tcp": true, "udp": true }, @@ -56551,7 +59699,9 @@ "region": "Spain", "hostname": "es193.nordvpn.com", "number": 193, - "ip": "185.199.100.7", + "ips": [ + "185.199.100.7" + ], "tcp": true, "udp": true }, @@ -56559,7 +59709,9 @@ "region": "Spain", "hostname": "es194.nordvpn.com", "number": 194, - "ip": "185.199.100.9", + "ips": [ + "185.199.100.9" + ], "tcp": true, "udp": true }, @@ -56567,7 +59719,9 @@ "region": "Spain", "hostname": "es195.nordvpn.com", "number": 195, - "ip": "185.199.100.11", + "ips": [ + "185.199.100.11" + ], "tcp": true, "udp": true }, @@ -56575,7 +59729,9 @@ "region": "Spain", "hostname": "es196.nordvpn.com", "number": 196, - "ip": "185.199.100.13", + "ips": [ + "185.199.100.13" + ], "tcp": true, "udp": true }, @@ -56583,7 +59739,9 @@ "region": "Spain", "hostname": "es197.nordvpn.com", "number": 197, - "ip": "185.199.100.15", + "ips": [ + "185.199.100.15" + ], "tcp": true, "udp": true }, @@ -56591,7 +59749,9 @@ "region": "Spain", "hostname": "es198.nordvpn.com", "number": 198, - "ip": "185.199.100.17", + "ips": [ + "185.199.100.17" + ], "tcp": true, "udp": true }, @@ -56599,7 +59759,9 @@ "region": "Spain", "hostname": "es199.nordvpn.com", "number": 199, - "ip": "185.199.100.19", + "ips": [ + "185.199.100.19" + ], "tcp": true, "udp": true }, @@ -56607,7 +59769,9 @@ "region": "Spain", "hostname": "es200.nordvpn.com", "number": 200, - "ip": "185.199.100.21", + "ips": [ + "185.199.100.21" + ], "tcp": true, "udp": true }, @@ -56615,7 +59779,9 @@ "region": "Spain", "hostname": "es201.nordvpn.com", "number": 201, - "ip": "185.199.100.23", + "ips": [ + "185.199.100.23" + ], "tcp": true, "udp": true }, @@ -56623,7 +59789,9 @@ "region": "Spain", "hostname": "es202.nordvpn.com", "number": 202, - "ip": "185.199.100.25", + "ips": [ + "185.199.100.25" + ], "tcp": true, "udp": true }, @@ -56631,7 +59799,9 @@ "region": "Spain", "hostname": "es203.nordvpn.com", "number": 203, - "ip": "185.199.100.27", + "ips": [ + "185.199.100.27" + ], "tcp": true, "udp": true }, @@ -56639,7 +59809,9 @@ "region": "Spain", "hostname": "es204.nordvpn.com", "number": 204, - "ip": "185.199.100.29", + "ips": [ + "185.199.100.29" + ], "tcp": true, "udp": true }, @@ -56647,7 +59819,9 @@ "region": "Spain", "hostname": "es205.nordvpn.com", "number": 205, - "ip": "185.199.100.31", + "ips": [ + "185.199.100.31" + ], "tcp": true, "udp": true }, @@ -56655,7 +59829,9 @@ "region": "Spain", "hostname": "es206.nordvpn.com", "number": 206, - "ip": "185.199.100.33", + "ips": [ + "185.199.100.33" + ], "tcp": true, "udp": true }, @@ -56663,15 +59839,9 @@ "region": "Spain", "hostname": "es207.nordvpn.com", "number": 207, - "ip": "185.199.100.35", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se-nl7.nordvpn.com", - "number": 7, - "ip": "37.120.209.155", + "ips": [ + "185.199.100.35" + ], "tcp": true, "udp": true }, @@ -56679,7 +59849,19 @@ "region": "Sweden", "hostname": "se-ch7.nordvpn.com", "number": 7, - "ip": "37.120.209.156", + "ips": [ + "37.120.209.156" + ], + "tcp": true, + "udp": true + }, + { + "region": "Sweden", + "hostname": "se-nl7.nordvpn.com", + "number": 7, + "ips": [ + "37.120.209.155" + ], "tcp": true, "udp": true }, @@ -56687,7 +59869,9 @@ "region": "Sweden", "hostname": "se-nl8.nordvpn.com", "number": 8, - "ip": "86.106.103.27", + "ips": [ + "86.106.103.27" + ], "tcp": true, "udp": true }, @@ -56695,15 +59879,9 @@ "region": "Sweden", "hostname": "se-ch8.nordvpn.com", "number": 8, - "ip": "86.106.103.28", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se-nl9.nordvpn.com", - "number": 9, - "ip": "86.106.103.123", + "ips": [ + "86.106.103.28" + ], "tcp": true, "udp": true }, @@ -56711,15 +59889,19 @@ "region": "Sweden", "hostname": "se-ch9.nordvpn.com", "number": 9, - "ip": "86.106.103.124", + "ips": [ + "86.106.103.124" + ], "tcp": true, "udp": true }, { "region": "Sweden", - "hostname": "se-ch10.nordvpn.com", - "number": 10, - "ip": "91.132.138.76", + "hostname": "se-nl9.nordvpn.com", + "number": 9, + "ips": [ + "86.106.103.123" + ], "tcp": true, "udp": true }, @@ -56727,7 +59909,19 @@ "region": "Sweden", "hostname": "se-nl10.nordvpn.com", "number": 10, - "ip": "91.132.138.75", + "ips": [ + "91.132.138.75" + ], + "tcp": true, + "udp": true + }, + { + "region": "Sweden", + "hostname": "se-ch10.nordvpn.com", + "number": 10, + "ips": [ + "91.132.138.76" + ], "tcp": true, "udp": true }, @@ -56735,7 +59929,9 @@ "region": "Sweden", "hostname": "se393.nordvpn.com", "number": 393, - "ip": "37.120.209.163", + "ips": [ + "37.120.209.163" + ], "tcp": true, "udp": true }, @@ -56743,7 +59939,9 @@ "region": "Sweden", "hostname": "se394.nordvpn.com", "number": 394, - "ip": "37.120.209.171", + "ips": [ + "37.120.209.171" + ], "tcp": true, "udp": true }, @@ -56751,7 +59949,9 @@ "region": "Sweden", "hostname": "se395.nordvpn.com", "number": 395, - "ip": "37.120.209.179", + "ips": [ + "37.120.209.179" + ], "tcp": true, "udp": true }, @@ -56759,7 +59959,9 @@ "region": "Sweden", "hostname": "se396.nordvpn.com", "number": 396, - "ip": "37.120.209.187", + "ips": [ + "37.120.209.187" + ], "tcp": true, "udp": true }, @@ -56767,7 +59969,9 @@ "region": "Sweden", "hostname": "se397.nordvpn.com", "number": 397, - "ip": "37.120.209.195", + "ips": [ + "37.120.209.195" + ], "tcp": true, "udp": true }, @@ -56775,7 +59979,9 @@ "region": "Sweden", "hostname": "se398.nordvpn.com", "number": 398, - "ip": "37.120.209.203", + "ips": [ + "37.120.209.203" + ], "tcp": true, "udp": true }, @@ -56783,7 +59989,9 @@ "region": "Sweden", "hostname": "se399.nordvpn.com", "number": 399, - "ip": "37.120.209.211", + "ips": [ + "37.120.209.211" + ], "tcp": true, "udp": true }, @@ -56791,7 +59999,9 @@ "region": "Sweden", "hostname": "se400.nordvpn.com", "number": 400, - "ip": "37.120.209.219", + "ips": [ + "37.120.209.219" + ], "tcp": true, "udp": true }, @@ -56799,7 +60009,9 @@ "region": "Sweden", "hostname": "se401.nordvpn.com", "number": 401, - "ip": "37.120.209.227", + "ips": [ + "37.120.209.227" + ], "tcp": true, "udp": true }, @@ -56807,127 +60019,9 @@ "region": "Sweden", "hostname": "se402.nordvpn.com", "number": 402, - "ip": "86.106.103.19", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se408.nordvpn.com", - "number": 408, - "ip": "31.13.191.131", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se409.nordvpn.com", - "number": 409, - "ip": "31.13.191.136", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se410.nordvpn.com", - "number": 410, - "ip": "31.13.191.141", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se411.nordvpn.com", - "number": 411, - "ip": "31.13.191.146", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se412.nordvpn.com", - "number": 412, - "ip": "31.13.191.151", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se413.nordvpn.com", - "number": 413, - "ip": "185.236.42.195", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se414.nordvpn.com", - "number": 414, - "ip": "185.236.42.198", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se415.nordvpn.com", - "number": 415, - "ip": "185.236.42.201", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se416.nordvpn.com", - "number": 416, - "ip": "185.236.42.204", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se417.nordvpn.com", - "number": 417, - "ip": "185.236.42.207", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se418.nordvpn.com", - "number": 418, - "ip": "185.236.42.210", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se419.nordvpn.com", - "number": 419, - "ip": "185.236.42.213", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se420.nordvpn.com", - "number": 420, - "ip": "185.236.42.216", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se421.nordvpn.com", - "number": 421, - "ip": "185.236.42.219", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se422.nordvpn.com", - "number": 422, - "ip": "185.236.42.122", + "ips": [ + "86.106.103.19" + ], "tcp": true, "udp": true }, @@ -56935,7 +60029,9 @@ "region": "Sweden", "hostname": "se423.nordvpn.com", "number": 423, - "ip": "91.132.138.211", + "ips": [ + "91.132.138.211" + ], "tcp": true, "udp": true }, @@ -56943,7 +60039,9 @@ "region": "Sweden", "hostname": "se424.nordvpn.com", "number": 424, - "ip": "91.132.138.203", + "ips": [ + "91.132.138.203" + ], "tcp": true, "udp": true }, @@ -56951,7 +60049,9 @@ "region": "Sweden", "hostname": "se425.nordvpn.com", "number": 425, - "ip": "45.12.220.67", + "ips": [ + "45.12.220.67" + ], "tcp": true, "udp": true }, @@ -56959,7 +60059,9 @@ "region": "Sweden", "hostname": "se426.nordvpn.com", "number": 426, - "ip": "45.12.220.75", + "ips": [ + "45.12.220.75" + ], "tcp": true, "udp": true }, @@ -56967,23 +60069,9 @@ "region": "Sweden", "hostname": "se427.nordvpn.com", "number": 427, - "ip": "45.12.220.43", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se428.nordvpn.com", - "number": 428, - "ip": "31.13.191.156", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se429.nordvpn.com", - "number": 429, - "ip": "31.13.191.161", + "ips": [ + "45.12.220.43" + ], "tcp": true, "udp": true }, @@ -56991,7 +60079,9 @@ "region": "Sweden", "hostname": "se434.nordvpn.com", "number": 434, - "ip": "86.106.103.115", + "ips": [ + "86.106.103.115" + ], "tcp": true, "udp": true }, @@ -56999,7 +60089,9 @@ "region": "Sweden", "hostname": "se435.nordvpn.com", "number": 435, - "ip": "45.12.220.51", + "ips": [ + "45.12.220.51" + ], "tcp": true, "udp": true }, @@ -57007,207 +60099,9 @@ "region": "Sweden", "hostname": "se436.nordvpn.com", "number": 436, - "ip": "45.12.220.59", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se447.nordvpn.com", - "number": 447, - "ip": "31.13.191.166", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se451.nordvpn.com", - "number": 451, - "ip": "185.236.42.12", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se452.nordvpn.com", - "number": 452, - "ip": "185.236.42.14", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se453.nordvpn.com", - "number": 453, - "ip": "185.236.42.16", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se454.nordvpn.com", - "number": 454, - "ip": "185.236.42.18", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se455.nordvpn.com", - "number": 455, - "ip": "185.236.42.20", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se456.nordvpn.com", - "number": 456, - "ip": "185.236.42.22", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se457.nordvpn.com", - "number": 457, - "ip": "185.236.42.24", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se458.nordvpn.com", - "number": 458, - "ip": "185.236.42.26", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se459.nordvpn.com", - "number": 459, - "ip": "185.236.42.28", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se460.nordvpn.com", - "number": 460, - "ip": "185.236.42.30", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se463.nordvpn.com", - "number": 463, - "ip": "185.236.42.66", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se464.nordvpn.com", - "number": 464, - "ip": "185.236.42.70", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se465.nordvpn.com", - "number": 465, - "ip": "185.236.42.74", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se466.nordvpn.com", - "number": 466, - "ip": "185.236.42.78", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se467.nordvpn.com", - "number": 467, - "ip": "185.236.42.82", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se468.nordvpn.com", - "number": 468, - "ip": "185.236.42.86", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se469.nordvpn.com", - "number": 469, - "ip": "185.236.42.90", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se470.nordvpn.com", - "number": 470, - "ip": "185.236.42.94", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se471.nordvpn.com", - "number": 471, - "ip": "185.236.42.98", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se472.nordvpn.com", - "number": 472, - "ip": "185.236.42.102", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se473.nordvpn.com", - "number": 473, - "ip": "185.236.42.106", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se474.nordvpn.com", - "number": 474, - "ip": "185.236.42.114", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se475.nordvpn.com", - "number": 475, - "ip": "185.236.42.118", - "tcp": true, - "udp": true - }, - { - "region": "Sweden", - "hostname": "se476.nordvpn.com", - "number": 476, - "ip": "185.236.42.110", + "ips": [ + "45.12.220.59" + ], "tcp": true, "udp": true }, @@ -57215,7 +60109,9 @@ "region": "Sweden", "hostname": "se477.nordvpn.com", "number": 477, - "ip": "91.132.138.195", + "ips": [ + "91.132.138.195" + ], "tcp": true, "udp": true }, @@ -57223,7 +60119,9 @@ "region": "Sweden", "hostname": "se478.nordvpn.com", "number": 478, - "ip": "91.132.138.227", + "ips": [ + "91.132.138.227" + ], "tcp": true, "udp": true }, @@ -57231,7 +60129,9 @@ "region": "Sweden", "hostname": "se479.nordvpn.com", "number": 479, - "ip": "91.132.138.219", + "ips": [ + "91.132.138.219" + ], "tcp": true, "udp": true }, @@ -57239,7 +60139,9 @@ "region": "Sweden", "hostname": "se487.nordvpn.com", "number": 487, - "ip": "91.132.138.67", + "ips": [ + "91.132.138.67" + ], "tcp": true, "udp": true }, @@ -57247,7 +60149,9 @@ "region": "Sweden", "hostname": "se488.nordvpn.com", "number": 488, - "ip": "45.83.91.195", + "ips": [ + "45.83.91.195" + ], "tcp": true, "udp": true }, @@ -57255,7 +60159,9 @@ "region": "Sweden", "hostname": "se489.nordvpn.com", "number": 489, - "ip": "45.83.91.203", + "ips": [ + "45.83.91.203" + ], "tcp": true, "udp": true }, @@ -57263,7 +60169,9 @@ "region": "Sweden", "hostname": "se490.nordvpn.com", "number": 490, - "ip": "45.83.91.211", + "ips": [ + "45.83.91.211" + ], "tcp": true, "udp": true }, @@ -57271,7 +60179,9 @@ "region": "Sweden", "hostname": "se491.nordvpn.com", "number": 491, - "ip": "45.83.91.163", + "ips": [ + "45.83.91.163" + ], "tcp": true, "udp": true }, @@ -57279,7 +60189,9 @@ "region": "Sweden", "hostname": "se492.nordvpn.com", "number": 492, - "ip": "45.83.91.123", + "ips": [ + "45.83.91.123" + ], "tcp": true, "udp": true }, @@ -57287,7 +60199,9 @@ "region": "Sweden", "hostname": "se493.nordvpn.com", "number": 493, - "ip": "45.83.91.179", + "ips": [ + "45.83.91.179" + ], "tcp": true, "udp": true }, @@ -57295,7 +60209,9 @@ "region": "Sweden", "hostname": "se494.nordvpn.com", "number": 494, - "ip": "45.83.91.171", + "ips": [ + "45.83.91.171" + ], "tcp": true, "udp": true }, @@ -57303,7 +60219,9 @@ "region": "Sweden", "hostname": "se495.nordvpn.com", "number": 495, - "ip": "45.83.91.51", + "ips": [ + "45.83.91.51" + ], "tcp": true, "udp": true }, @@ -57311,7 +60229,9 @@ "region": "Sweden", "hostname": "se496.nordvpn.com", "number": 496, - "ip": "45.83.91.187", + "ips": [ + "45.83.91.187" + ], "tcp": true, "udp": true }, @@ -57319,7 +60239,9 @@ "region": "Sweden", "hostname": "se497.nordvpn.com", "number": 497, - "ip": "45.83.91.227", + "ips": [ + "45.83.91.227" + ], "tcp": true, "udp": true }, @@ -57327,7 +60249,9 @@ "region": "Sweden", "hostname": "se498.nordvpn.com", "number": 498, - "ip": "45.83.91.235", + "ips": [ + "45.83.91.235" + ], "tcp": true, "udp": true }, @@ -57335,7 +60259,9 @@ "region": "Sweden", "hostname": "se499.nordvpn.com", "number": 499, - "ip": "45.83.91.243", + "ips": [ + "45.83.91.243" + ], "tcp": true, "udp": true }, @@ -57343,7 +60269,9 @@ "region": "Sweden", "hostname": "se500.nordvpn.com", "number": 500, - "ip": "45.83.91.251", + "ips": [ + "45.83.91.251" + ], "tcp": true, "udp": true }, @@ -57351,7 +60279,9 @@ "region": "Sweden", "hostname": "se501.nordvpn.com", "number": 501, - "ip": "45.12.220.115", + "ips": [ + "45.12.220.115" + ], "tcp": true, "udp": true }, @@ -57359,7 +60289,9 @@ "region": "Sweden", "hostname": "se502.nordvpn.com", "number": 502, - "ip": "84.17.36.145", + "ips": [ + "84.17.36.145" + ], "tcp": true, "udp": true }, @@ -57367,7 +60299,9 @@ "region": "Sweden", "hostname": "se503.nordvpn.com", "number": 503, - "ip": "84.17.36.130", + "ips": [ + "84.17.36.130" + ], "tcp": true, "udp": true }, @@ -57375,7 +60309,9 @@ "region": "Sweden", "hostname": "se504.nordvpn.com", "number": 504, - "ip": "84.17.36.150", + "ips": [ + "84.17.36.150" + ], "tcp": true, "udp": true }, @@ -57383,7 +60319,9 @@ "region": "Sweden", "hostname": "se505.nordvpn.com", "number": 505, - "ip": "84.17.36.140", + "ips": [ + "84.17.36.140" + ], "tcp": true, "udp": true }, @@ -57391,7 +60329,9 @@ "region": "Sweden", "hostname": "se506.nordvpn.com", "number": 506, - "ip": "84.17.36.135", + "ips": [ + "84.17.36.135" + ], "tcp": true, "udp": true }, @@ -57399,7 +60339,9 @@ "region": "Sweden", "hostname": "se507.nordvpn.com", "number": 507, - "ip": "84.17.36.155", + "ips": [ + "84.17.36.155" + ], "tcp": true, "udp": true }, @@ -57407,7 +60349,9 @@ "region": "Sweden", "hostname": "se508.nordvpn.com", "number": 508, - "ip": "45.12.220.163", + "ips": [ + "45.12.220.163" + ], "tcp": true, "udp": true }, @@ -57415,7 +60359,9 @@ "region": "Sweden", "hostname": "se509.nordvpn.com", "number": 509, - "ip": "45.12.220.179", + "ips": [ + "45.12.220.179" + ], "tcp": true, "udp": true }, @@ -57423,7 +60369,9 @@ "region": "Sweden", "hostname": "se510.nordvpn.com", "number": 510, - "ip": "45.12.220.171", + "ips": [ + "45.12.220.171" + ], "tcp": true, "udp": true }, @@ -57431,7 +60379,9 @@ "region": "Sweden", "hostname": "se511.nordvpn.com", "number": 511, - "ip": "45.12.220.187", + "ips": [ + "45.12.220.187" + ], "tcp": true, "udp": true }, @@ -57439,7 +60389,9 @@ "region": "Sweden", "hostname": "se512.nordvpn.com", "number": 512, - "ip": "45.12.220.195", + "ips": [ + "45.12.220.195" + ], "tcp": true, "udp": true }, @@ -57447,7 +60399,9 @@ "region": "Sweden", "hostname": "se513.nordvpn.com", "number": 513, - "ip": "45.12.220.203", + "ips": [ + "45.12.220.203" + ], "tcp": true, "udp": true }, @@ -57455,7 +60409,9 @@ "region": "Sweden", "hostname": "se514.nordvpn.com", "number": 514, - "ip": "45.12.220.219", + "ips": [ + "45.12.220.219" + ], "tcp": true, "udp": true }, @@ -57463,7 +60419,9 @@ "region": "Sweden", "hostname": "se515.nordvpn.com", "number": 515, - "ip": "45.12.220.227", + "ips": [ + "45.12.220.227" + ], "tcp": true, "udp": true }, @@ -57471,7 +60429,9 @@ "region": "Sweden", "hostname": "se516.nordvpn.com", "number": 516, - "ip": "45.12.220.235", + "ips": [ + "45.12.220.235" + ], "tcp": true, "udp": true }, @@ -57479,7 +60439,9 @@ "region": "Sweden", "hostname": "se517.nordvpn.com", "number": 517, - "ip": "45.12.220.243", + "ips": [ + "45.12.220.243" + ], "tcp": true, "udp": true }, @@ -57487,7 +60449,9 @@ "region": "Sweden", "hostname": "se518.nordvpn.com", "number": 518, - "ip": "45.12.220.251", + "ips": [ + "45.12.220.251" + ], "tcp": true, "udp": true }, @@ -57495,7 +60459,9 @@ "region": "Sweden", "hostname": "se519.nordvpn.com", "number": 519, - "ip": "45.83.91.19", + "ips": [ + "45.83.91.19" + ], "tcp": true, "udp": true }, @@ -57503,7 +60469,9 @@ "region": "Sweden", "hostname": "se520.nordvpn.com", "number": 520, - "ip": "45.83.91.27", + "ips": [ + "45.83.91.27" + ], "tcp": true, "udp": true }, @@ -57511,7 +60479,9 @@ "region": "Sweden", "hostname": "se521.nordvpn.com", "number": 521, - "ip": "86.106.103.195", + "ips": [ + "86.106.103.195" + ], "tcp": true, "udp": true }, @@ -57519,7 +60489,9 @@ "region": "Sweden", "hostname": "se522.nordvpn.com", "number": 522, - "ip": "86.106.103.235", + "ips": [ + "86.106.103.235" + ], "tcp": true, "udp": true }, @@ -57527,7 +60499,9 @@ "region": "Sweden", "hostname": "se523.nordvpn.com", "number": 523, - "ip": "86.106.103.243", + "ips": [ + "86.106.103.243" + ], "tcp": true, "udp": true }, @@ -57535,7 +60509,9 @@ "region": "Sweden", "hostname": "se524.nordvpn.com", "number": 524, - "ip": "86.106.103.251", + "ips": [ + "86.106.103.251" + ], "tcp": true, "udp": true }, @@ -57543,7 +60519,9 @@ "region": "Sweden", "hostname": "se525.nordvpn.com", "number": 525, - "ip": "91.132.138.155", + "ips": [ + "91.132.138.155" + ], "tcp": true, "udp": true }, @@ -57551,7 +60529,9 @@ "region": "Sweden", "hostname": "se526.nordvpn.com", "number": 526, - "ip": "45.12.220.211", + "ips": [ + "45.12.220.211" + ], "tcp": true, "udp": true }, @@ -57559,7 +60539,9 @@ "region": "Sweden", "hostname": "se527.nordvpn.com", "number": 527, - "ip": "91.132.138.163", + "ips": [ + "91.132.138.163" + ], "tcp": true, "udp": true }, @@ -57567,7 +60549,9 @@ "region": "Sweden", "hostname": "se528.nordvpn.com", "number": 528, - "ip": "91.132.138.179", + "ips": [ + "91.132.138.179" + ], "tcp": true, "udp": true }, @@ -57575,7 +60559,9 @@ "region": "Sweden", "hostname": "se529.nordvpn.com", "number": 529, - "ip": "91.132.138.187", + "ips": [ + "91.132.138.187" + ], "tcp": true, "udp": true }, @@ -57583,7 +60569,9 @@ "region": "Sweden", "hostname": "se530.nordvpn.com", "number": 530, - "ip": "185.247.71.11", + "ips": [ + "185.247.71.11" + ], "tcp": true, "udp": true }, @@ -57591,7 +60579,9 @@ "region": "Sweden", "hostname": "se531.nordvpn.com", "number": 531, - "ip": "185.247.71.19", + "ips": [ + "185.247.71.19" + ], "tcp": true, "udp": true }, @@ -57599,7 +60589,9 @@ "region": "Sweden", "hostname": "se532.nordvpn.com", "number": 532, - "ip": "185.247.71.27", + "ips": [ + "185.247.71.27" + ], "tcp": true, "udp": true }, @@ -57607,7 +60599,9 @@ "region": "Sweden", "hostname": "se533.nordvpn.com", "number": 533, - "ip": "185.247.71.35", + "ips": [ + "185.247.71.35" + ], "tcp": true, "udp": true }, @@ -57615,7 +60609,9 @@ "region": "Sweden", "hostname": "se534.nordvpn.com", "number": 534, - "ip": "185.247.71.43", + "ips": [ + "185.247.71.43" + ], "tcp": true, "udp": true }, @@ -57623,7 +60619,9 @@ "region": "Sweden", "hostname": "se535.nordvpn.com", "number": 535, - "ip": "185.247.71.51", + "ips": [ + "185.247.71.51" + ], "tcp": true, "udp": true }, @@ -57631,7 +60629,9 @@ "region": "Sweden", "hostname": "se536.nordvpn.com", "number": 536, - "ip": "185.247.71.59", + "ips": [ + "185.247.71.59" + ], "tcp": true, "udp": true }, @@ -57639,7 +60639,9 @@ "region": "Sweden", "hostname": "se537.nordvpn.com", "number": 537, - "ip": "185.247.71.67", + "ips": [ + "185.247.71.67" + ], "tcp": true, "udp": true }, @@ -57647,7 +60649,9 @@ "region": "Sweden", "hostname": "se542.nordvpn.com", "number": 542, - "ip": "185.219.140.1", + "ips": [ + "185.219.140.1" + ], "tcp": true, "udp": true }, @@ -57655,7 +60659,9 @@ "region": "Sweden", "hostname": "se543.nordvpn.com", "number": 543, - "ip": "185.219.140.3", + "ips": [ + "185.219.140.3" + ], "tcp": true, "udp": true }, @@ -57663,7 +60669,9 @@ "region": "Sweden", "hostname": "se544.nordvpn.com", "number": 544, - "ip": "185.219.140.5", + "ips": [ + "185.219.140.5" + ], "tcp": true, "udp": true }, @@ -57671,7 +60679,9 @@ "region": "Sweden", "hostname": "se545.nordvpn.com", "number": 545, - "ip": "185.219.140.7", + "ips": [ + "185.219.140.7" + ], "tcp": true, "udp": true }, @@ -57679,7 +60689,9 @@ "region": "Sweden", "hostname": "se546.nordvpn.com", "number": 546, - "ip": "185.219.140.9", + "ips": [ + "185.219.140.9" + ], "tcp": true, "udp": true }, @@ -57687,7 +60699,9 @@ "region": "Sweden", "hostname": "se547.nordvpn.com", "number": 547, - "ip": "185.219.140.11", + "ips": [ + "185.219.140.11" + ], "tcp": true, "udp": true }, @@ -57695,7 +60709,9 @@ "region": "Sweden", "hostname": "se548.nordvpn.com", "number": 548, - "ip": "185.219.140.13", + "ips": [ + "185.219.140.13" + ], "tcp": true, "udp": true }, @@ -57703,7 +60719,9 @@ "region": "Sweden", "hostname": "se549.nordvpn.com", "number": 549, - "ip": "185.219.140.15", + "ips": [ + "185.219.140.15" + ], "tcp": true, "udp": true }, @@ -57711,7 +60729,9 @@ "region": "Sweden", "hostname": "se550.nordvpn.com", "number": 550, - "ip": "185.219.140.17", + "ips": [ + "185.219.140.17" + ], "tcp": true, "udp": true }, @@ -57719,7 +60739,9 @@ "region": "Sweden", "hostname": "se551.nordvpn.com", "number": 551, - "ip": "185.219.140.19", + "ips": [ + "185.219.140.19" + ], "tcp": true, "udp": true }, @@ -57727,7 +60749,9 @@ "region": "Sweden", "hostname": "se552.nordvpn.com", "number": 552, - "ip": "185.219.140.21", + "ips": [ + "185.219.140.21" + ], "tcp": true, "udp": true }, @@ -57735,7 +60759,9 @@ "region": "Sweden", "hostname": "se553.nordvpn.com", "number": 553, - "ip": "185.219.140.23", + "ips": [ + "185.219.140.23" + ], "tcp": true, "udp": true }, @@ -57743,7 +60769,9 @@ "region": "Sweden", "hostname": "se554.nordvpn.com", "number": 554, - "ip": "185.219.140.25", + "ips": [ + "185.219.140.25" + ], "tcp": true, "udp": true }, @@ -57751,7 +60779,9 @@ "region": "Sweden", "hostname": "se555.nordvpn.com", "number": 555, - "ip": "185.219.140.27", + "ips": [ + "185.219.140.27" + ], "tcp": true, "udp": true }, @@ -57759,7 +60789,9 @@ "region": "Sweden", "hostname": "se556.nordvpn.com", "number": 556, - "ip": "185.219.140.29", + "ips": [ + "185.219.140.29" + ], "tcp": true, "udp": true }, @@ -57767,7 +60799,9 @@ "region": "Sweden", "hostname": "se557.nordvpn.com", "number": 557, - "ip": "185.219.140.31", + "ips": [ + "185.219.140.31" + ], "tcp": true, "udp": true }, @@ -57775,7 +60809,9 @@ "region": "Sweden", "hostname": "se558.nordvpn.com", "number": 558, - "ip": "185.219.140.33", + "ips": [ + "185.219.140.33" + ], "tcp": true, "udp": true }, @@ -57783,7 +60819,9 @@ "region": "Sweden", "hostname": "se559.nordvpn.com", "number": 559, - "ip": "185.219.140.35", + "ips": [ + "185.219.140.35" + ], "tcp": true, "udp": true }, @@ -57791,7 +60829,9 @@ "region": "Sweden", "hostname": "se560.nordvpn.com", "number": 560, - "ip": "185.219.140.37", + "ips": [ + "185.219.140.37" + ], "tcp": true, "udp": true }, @@ -57799,7 +60839,9 @@ "region": "Sweden", "hostname": "se561.nordvpn.com", "number": 561, - "ip": "185.219.140.39", + "ips": [ + "185.219.140.39" + ], "tcp": true, "udp": true }, @@ -57807,7 +60849,9 @@ "region": "Sweden", "hostname": "se562.nordvpn.com", "number": 562, - "ip": "185.219.140.41", + "ips": [ + "185.219.140.41" + ], "tcp": true, "udp": true }, @@ -57815,7 +60859,9 @@ "region": "Sweden", "hostname": "se563.nordvpn.com", "number": 563, - "ip": "185.219.140.43", + "ips": [ + "185.219.140.43" + ], "tcp": true, "udp": true }, @@ -57823,7 +60869,9 @@ "region": "Sweden", "hostname": "se564.nordvpn.com", "number": 564, - "ip": "185.219.140.45", + "ips": [ + "185.219.140.45" + ], "tcp": true, "udp": true }, @@ -57831,7 +60879,9 @@ "region": "Sweden", "hostname": "se565.nordvpn.com", "number": 565, - "ip": "185.219.140.47", + "ips": [ + "185.219.140.47" + ], "tcp": true, "udp": true }, @@ -57839,7 +60889,9 @@ "region": "Sweden", "hostname": "se566.nordvpn.com", "number": 566, - "ip": "185.219.140.49", + "ips": [ + "185.219.140.49" + ], "tcp": true, "udp": true }, @@ -57847,7 +60899,9 @@ "region": "Sweden", "hostname": "se567.nordvpn.com", "number": 567, - "ip": "185.219.140.51", + "ips": [ + "185.219.140.51" + ], "tcp": true, "udp": true }, @@ -57855,7 +60909,9 @@ "region": "Sweden", "hostname": "se568.nordvpn.com", "number": 568, - "ip": "185.219.140.53", + "ips": [ + "185.219.140.53" + ], "tcp": true, "udp": true }, @@ -57863,7 +60919,9 @@ "region": "Sweden", "hostname": "se569.nordvpn.com", "number": 569, - "ip": "146.70.21.11", + "ips": [ + "146.70.21.11" + ], "tcp": true, "udp": true }, @@ -57871,7 +60929,9 @@ "region": "Sweden", "hostname": "se570.nordvpn.com", "number": 570, - "ip": "146.70.21.19", + "ips": [ + "146.70.21.19" + ], "tcp": true, "udp": true }, @@ -57879,7 +60939,9 @@ "region": "Sweden", "hostname": "se571.nordvpn.com", "number": 571, - "ip": "146.70.21.27", + "ips": [ + "146.70.21.27" + ], "tcp": true, "udp": true }, @@ -57887,7 +60949,9 @@ "region": "Sweden", "hostname": "se572.nordvpn.com", "number": 572, - "ip": "146.70.21.35", + "ips": [ + "146.70.21.35" + ], "tcp": true, "udp": true }, @@ -57895,7 +60959,9 @@ "region": "Sweden", "hostname": "se573.nordvpn.com", "number": 573, - "ip": "146.70.21.43", + "ips": [ + "146.70.21.43" + ], "tcp": true, "udp": true }, @@ -57903,7 +60969,9 @@ "region": "Sweden", "hostname": "se574.nordvpn.com", "number": 574, - "ip": "146.70.21.51", + "ips": [ + "146.70.21.51" + ], "tcp": true, "udp": true }, @@ -57911,7 +60979,9 @@ "region": "Sweden", "hostname": "se575.nordvpn.com", "number": 575, - "ip": "146.70.21.59", + "ips": [ + "146.70.21.59" + ], "tcp": true, "udp": true }, @@ -57919,7 +60989,69 @@ "region": "Sweden", "hostname": "se576.nordvpn.com", "number": 576, - "ip": "146.70.21.67", + "ips": [ + "146.70.21.67" + ], + "tcp": true, + "udp": true + }, + { + "region": "Sweden", + "hostname": "se581.nordvpn.com", + "number": 581, + "ips": [ + "146.70.21.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "Sweden", + "hostname": "se582.nordvpn.com", + "number": 582, + "ips": [ + "31.13.191.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "Sweden", + "hostname": "se583.nordvpn.com", + "number": 583, + "ips": [ + "31.13.191.139" + ], + "tcp": true, + "udp": true + }, + { + "region": "Sweden", + "hostname": "se584.nordvpn.com", + "number": 584, + "ips": [ + "31.13.191.147" + ], + "tcp": true, + "udp": true + }, + { + "region": "Sweden", + "hostname": "se585.nordvpn.com", + "number": 585, + "ips": [ + "31.13.191.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "Sweden", + "hostname": "se586.nordvpn.com", + "number": 586, + "ips": [ + "146.70.21.107" + ], "tcp": true, "udp": true }, @@ -57927,15 +61059,9 @@ "region": "Switzerland", "hostname": "ch-onion2.nordvpn.com", "number": 2, - "ip": "37.120.137.172", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch-se8.nordvpn.com", - "number": 8, - "ip": "217.138.203.252", + "ips": [ + "37.120.137.172" + ], "tcp": true, "udp": true }, @@ -57943,7 +61069,19 @@ "region": "Switzerland", "hostname": "ch-nl8.nordvpn.com", "number": 8, - "ip": "217.138.203.251", + "ips": [ + "217.138.203.251" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch-se8.nordvpn.com", + "number": 8, + "ips": [ + "217.138.203.252" + ], "tcp": true, "udp": true }, @@ -57951,7 +61089,9 @@ "region": "Switzerland", "hostname": "ch-nl10.nordvpn.com", "number": 10, - "ip": "91.132.136.220", + "ips": [ + "91.132.136.220" + ], "tcp": true, "udp": true }, @@ -57959,15 +61099,9 @@ "region": "Switzerland", "hostname": "ch-se10.nordvpn.com", "number": 10, - "ip": "91.132.136.219", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch-nl11.nordvpn.com", - "number": 11, - "ip": "217.138.203.212", + "ips": [ + "91.132.136.219" + ], "tcp": true, "udp": true }, @@ -57975,15 +61109,19 @@ "region": "Switzerland", "hostname": "ch-se11.nordvpn.com", "number": 11, - "ip": "217.138.203.211", + "ips": [ + "217.138.203.211" + ], "tcp": true, "udp": true }, { "region": "Switzerland", - "hostname": "ch-nl12.nordvpn.com", - "number": 12, - "ip": "195.242.213.227", + "hostname": "ch-nl11.nordvpn.com", + "number": 11, + "ips": [ + "217.138.203.212" + ], "tcp": true, "udp": true }, @@ -57991,7 +61129,19 @@ "region": "Switzerland", "hostname": "ch-se12.nordvpn.com", "number": 12, - "ip": "195.242.213.228", + "ips": [ + "195.242.213.228" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch-nl12.nordvpn.com", + "number": 12, + "ips": [ + "195.242.213.227" + ], "tcp": true, "udp": true }, @@ -57999,7 +61149,9 @@ "region": "Switzerland", "hostname": "ch198.nordvpn.com", "number": 198, - "ip": "37.120.213.131", + "ips": [ + "37.120.213.131" + ], "tcp": true, "udp": true }, @@ -58007,7 +61159,9 @@ "region": "Switzerland", "hostname": "ch217.nordvpn.com", "number": 217, - "ip": "185.156.175.132", + "ips": [ + "185.156.175.132" + ], "tcp": true, "udp": true }, @@ -58015,7 +61169,9 @@ "region": "Switzerland", "hostname": "ch218.nordvpn.com", "number": 218, - "ip": "84.39.112.20", + "ips": [ + "84.39.112.20" + ], "tcp": true, "udp": true }, @@ -58023,7 +61179,9 @@ "region": "Switzerland", "hostname": "ch219.nordvpn.com", "number": 219, - "ip": "185.9.18.84", + "ips": [ + "185.9.18.84" + ], "tcp": true, "udp": true }, @@ -58031,7 +61189,9 @@ "region": "Switzerland", "hostname": "ch221.nordvpn.com", "number": 221, - "ip": "91.132.136.235", + "ips": [ + "91.132.136.235" + ], "tcp": true, "udp": true }, @@ -58039,7 +61199,9 @@ "region": "Switzerland", "hostname": "ch222.nordvpn.com", "number": 222, - "ip": "185.156.175.115", + "ips": [ + "185.156.175.115" + ], "tcp": true, "udp": true }, @@ -58047,7 +61209,9 @@ "region": "Switzerland", "hostname": "ch223.nordvpn.com", "number": 223, - "ip": "185.156.175.123", + "ips": [ + "185.156.175.123" + ], "tcp": true, "udp": true }, @@ -58055,7 +61219,9 @@ "region": "Switzerland", "hostname": "ch224.nordvpn.com", "number": 224, - "ip": "185.9.18.163", + "ips": [ + "185.9.18.163" + ], "tcp": true, "udp": true }, @@ -58063,7 +61229,9 @@ "region": "Switzerland", "hostname": "ch225.nordvpn.com", "number": 225, - "ip": "212.102.36.150", + "ips": [ + "212.102.36.150" + ], "tcp": true, "udp": true }, @@ -58071,7 +61239,9 @@ "region": "Switzerland", "hostname": "ch226.nordvpn.com", "number": 226, - "ip": "212.102.36.145", + "ips": [ + "212.102.36.145" + ], "tcp": true, "udp": true }, @@ -58079,7 +61249,9 @@ "region": "Switzerland", "hostname": "ch227.nordvpn.com", "number": 227, - "ip": "212.102.36.140", + "ips": [ + "212.102.36.140" + ], "tcp": true, "udp": true }, @@ -58087,7 +61259,9 @@ "region": "Switzerland", "hostname": "ch228.nordvpn.com", "number": 228, - "ip": "212.102.36.135", + "ips": [ + "212.102.36.135" + ], "tcp": true, "udp": true }, @@ -58095,7 +61269,9 @@ "region": "Switzerland", "hostname": "ch229.nordvpn.com", "number": 229, - "ip": "212.102.36.130", + "ips": [ + "212.102.36.130" + ], "tcp": true, "udp": true }, @@ -58103,15 +61279,18 @@ "region": "Switzerland", "hostname": "ch240.nordvpn.com", "number": 240, - "ip": "195.242.213.147", - "tcp": true, + "ips": [ + "195.242.213.147" + ], "udp": true }, { "region": "Switzerland", "hostname": "ch241.nordvpn.com", "number": 241, - "ip": "185.230.125.107", + "ips": [ + "185.230.125.107" + ], "tcp": true, "udp": true }, @@ -58119,7 +61298,9 @@ "region": "Switzerland", "hostname": "ch242.nordvpn.com", "number": 242, - "ip": "185.236.201.131", + "ips": [ + "185.236.201.131" + ], "tcp": true, "udp": true }, @@ -58127,7 +61308,9 @@ "region": "Switzerland", "hostname": "ch243.nordvpn.com", "number": 243, - "ip": "185.236.201.139", + "ips": [ + "185.236.201.139" + ], "tcp": true, "udp": true }, @@ -58135,39 +61318,9 @@ "region": "Switzerland", "hostname": "ch245.nordvpn.com", "number": 245, - "ip": "195.242.213.152", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch247.nordvpn.com", - "number": 247, - "ip": "217.138.203.201", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch248.nordvpn.com", - "number": 248, - "ip": "217.138.203.198", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch249.nordvpn.com", - "number": 249, - "ip": "217.138.203.204", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch250.nordvpn.com", - "number": 250, - "ip": "217.138.203.195", + "ips": [ + "195.242.213.152" + ], "tcp": true, "udp": true }, @@ -58175,23 +61328,9 @@ "region": "Switzerland", "hostname": "ch252.nordvpn.com", "number": 252, - "ip": "185.156.175.139", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch284.nordvpn.com", - "number": 284, - "ip": "217.138.203.163", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch285.nordvpn.com", - "number": 285, - "ip": "217.138.203.166", + "ips": [ + "185.156.175.139" + ], "tcp": true, "udp": true }, @@ -58199,7 +61338,9 @@ "region": "Switzerland", "hostname": "ch286.nordvpn.com", "number": 286, - "ip": "185.236.201.147", + "ips": [ + "185.236.201.147" + ], "tcp": true, "udp": true }, @@ -58207,7 +61348,9 @@ "region": "Switzerland", "hostname": "ch293.nordvpn.com", "number": 293, - "ip": "37.120.213.43", + "ips": [ + "37.120.213.43" + ], "tcp": true, "udp": true }, @@ -58215,7 +61358,9 @@ "region": "Switzerland", "hostname": "ch294.nordvpn.com", "number": 294, - "ip": "37.120.213.67", + "ips": [ + "37.120.213.67" + ], "tcp": true, "udp": true }, @@ -58223,7 +61368,9 @@ "region": "Switzerland", "hostname": "ch295.nordvpn.com", "number": 295, - "ip": "37.120.213.75", + "ips": [ + "37.120.213.75" + ], "tcp": true, "udp": true }, @@ -58231,7 +61378,9 @@ "region": "Switzerland", "hostname": "ch296.nordvpn.com", "number": 296, - "ip": "37.120.213.83", + "ips": [ + "37.120.213.83" + ], "tcp": true, "udp": true }, @@ -58239,7 +61388,9 @@ "region": "Switzerland", "hostname": "ch297.nordvpn.com", "number": 297, - "ip": "37.120.213.91", + "ips": [ + "37.120.213.91" + ], "tcp": true, "udp": true }, @@ -58247,7 +61398,9 @@ "region": "Switzerland", "hostname": "ch298.nordvpn.com", "number": 298, - "ip": "37.120.213.99", + "ips": [ + "37.120.213.99" + ], "tcp": true, "udp": true }, @@ -58255,7 +61408,9 @@ "region": "Switzerland", "hostname": "ch299.nordvpn.com", "number": 299, - "ip": "37.120.213.107", + "ips": [ + "37.120.213.107" + ], "tcp": true, "udp": true }, @@ -58263,7 +61418,9 @@ "region": "Switzerland", "hostname": "ch300.nordvpn.com", "number": 300, - "ip": "37.120.213.115", + "ips": [ + "37.120.213.115" + ], "tcp": true, "udp": true }, @@ -58271,71 +61428,9 @@ "region": "Switzerland", "hostname": "ch301.nordvpn.com", "number": 301, - "ip": "37.120.213.123", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch308.nordvpn.com", - "number": 308, - "ip": "217.138.203.169", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch309.nordvpn.com", - "number": 309, - "ip": "217.138.203.172", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch310.nordvpn.com", - "number": 310, - "ip": "217.138.203.189", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch311.nordvpn.com", - "number": 311, - "ip": "217.138.203.175", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch312.nordvpn.com", - "number": 312, - "ip": "217.138.203.178", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch313.nordvpn.com", - "number": 313, - "ip": "217.138.203.181", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch314.nordvpn.com", - "number": 314, - "ip": "217.138.203.184", - "tcp": true, - "udp": true - }, - { - "region": "Switzerland", - "hostname": "ch315.nordvpn.com", - "number": 315, - "ip": "217.138.203.187", + "ips": [ + "37.120.213.123" + ], "tcp": true, "udp": true }, @@ -58343,7 +61438,9 @@ "region": "Switzerland", "hostname": "ch319.nordvpn.com", "number": 319, - "ip": "195.216.219.121", + "ips": [ + "195.216.219.121" + ], "tcp": true, "udp": true }, @@ -58351,7 +61448,9 @@ "region": "Switzerland", "hostname": "ch320.nordvpn.com", "number": 320, - "ip": "195.216.219.129", + "ips": [ + "195.216.219.129" + ], "tcp": true, "udp": true }, @@ -58359,7 +61458,9 @@ "region": "Switzerland", "hostname": "ch321.nordvpn.com", "number": 321, - "ip": "195.216.219.131", + "ips": [ + "195.216.219.131" + ], "tcp": true, "udp": true }, @@ -58367,7 +61468,9 @@ "region": "Switzerland", "hostname": "ch322.nordvpn.com", "number": 322, - "ip": "195.216.219.133", + "ips": [ + "195.216.219.133" + ], "tcp": true, "udp": true }, @@ -58375,7 +61478,9 @@ "region": "Switzerland", "hostname": "ch323.nordvpn.com", "number": 323, - "ip": "195.216.219.135", + "ips": [ + "195.216.219.135" + ], "tcp": true, "udp": true }, @@ -58383,7 +61488,9 @@ "region": "Switzerland", "hostname": "ch324.nordvpn.com", "number": 324, - "ip": "195.216.219.137", + "ips": [ + "195.216.219.137" + ], "tcp": true, "udp": true }, @@ -58391,7 +61498,9 @@ "region": "Switzerland", "hostname": "ch325.nordvpn.com", "number": 325, - "ip": "195.216.219.139", + "ips": [ + "195.216.219.139" + ], "tcp": true, "udp": true }, @@ -58399,7 +61508,9 @@ "region": "Switzerland", "hostname": "ch326.nordvpn.com", "number": 326, - "ip": "195.216.219.141", + "ips": [ + "195.216.219.141" + ], "tcp": true, "udp": true }, @@ -58407,7 +61518,9 @@ "region": "Switzerland", "hostname": "ch327.nordvpn.com", "number": 327, - "ip": "195.216.219.143", + "ips": [ + "195.216.219.143" + ], "tcp": true, "udp": true }, @@ -58415,7 +61528,9 @@ "region": "Switzerland", "hostname": "ch328.nordvpn.com", "number": 328, - "ip": "195.216.219.145", + "ips": [ + "195.216.219.145" + ], "tcp": true, "udp": true }, @@ -58423,7 +61538,9 @@ "region": "Switzerland", "hostname": "ch329.nordvpn.com", "number": 329, - "ip": "195.216.219.147", + "ips": [ + "195.216.219.147" + ], "tcp": true, "udp": true }, @@ -58431,7 +61548,9 @@ "region": "Switzerland", "hostname": "ch330.nordvpn.com", "number": 330, - "ip": "195.216.219.149", + "ips": [ + "195.216.219.149" + ], "tcp": true, "udp": true }, @@ -58439,7 +61558,9 @@ "region": "Switzerland", "hostname": "ch331.nordvpn.com", "number": 331, - "ip": "195.216.219.151", + "ips": [ + "195.216.219.151" + ], "tcp": true, "udp": true }, @@ -58447,7 +61568,9 @@ "region": "Switzerland", "hostname": "ch332.nordvpn.com", "number": 332, - "ip": "195.216.219.153", + "ips": [ + "195.216.219.153" + ], "tcp": true, "udp": true }, @@ -58455,7 +61578,9 @@ "region": "Switzerland", "hostname": "ch333.nordvpn.com", "number": 333, - "ip": "195.216.219.155", + "ips": [ + "195.216.219.155" + ], "tcp": true, "udp": true }, @@ -58463,7 +61588,9 @@ "region": "Switzerland", "hostname": "ch334.nordvpn.com", "number": 334, - "ip": "178.239.165.14", + "ips": [ + "178.239.165.14" + ], "tcp": true, "udp": true }, @@ -58471,7 +61598,9 @@ "region": "Switzerland", "hostname": "ch335.nordvpn.com", "number": 335, - "ip": "178.239.165.16", + "ips": [ + "178.239.165.16" + ], "tcp": true, "udp": true }, @@ -58479,7 +61608,9 @@ "region": "Switzerland", "hostname": "ch336.nordvpn.com", "number": 336, - "ip": "178.239.165.18", + "ips": [ + "178.239.165.18" + ], "tcp": true, "udp": true }, @@ -58487,7 +61618,9 @@ "region": "Switzerland", "hostname": "ch337.nordvpn.com", "number": 337, - "ip": "178.239.165.20", + "ips": [ + "178.239.165.20" + ], "tcp": true, "udp": true }, @@ -58495,7 +61628,9 @@ "region": "Switzerland", "hostname": "ch338.nordvpn.com", "number": 338, - "ip": "178.239.165.22", + "ips": [ + "178.239.165.22" + ], "tcp": true, "udp": true }, @@ -58503,7 +61638,9 @@ "region": "Switzerland", "hostname": "ch339.nordvpn.com", "number": 339, - "ip": "178.239.165.24", + "ips": [ + "178.239.165.24" + ], "tcp": true, "udp": true }, @@ -58511,7 +61648,9 @@ "region": "Switzerland", "hostname": "ch340.nordvpn.com", "number": 340, - "ip": "178.239.165.26", + "ips": [ + "178.239.165.26" + ], "tcp": true, "udp": true }, @@ -58519,7 +61658,9 @@ "region": "Switzerland", "hostname": "ch341.nordvpn.com", "number": 341, - "ip": "178.239.165.28", + "ips": [ + "178.239.165.28" + ], "tcp": true, "udp": true }, @@ -58527,7 +61668,9 @@ "region": "Switzerland", "hostname": "ch342.nordvpn.com", "number": 342, - "ip": "178.239.165.30", + "ips": [ + "178.239.165.30" + ], "tcp": true, "udp": true }, @@ -58535,7 +61678,9 @@ "region": "Switzerland", "hostname": "ch343.nordvpn.com", "number": 343, - "ip": "178.239.165.32", + "ips": [ + "178.239.165.32" + ], "tcp": true, "udp": true }, @@ -58543,7 +61688,9 @@ "region": "Switzerland", "hostname": "ch344.nordvpn.com", "number": 344, - "ip": "178.239.165.34", + "ips": [ + "178.239.165.34" + ], "tcp": true, "udp": true }, @@ -58551,7 +61698,9 @@ "region": "Switzerland", "hostname": "ch345.nordvpn.com", "number": 345, - "ip": "178.239.165.36", + "ips": [ + "178.239.165.36" + ], "tcp": true, "udp": true }, @@ -58559,7 +61708,9 @@ "region": "Switzerland", "hostname": "ch346.nordvpn.com", "number": 346, - "ip": "178.239.165.142", + "ips": [ + "178.239.165.142" + ], "tcp": true, "udp": true }, @@ -58567,7 +61718,9 @@ "region": "Switzerland", "hostname": "ch347.nordvpn.com", "number": 347, - "ip": "178.239.165.151", + "ips": [ + "178.239.165.151" + ], "tcp": true, "udp": true }, @@ -58575,7 +61728,9 @@ "region": "Switzerland", "hostname": "ch348.nordvpn.com", "number": 348, - "ip": "178.239.165.161", + "ips": [ + "178.239.165.161" + ], "tcp": true, "udp": true }, @@ -58583,7 +61738,9 @@ "region": "Switzerland", "hostname": "ch349.nordvpn.com", "number": 349, - "ip": "178.239.165.171", + "ips": [ + "178.239.165.171" + ], "tcp": true, "udp": true }, @@ -58591,7 +61748,9 @@ "region": "Switzerland", "hostname": "ch350.nordvpn.com", "number": 350, - "ip": "178.239.165.181", + "ips": [ + "178.239.165.181" + ], "tcp": true, "udp": true }, @@ -58599,7 +61758,9 @@ "region": "Switzerland", "hostname": "ch351.nordvpn.com", "number": 351, - "ip": "178.239.165.190", + "ips": [ + "178.239.165.190" + ], "tcp": true, "udp": true }, @@ -58607,7 +61768,9 @@ "region": "Switzerland", "hostname": "ch352.nordvpn.com", "number": 352, - "ip": "178.239.165.199", + "ips": [ + "178.239.165.199" + ], "tcp": true, "udp": true }, @@ -58615,7 +61778,9 @@ "region": "Switzerland", "hostname": "ch353.nordvpn.com", "number": 353, - "ip": "178.239.165.208", + "ips": [ + "178.239.165.208" + ], "tcp": true, "udp": true }, @@ -58623,7 +61788,9 @@ "region": "Switzerland", "hostname": "ch354.nordvpn.com", "number": 354, - "ip": "178.239.165.226", + "ips": [ + "178.239.165.226" + ], "tcp": true, "udp": true }, @@ -58631,7 +61798,9 @@ "region": "Switzerland", "hostname": "ch355.nordvpn.com", "number": 355, - "ip": "178.239.165.235", + "ips": [ + "178.239.165.235" + ], "tcp": true, "udp": true }, @@ -58639,7 +61808,9 @@ "region": "Switzerland", "hostname": "ch356.nordvpn.com", "number": 356, - "ip": "178.239.165.245", + "ips": [ + "178.239.165.245" + ], "tcp": true, "udp": true }, @@ -58647,7 +61818,9 @@ "region": "Switzerland", "hostname": "ch357.nordvpn.com", "number": 357, - "ip": "178.239.165.217", + "ips": [ + "178.239.165.217" + ], "tcp": true, "udp": true }, @@ -58655,7 +61828,9 @@ "region": "Switzerland", "hostname": "ch358.nordvpn.com", "number": 358, - "ip": "217.138.203.219", + "ips": [ + "217.138.203.219" + ], "tcp": true, "udp": true }, @@ -58663,7 +61838,309 @@ "region": "Switzerland", "hostname": "ch359.nordvpn.com", "number": 359, - "ip": "185.9.18.171", + "ips": [ + "185.9.18.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch360.nordvpn.com", + "number": 360, + "ips": [ + "146.70.26.75" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch361.nordvpn.com", + "number": 361, + "ips": [ + "146.70.26.83" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch362.nordvpn.com", + "number": 362, + "ips": [ + "146.70.26.91" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch363.nordvpn.com", + "number": 363, + "ips": [ + "195.206.105.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch364.nordvpn.com", + "number": 364, + "ips": [ + "195.206.105.123" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch365.nordvpn.com", + "number": 365, + "ips": [ + "185.212.170.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch366.nordvpn.com", + "number": 366, + "ips": [ + "146.70.71.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch367.nordvpn.com", + "number": 367, + "ips": [ + "146.70.71.43" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch368.nordvpn.com", + "number": 368, + "ips": [ + "146.70.71.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch369.nordvpn.com", + "number": 369, + "ips": [ + "146.70.71.59" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch370.nordvpn.com", + "number": 370, + "ips": [ + "146.70.26.43" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch371.nordvpn.com", + "number": 371, + "ips": [ + "146.70.26.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch372.nordvpn.com", + "number": 372, + "ips": [ + "146.70.26.59" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch373.nordvpn.com", + "number": 373, + "ips": [ + "146.70.26.67" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch374.nordvpn.com", + "number": 374, + "ips": [ + "89.37.173.142" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch375.nordvpn.com", + "number": 375, + "ips": [ + "89.37.173.152" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch376.nordvpn.com", + "number": 376, + "ips": [ + "89.37.173.162" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch377.nordvpn.com", + "number": 377, + "ips": [ + "89.37.173.172" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch378.nordvpn.com", + "number": 378, + "ips": [ + "89.37.173.182" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch379.nordvpn.com", + "number": 379, + "ips": [ + "89.37.173.192" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch380.nordvpn.com", + "number": 380, + "ips": [ + "89.37.173.201" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch381.nordvpn.com", + "number": 381, + "ips": [ + "89.37.173.210" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch382.nordvpn.com", + "number": 382, + "ips": [ + "89.37.173.219" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch383.nordvpn.com", + "number": 383, + "ips": [ + "89.37.173.228" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch384.nordvpn.com", + "number": 384, + "ips": [ + "89.37.173.237" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch385.nordvpn.com", + "number": 385, + "ips": [ + "89.37.173.246" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch386.nordvpn.com", + "number": 386, + "ips": [ + "82.180.148.245" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch387.nordvpn.com", + "number": 387, + "ips": [ + "82.180.148.247" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch388.nordvpn.com", + "number": 388, + "ips": [ + "82.180.148.249" + ], + "tcp": true, + "udp": true + }, + { + "region": "Switzerland", + "hostname": "ch389.nordvpn.com", + "number": 389, + "ips": [ + "82.180.148.251" + ], "tcp": true, "udp": true }, @@ -58671,7 +62148,9 @@ "region": "Taiwan", "hostname": "tw-hk4.nordvpn.com", "number": 4, - "ip": "103.4.30.123", + "ips": [ + "103.4.30.123" + ], "tcp": true, "udp": true }, @@ -58679,7 +62158,9 @@ "region": "Taiwan", "hostname": "tw39.nordvpn.com", "number": 39, - "ip": "185.189.160.63", + "ips": [ + "185.189.160.63" + ], "tcp": true, "udp": true }, @@ -58687,7 +62168,9 @@ "region": "Taiwan", "hostname": "tw40.nordvpn.com", "number": 40, - "ip": "185.189.160.78", + "ips": [ + "185.189.160.78" + ], "tcp": true, "udp": true }, @@ -58695,7 +62178,9 @@ "region": "Taiwan", "hostname": "tw41.nordvpn.com", "number": 41, - "ip": "185.189.160.83", + "ips": [ + "185.189.160.83" + ], "tcp": true, "udp": true }, @@ -58703,7 +62188,9 @@ "region": "Taiwan", "hostname": "tw42.nordvpn.com", "number": 42, - "ip": "185.189.160.91", + "ips": [ + "185.189.160.91" + ], "tcp": true, "udp": true }, @@ -58711,7 +62198,9 @@ "region": "Taiwan", "hostname": "tw43.nordvpn.com", "number": 43, - "ip": "185.189.160.93", + "ips": [ + "185.189.160.93" + ], "tcp": true, "udp": true }, @@ -58719,7 +62208,9 @@ "region": "Taiwan", "hostname": "tw44.nordvpn.com", "number": 44, - "ip": "103.4.29.24", + "ips": [ + "103.4.29.24" + ], "tcp": true, "udp": true }, @@ -58727,7 +62218,9 @@ "region": "Taiwan", "hostname": "tw45.nordvpn.com", "number": 45, - "ip": "185.189.160.95", + "ips": [ + "185.189.160.95" + ], "tcp": true, "udp": true }, @@ -58735,7 +62228,9 @@ "region": "Taiwan", "hostname": "tw46.nordvpn.com", "number": 46, - "ip": "103.4.29.216", + "ips": [ + "103.4.29.216" + ], "tcp": true, "udp": true }, @@ -58743,7 +62238,9 @@ "region": "Taiwan", "hostname": "tw47.nordvpn.com", "number": 47, - "ip": "185.189.160.18", + "ips": [ + "185.189.160.18" + ], "tcp": true, "udp": true }, @@ -58751,7 +62248,9 @@ "region": "Taiwan", "hostname": "tw48.nordvpn.com", "number": 48, - "ip": "185.189.160.98", + "ips": [ + "185.189.160.98" + ], "tcp": true, "udp": true }, @@ -58759,7 +62258,9 @@ "region": "Taiwan", "hostname": "tw49.nordvpn.com", "number": 49, - "ip": "185.189.160.99", + "ips": [ + "185.189.160.99" + ], "tcp": true, "udp": true }, @@ -58767,7 +62268,9 @@ "region": "Taiwan", "hostname": "tw50.nordvpn.com", "number": 50, - "ip": "185.189.160.100", + "ips": [ + "185.189.160.100" + ], "tcp": true, "udp": true }, @@ -58775,7 +62278,9 @@ "region": "Taiwan", "hostname": "tw51.nordvpn.com", "number": 51, - "ip": "185.189.160.101", + "ips": [ + "185.189.160.101" + ], "tcp": true, "udp": true }, @@ -58783,7 +62288,9 @@ "region": "Taiwan", "hostname": "tw52.nordvpn.com", "number": 52, - "ip": "185.189.160.102", + "ips": [ + "185.189.160.102" + ], "tcp": true, "udp": true }, @@ -58791,7 +62298,9 @@ "region": "Taiwan", "hostname": "tw53.nordvpn.com", "number": 53, - "ip": "185.189.160.103", + "ips": [ + "185.189.160.103" + ], "tcp": true, "udp": true }, @@ -58799,7 +62308,9 @@ "region": "Taiwan", "hostname": "tw54.nordvpn.com", "number": 54, - "ip": "103.4.31.5", + "ips": [ + "103.4.31.5" + ], "tcp": true, "udp": true }, @@ -58807,7 +62318,9 @@ "region": "Taiwan", "hostname": "tw55.nordvpn.com", "number": 55, - "ip": "185.189.160.5", + "ips": [ + "185.189.160.5" + ], "tcp": true, "udp": true }, @@ -58815,7 +62328,9 @@ "region": "Taiwan", "hostname": "tw56.nordvpn.com", "number": 56, - "ip": "185.189.160.24", + "ips": [ + "185.189.160.24" + ], "tcp": true, "udp": true }, @@ -58823,7 +62338,9 @@ "region": "Taiwan", "hostname": "tw57.nordvpn.com", "number": 57, - "ip": "185.189.160.28", + "ips": [ + "185.189.160.28" + ], "tcp": true, "udp": true }, @@ -58831,7 +62348,9 @@ "region": "Taiwan", "hostname": "tw58.nordvpn.com", "number": 58, - "ip": "185.189.160.20", + "ips": [ + "185.189.160.20" + ], "tcp": true, "udp": true }, @@ -58839,7 +62358,9 @@ "region": "Taiwan", "hostname": "tw59.nordvpn.com", "number": 59, - "ip": "185.189.160.30", + "ips": [ + "185.189.160.30" + ], "tcp": true, "udp": true }, @@ -58847,7 +62368,9 @@ "region": "Taiwan", "hostname": "tw60.nordvpn.com", "number": 60, - "ip": "185.189.160.55", + "ips": [ + "185.189.160.55" + ], "tcp": true, "udp": true }, @@ -58855,7 +62378,9 @@ "region": "Taiwan", "hostname": "tw61.nordvpn.com", "number": 61, - "ip": "185.189.160.56", + "ips": [ + "185.189.160.56" + ], "tcp": true, "udp": true }, @@ -58863,7 +62388,9 @@ "region": "Taiwan", "hostname": "tw62.nordvpn.com", "number": 62, - "ip": "185.189.160.73", + "ips": [ + "185.189.160.73" + ], "tcp": true, "udp": true }, @@ -58871,7 +62398,9 @@ "region": "Taiwan", "hostname": "tw63.nordvpn.com", "number": 63, - "ip": "103.4.31.11", + "ips": [ + "103.4.31.11" + ], "tcp": true, "udp": true }, @@ -58879,7 +62408,9 @@ "region": "Taiwan", "hostname": "tw64.nordvpn.com", "number": 64, - "ip": "185.189.160.89", + "ips": [ + "185.189.160.89" + ], "tcp": true, "udp": true }, @@ -58887,7 +62418,9 @@ "region": "Taiwan", "hostname": "tw65.nordvpn.com", "number": 65, - "ip": "103.4.31.87", + "ips": [ + "103.4.31.87" + ], "tcp": true, "udp": true }, @@ -58895,7 +62428,9 @@ "region": "Taiwan", "hostname": "tw66.nordvpn.com", "number": 66, - "ip": "103.4.31.89", + "ips": [ + "103.4.31.89" + ], "tcp": true, "udp": true }, @@ -58903,7 +62438,9 @@ "region": "Taiwan", "hostname": "tw67.nordvpn.com", "number": 67, - "ip": "185.189.160.163", + "ips": [ + "185.189.160.163" + ], "tcp": true, "udp": true }, @@ -58911,7 +62448,9 @@ "region": "Taiwan", "hostname": "tw68.nordvpn.com", "number": 68, - "ip": "185.189.160.50", + "ips": [ + "185.189.160.50" + ], "tcp": true, "udp": true }, @@ -58919,7 +62458,9 @@ "region": "Taiwan", "hostname": "tw69.nordvpn.com", "number": 69, - "ip": "185.189.160.85", + "ips": [ + "185.189.160.85" + ], "tcp": true, "udp": true }, @@ -58927,7 +62468,9 @@ "region": "Taiwan", "hostname": "tw70.nordvpn.com", "number": 70, - "ip": "185.189.160.118", + "ips": [ + "185.189.160.118" + ], "tcp": true, "udp": true }, @@ -58935,7 +62478,9 @@ "region": "Taiwan", "hostname": "tw71.nordvpn.com", "number": 71, - "ip": "185.189.160.122", + "ips": [ + "185.189.160.122" + ], "tcp": true, "udp": true }, @@ -58943,7 +62488,9 @@ "region": "Taiwan", "hostname": "tw72.nordvpn.com", "number": 72, - "ip": "185.189.160.120", + "ips": [ + "185.189.160.120" + ], "tcp": true, "udp": true }, @@ -58951,7 +62498,9 @@ "region": "Taiwan", "hostname": "tw73.nordvpn.com", "number": 73, - "ip": "185.189.160.121", + "ips": [ + "185.189.160.121" + ], "tcp": true, "udp": true }, @@ -58959,7 +62508,9 @@ "region": "Taiwan", "hostname": "tw74.nordvpn.com", "number": 74, - "ip": "185.189.160.135", + "ips": [ + "185.189.160.135" + ], "tcp": true, "udp": true }, @@ -58967,7 +62518,9 @@ "region": "Taiwan", "hostname": "tw76.nordvpn.com", "number": 76, - "ip": "185.189.160.88", + "ips": [ + "185.189.160.88" + ], "tcp": true, "udp": true }, @@ -58975,7 +62528,9 @@ "region": "Taiwan", "hostname": "tw77.nordvpn.com", "number": 77, - "ip": "185.189.160.140", + "ips": [ + "185.189.160.140" + ], "tcp": true, "udp": true }, @@ -58983,7 +62538,9 @@ "region": "Taiwan", "hostname": "tw78.nordvpn.com", "number": 78, - "ip": "185.189.160.23", + "ips": [ + "185.189.160.23" + ], "tcp": true, "udp": true }, @@ -58991,7 +62548,9 @@ "region": "Taiwan", "hostname": "tw79.nordvpn.com", "number": 79, - "ip": "185.189.160.147", + "ips": [ + "185.189.160.147" + ], "tcp": true, "udp": true }, @@ -58999,7 +62558,9 @@ "region": "Taiwan", "hostname": "tw80.nordvpn.com", "number": 80, - "ip": "185.189.160.138", + "ips": [ + "185.189.160.138" + ], "tcp": true, "udp": true }, @@ -59007,7 +62568,9 @@ "region": "Taiwan", "hostname": "tw81.nordvpn.com", "number": 81, - "ip": "185.189.160.141", + "ips": [ + "185.189.160.141" + ], "tcp": true, "udp": true }, @@ -59015,7 +62578,9 @@ "region": "Taiwan", "hostname": "tw82.nordvpn.com", "number": 82, - "ip": "185.189.160.155", + "ips": [ + "185.189.160.155" + ], "tcp": true, "udp": true }, @@ -59023,7 +62588,9 @@ "region": "Taiwan", "hostname": "tw83.nordvpn.com", "number": 83, - "ip": "185.189.160.150", + "ips": [ + "185.189.160.150" + ], "tcp": true, "udp": true }, @@ -59031,7 +62598,9 @@ "region": "Taiwan", "hostname": "tw84.nordvpn.com", "number": 84, - "ip": "185.189.160.154", + "ips": [ + "185.189.160.154" + ], "tcp": true, "udp": true }, @@ -59039,7 +62608,9 @@ "region": "Taiwan", "hostname": "tw85.nordvpn.com", "number": 85, - "ip": "185.189.160.203", + "ips": [ + "185.189.160.203" + ], "tcp": true, "udp": true }, @@ -59047,7 +62618,9 @@ "region": "Taiwan", "hostname": "tw86.nordvpn.com", "number": 86, - "ip": "185.189.160.204", + "ips": [ + "185.189.160.204" + ], "tcp": true, "udp": true }, @@ -59055,7 +62628,9 @@ "region": "Taiwan", "hostname": "tw87.nordvpn.com", "number": 87, - "ip": "185.189.160.205", + "ips": [ + "185.189.160.205" + ], "tcp": true, "udp": true }, @@ -59063,7 +62638,9 @@ "region": "Taiwan", "hostname": "tw88.nordvpn.com", "number": 88, - "ip": "185.189.160.206", + "ips": [ + "185.189.160.206" + ], "tcp": true, "udp": true }, @@ -59071,7 +62648,9 @@ "region": "Taiwan", "hostname": "tw89.nordvpn.com", "number": 89, - "ip": "185.189.160.207", + "ips": [ + "185.189.160.207" + ], "tcp": true, "udp": true }, @@ -59079,7 +62658,9 @@ "region": "Taiwan", "hostname": "tw90.nordvpn.com", "number": 90, - "ip": "185.189.160.208", + "ips": [ + "185.189.160.208" + ], "tcp": true, "udp": true }, @@ -59087,7 +62668,9 @@ "region": "Taiwan", "hostname": "tw91.nordvpn.com", "number": 91, - "ip": "185.189.160.209", + "ips": [ + "185.189.160.209" + ], "tcp": true, "udp": true }, @@ -59095,7 +62678,9 @@ "region": "Taiwan", "hostname": "tw92.nordvpn.com", "number": 92, - "ip": "185.189.160.210", + "ips": [ + "185.189.160.210" + ], "tcp": true, "udp": true }, @@ -59103,7 +62688,9 @@ "region": "Taiwan", "hostname": "tw93.nordvpn.com", "number": 93, - "ip": "185.189.160.211", + "ips": [ + "185.189.160.211" + ], "tcp": true, "udp": true }, @@ -59111,7 +62698,9 @@ "region": "Taiwan", "hostname": "tw94.nordvpn.com", "number": 94, - "ip": "185.189.160.212", + "ips": [ + "185.189.160.212" + ], "tcp": true, "udp": true }, @@ -59119,7 +62708,9 @@ "region": "Taiwan", "hostname": "tw95.nordvpn.com", "number": 95, - "ip": "185.189.160.213", + "ips": [ + "185.189.160.213" + ], "tcp": true, "udp": true }, @@ -59127,7 +62718,9 @@ "region": "Taiwan", "hostname": "tw96.nordvpn.com", "number": 96, - "ip": "185.189.160.214", + "ips": [ + "185.189.160.214" + ], "tcp": true, "udp": true }, @@ -59135,7 +62728,9 @@ "region": "Taiwan", "hostname": "tw97.nordvpn.com", "number": 97, - "ip": "185.189.160.215", + "ips": [ + "185.189.160.215" + ], "tcp": true, "udp": true }, @@ -59143,7 +62738,9 @@ "region": "Taiwan", "hostname": "tw98.nordvpn.com", "number": 98, - "ip": "185.189.160.216", + "ips": [ + "185.189.160.216" + ], "tcp": true, "udp": true }, @@ -59151,7 +62748,9 @@ "region": "Taiwan", "hostname": "tw99.nordvpn.com", "number": 99, - "ip": "185.189.160.217", + "ips": [ + "185.189.160.217" + ], "tcp": true, "udp": true }, @@ -59159,7 +62758,9 @@ "region": "Taiwan", "hostname": "tw100.nordvpn.com", "number": 100, - "ip": "185.189.160.218", + "ips": [ + "185.189.160.218" + ], "tcp": true, "udp": true }, @@ -59167,7 +62768,9 @@ "region": "Taiwan", "hostname": "tw101.nordvpn.com", "number": 101, - "ip": "185.189.160.219", + "ips": [ + "185.189.160.219" + ], "tcp": true, "udp": true }, @@ -59175,7 +62778,9 @@ "region": "Taiwan", "hostname": "tw102.nordvpn.com", "number": 102, - "ip": "185.189.160.220", + "ips": [ + "185.189.160.220" + ], "tcp": true, "udp": true }, @@ -59183,7 +62788,9 @@ "region": "Taiwan", "hostname": "tw103.nordvpn.com", "number": 103, - "ip": "185.189.160.221", + "ips": [ + "185.189.160.221" + ], "tcp": true, "udp": true }, @@ -59191,7 +62798,9 @@ "region": "Taiwan", "hostname": "tw104.nordvpn.com", "number": 104, - "ip": "185.189.160.222", + "ips": [ + "185.189.160.222" + ], "tcp": true, "udp": true }, @@ -59199,7 +62808,9 @@ "region": "Taiwan", "hostname": "tw105.nordvpn.com", "number": 105, - "ip": "185.189.160.223", + "ips": [ + "185.189.160.223" + ], "tcp": true, "udp": true }, @@ -59207,7 +62818,9 @@ "region": "Taiwan", "hostname": "tw106.nordvpn.com", "number": 106, - "ip": "185.189.160.224", + "ips": [ + "185.189.160.224" + ], "tcp": true, "udp": true }, @@ -59215,7 +62828,9 @@ "region": "Taiwan", "hostname": "tw107.nordvpn.com", "number": 107, - "ip": "185.189.160.225", + "ips": [ + "185.189.160.225" + ], "tcp": true, "udp": true }, @@ -59223,7 +62838,9 @@ "region": "Taiwan", "hostname": "tw108.nordvpn.com", "number": 108, - "ip": "185.189.160.144", + "ips": [ + "185.189.160.144" + ], "tcp": true, "udp": true }, @@ -59231,7 +62848,9 @@ "region": "Taiwan", "hostname": "tw109.nordvpn.com", "number": 109, - "ip": "185.189.160.146", + "ips": [ + "185.189.160.146" + ], "tcp": true, "udp": true }, @@ -59239,7 +62858,9 @@ "region": "Taiwan", "hostname": "tw110.nordvpn.com", "number": 110, - "ip": "185.189.160.226", + "ips": [ + "185.189.160.226" + ], "tcp": true, "udp": true }, @@ -59247,7 +62868,9 @@ "region": "Taiwan", "hostname": "tw111.nordvpn.com", "number": 111, - "ip": "185.189.160.227", + "ips": [ + "185.189.160.227" + ], "tcp": true, "udp": true }, @@ -59255,7 +62878,9 @@ "region": "Taiwan", "hostname": "tw112.nordvpn.com", "number": 112, - "ip": "185.189.160.228", + "ips": [ + "185.189.160.228" + ], "tcp": true, "udp": true }, @@ -59263,7 +62888,9 @@ "region": "Taiwan", "hostname": "tw113.nordvpn.com", "number": 113, - "ip": "185.189.160.229", + "ips": [ + "185.189.160.229" + ], "tcp": true, "udp": true }, @@ -59271,7 +62898,9 @@ "region": "Taiwan", "hostname": "tw114.nordvpn.com", "number": 114, - "ip": "185.189.160.230", + "ips": [ + "185.189.160.230" + ], "tcp": true, "udp": true }, @@ -59279,7 +62908,9 @@ "region": "Taiwan", "hostname": "tw115.nordvpn.com", "number": 115, - "ip": "185.189.160.231", + "ips": [ + "185.189.160.231" + ], "tcp": true, "udp": true }, @@ -59287,7 +62918,9 @@ "region": "Taiwan", "hostname": "tw116.nordvpn.com", "number": 116, - "ip": "185.189.160.232", + "ips": [ + "185.189.160.232" + ], "tcp": true, "udp": true }, @@ -59295,7 +62928,9 @@ "region": "Taiwan", "hostname": "tw117.nordvpn.com", "number": 117, - "ip": "185.189.160.233", + "ips": [ + "185.189.160.233" + ], "tcp": true, "udp": true }, @@ -59303,7 +62938,9 @@ "region": "Taiwan", "hostname": "tw118.nordvpn.com", "number": 118, - "ip": "185.189.160.234", + "ips": [ + "185.189.160.234" + ], "tcp": true, "udp": true }, @@ -59311,7 +62948,9 @@ "region": "Taiwan", "hostname": "tw119.nordvpn.com", "number": 119, - "ip": "185.189.160.235", + "ips": [ + "185.189.160.235" + ], "tcp": true, "udp": true }, @@ -59319,7 +62958,9 @@ "region": "Taiwan", "hostname": "tw120.nordvpn.com", "number": 120, - "ip": "185.189.160.236", + "ips": [ + "185.189.160.236" + ], "tcp": true, "udp": true }, @@ -59327,7 +62968,9 @@ "region": "Taiwan", "hostname": "tw121.nordvpn.com", "number": 121, - "ip": "185.189.160.237", + "ips": [ + "185.189.160.237" + ], "tcp": true, "udp": true }, @@ -59335,7 +62978,9 @@ "region": "Taiwan", "hostname": "tw122.nordvpn.com", "number": 122, - "ip": "185.189.160.238", + "ips": [ + "185.189.160.238" + ], "tcp": true, "udp": true }, @@ -59343,7 +62988,9 @@ "region": "Taiwan", "hostname": "tw123.nordvpn.com", "number": 123, - "ip": "185.189.160.239", + "ips": [ + "185.189.160.239" + ], "tcp": true, "udp": true }, @@ -59351,7 +62998,9 @@ "region": "Taiwan", "hostname": "tw124.nordvpn.com", "number": 124, - "ip": "185.189.160.240", + "ips": [ + "185.189.160.240" + ], "tcp": true, "udp": true }, @@ -59359,7 +63008,9 @@ "region": "Taiwan", "hostname": "tw125.nordvpn.com", "number": 125, - "ip": "185.189.160.241", + "ips": [ + "185.189.160.241" + ], "tcp": true, "udp": true }, @@ -59367,7 +63018,9 @@ "region": "Taiwan", "hostname": "tw126.nordvpn.com", "number": 126, - "ip": "185.189.161.70", + "ips": [ + "185.189.161.70" + ], "tcp": true, "udp": true }, @@ -59375,7 +63028,9 @@ "region": "Taiwan", "hostname": "tw127.nordvpn.com", "number": 127, - "ip": "185.189.161.71", + "ips": [ + "185.189.161.71" + ], "tcp": true, "udp": true }, @@ -59383,7 +63038,9 @@ "region": "Taiwan", "hostname": "tw128.nordvpn.com", "number": 128, - "ip": "185.189.161.72", + "ips": [ + "185.189.161.72" + ], "tcp": true, "udp": true }, @@ -59391,7 +63048,9 @@ "region": "Taiwan", "hostname": "tw129.nordvpn.com", "number": 129, - "ip": "185.189.161.73", + "ips": [ + "185.189.161.73" + ], "tcp": true, "udp": true }, @@ -59399,7 +63058,9 @@ "region": "Taiwan", "hostname": "tw130.nordvpn.com", "number": 130, - "ip": "185.189.161.74", + "ips": [ + "185.189.161.74" + ], "tcp": true, "udp": true }, @@ -59407,7 +63068,9 @@ "region": "Taiwan", "hostname": "tw131.nordvpn.com", "number": 131, - "ip": "185.189.161.75", + "ips": [ + "185.189.161.75" + ], "tcp": true, "udp": true }, @@ -59415,7 +63078,9 @@ "region": "Taiwan", "hostname": "tw132.nordvpn.com", "number": 132, - "ip": "185.189.161.76", + "ips": [ + "185.189.161.76" + ], "tcp": true, "udp": true }, @@ -59423,7 +63088,9 @@ "region": "Taiwan", "hostname": "tw133.nordvpn.com", "number": 133, - "ip": "185.189.161.77", + "ips": [ + "185.189.161.77" + ], "tcp": true, "udp": true }, @@ -59431,7 +63098,9 @@ "region": "Taiwan", "hostname": "tw134.nordvpn.com", "number": 134, - "ip": "185.189.161.78", + "ips": [ + "185.189.161.78" + ], "tcp": true, "udp": true }, @@ -59439,7 +63108,9 @@ "region": "Taiwan", "hostname": "tw135.nordvpn.com", "number": 135, - "ip": "185.189.161.79", + "ips": [ + "185.189.161.79" + ], "tcp": true, "udp": true }, @@ -59447,7 +63118,9 @@ "region": "Taiwan", "hostname": "tw136.nordvpn.com", "number": 136, - "ip": "185.189.161.80", + "ips": [ + "185.189.161.80" + ], "tcp": true, "udp": true }, @@ -59455,7 +63128,9 @@ "region": "Taiwan", "hostname": "tw137.nordvpn.com", "number": 137, - "ip": "185.189.161.81", + "ips": [ + "185.189.161.81" + ], "tcp": true, "udp": true }, @@ -59463,7 +63138,9 @@ "region": "Taiwan", "hostname": "tw138.nordvpn.com", "number": 138, - "ip": "185.189.161.82", + "ips": [ + "185.189.161.82" + ], "tcp": true, "udp": true }, @@ -59471,7 +63148,9 @@ "region": "Taiwan", "hostname": "tw139.nordvpn.com", "number": 139, - "ip": "185.189.161.83", + "ips": [ + "185.189.161.83" + ], "tcp": true, "udp": true }, @@ -59479,7 +63158,9 @@ "region": "Taiwan", "hostname": "tw140.nordvpn.com", "number": 140, - "ip": "185.189.161.84", + "ips": [ + "185.189.161.84" + ], "tcp": true, "udp": true }, @@ -59487,7 +63168,9 @@ "region": "Taiwan", "hostname": "tw141.nordvpn.com", "number": 141, - "ip": "185.189.161.85", + "ips": [ + "185.189.161.85" + ], "tcp": true, "udp": true }, @@ -59495,7 +63178,9 @@ "region": "Taiwan", "hostname": "tw142.nordvpn.com", "number": 142, - "ip": "185.189.161.86", + "ips": [ + "185.189.161.86" + ], "tcp": true, "udp": true }, @@ -59503,7 +63188,9 @@ "region": "Taiwan", "hostname": "tw143.nordvpn.com", "number": 143, - "ip": "185.189.161.87", + "ips": [ + "185.189.161.87" + ], "tcp": true, "udp": true }, @@ -59511,7 +63198,9 @@ "region": "Taiwan", "hostname": "tw144.nordvpn.com", "number": 144, - "ip": "185.189.161.88", + "ips": [ + "185.189.161.88" + ], "tcp": true, "udp": true }, @@ -59519,7 +63208,9 @@ "region": "Taiwan", "hostname": "tw145.nordvpn.com", "number": 145, - "ip": "185.189.161.89", + "ips": [ + "185.189.161.89" + ], "tcp": true, "udp": true }, @@ -59527,7 +63218,9 @@ "region": "Taiwan", "hostname": "tw146.nordvpn.com", "number": 146, - "ip": "185.189.161.90", + "ips": [ + "185.189.161.90" + ], "tcp": true, "udp": true }, @@ -59535,7 +63228,9 @@ "region": "Taiwan", "hostname": "tw147.nordvpn.com", "number": 147, - "ip": "103.4.30.170", + "ips": [ + "103.4.30.170" + ], "tcp": true, "udp": true }, @@ -59543,7 +63238,9 @@ "region": "Taiwan", "hostname": "tw148.nordvpn.com", "number": 148, - "ip": "103.4.30.81", + "ips": [ + "103.4.30.81" + ], "tcp": true, "udp": true }, @@ -59551,15 +63248,9 @@ "region": "Taiwan", "hostname": "tw149.nordvpn.com", "number": 149, - "ip": "103.4.30.78", - "tcp": true, - "udp": true - }, - { - "region": "Taiwan", - "hostname": "tw150.nordvpn.com", - "number": 150, - "ip": "103.4.30.91", + "ips": [ + "103.4.30.78" + ], "tcp": true, "udp": true }, @@ -59567,7 +63258,9 @@ "region": "Taiwan", "hostname": "tw151.nordvpn.com", "number": 151, - "ip": "103.4.30.117", + "ips": [ + "103.4.30.117" + ], "tcp": true, "udp": true }, @@ -59575,7 +63268,9 @@ "region": "Taiwan", "hostname": "tw152.nordvpn.com", "number": 152, - "ip": "103.4.31.34", + "ips": [ + "103.4.31.34" + ], "tcp": true, "udp": true }, @@ -59583,7 +63278,9 @@ "region": "Taiwan", "hostname": "tw153.nordvpn.com", "number": 153, - "ip": "103.4.31.37", + "ips": [ + "103.4.31.37" + ], "tcp": true, "udp": true }, @@ -59591,7 +63288,9 @@ "region": "Taiwan", "hostname": "tw154.nordvpn.com", "number": 154, - "ip": "103.4.31.40", + "ips": [ + "103.4.31.40" + ], "tcp": true, "udp": true }, @@ -59599,7 +63298,9 @@ "region": "Taiwan", "hostname": "tw155.nordvpn.com", "number": 155, - "ip": "103.4.31.43", + "ips": [ + "103.4.31.43" + ], "tcp": true, "udp": true }, @@ -59607,7 +63308,9 @@ "region": "Taiwan", "hostname": "tw156.nordvpn.com", "number": 156, - "ip": "103.208.84.251", + "ips": [ + "103.208.84.251" + ], "tcp": true, "udp": true }, @@ -59615,7 +63318,9 @@ "region": "Taiwan", "hostname": "tw157.nordvpn.com", "number": 157, - "ip": "103.4.31.46", + "ips": [ + "103.4.31.46" + ], "tcp": true, "udp": true }, @@ -59623,7 +63328,9 @@ "region": "Taiwan", "hostname": "tw158.nordvpn.com", "number": 158, - "ip": "185.189.160.34", + "ips": [ + "185.189.160.34" + ], "tcp": true, "udp": true }, @@ -59631,7 +63338,9 @@ "region": "Taiwan", "hostname": "tw159.nordvpn.com", "number": 159, - "ip": "185.189.160.37", + "ips": [ + "185.189.160.37" + ], "tcp": true, "udp": true }, @@ -59639,7 +63348,9 @@ "region": "Taiwan", "hostname": "tw160.nordvpn.com", "number": 160, - "ip": "185.189.160.159", + "ips": [ + "185.189.160.159" + ], "tcp": true, "udp": true }, @@ -59647,7 +63358,9 @@ "region": "Taiwan", "hostname": "tw161.nordvpn.com", "number": 161, - "ip": "185.189.160.40", + "ips": [ + "185.189.160.40" + ], "tcp": true, "udp": true }, @@ -59655,7 +63368,9 @@ "region": "Taiwan", "hostname": "tw162.nordvpn.com", "number": 162, - "ip": "185.189.160.43", + "ips": [ + "185.189.160.43" + ], "tcp": true, "udp": true }, @@ -59663,15 +63378,9 @@ "region": "Taiwan", "hostname": "tw163.nordvpn.com", "number": 163, - "ip": "185.189.160.46", - "tcp": true, - "udp": true - }, - { - "region": "Thailand", - "hostname": "th14.nordvpn.com", - "number": 14, - "ip": "122.155.174.64", + "ips": [ + "185.189.160.46" + ], "tcp": true, "udp": true }, @@ -59679,7 +63388,9 @@ "region": "Thailand", "hostname": "th15.nordvpn.com", "number": 15, - "ip": "122.155.174.66", + "ips": [ + "122.155.174.66" + ], "tcp": true, "udp": true }, @@ -59687,7 +63398,9 @@ "region": "Thailand", "hostname": "th16.nordvpn.com", "number": 16, - "ip": "122.155.174.68", + "ips": [ + "122.155.174.68" + ], "tcp": true, "udp": true }, @@ -59695,7 +63408,9 @@ "region": "Thailand", "hostname": "th17.nordvpn.com", "number": 17, - "ip": "122.155.174.70", + "ips": [ + "122.155.174.70" + ], "tcp": true, "udp": true }, @@ -59703,7 +63418,9 @@ "region": "Thailand", "hostname": "th18.nordvpn.com", "number": 18, - "ip": "122.155.174.72", + "ips": [ + "122.155.174.72" + ], "tcp": true, "udp": true }, @@ -59711,15 +63428,9 @@ "region": "Thailand", "hostname": "th19.nordvpn.com", "number": 19, - "ip": "122.155.174.96", - "tcp": true, - "udp": true - }, - { - "region": "Thailand", - "hostname": "th21.nordvpn.com", - "number": 21, - "ip": "122.155.174.47", + "ips": [ + "122.155.174.96" + ], "tcp": true, "udp": true }, @@ -59727,7 +63438,9 @@ "region": "Thailand", "hostname": "th22.nordvpn.com", "number": 22, - "ip": "122.155.174.102", + "ips": [ + "122.155.174.102" + ], "tcp": true, "udp": true }, @@ -59735,7 +63448,9 @@ "region": "Thailand", "hostname": "th23.nordvpn.com", "number": 23, - "ip": "122.155.174.105", + "ips": [ + "122.155.174.105" + ], "tcp": true, "udp": true }, @@ -59743,7 +63458,9 @@ "region": "Turkey", "hostname": "tr41.nordvpn.com", "number": 41, - "ip": "107.150.94.35", + "ips": [ + "107.150.94.35" + ], "tcp": true, "udp": true }, @@ -59751,7 +63468,9 @@ "region": "Turkey", "hostname": "tr42.nordvpn.com", "number": 42, - "ip": "107.150.94.67", + "ips": [ + "107.150.94.67" + ], "tcp": true, "udp": true }, @@ -59759,7 +63478,9 @@ "region": "Turkey", "hostname": "tr43.nordvpn.com", "number": 43, - "ip": "107.150.94.75", + "ips": [ + "107.150.94.75" + ], "tcp": true, "udp": true }, @@ -59767,7 +63488,9 @@ "region": "Turkey", "hostname": "tr44.nordvpn.com", "number": 44, - "ip": "107.150.94.83", + "ips": [ + "107.150.94.83" + ], "tcp": true, "udp": true }, @@ -59775,7 +63498,9 @@ "region": "Turkey", "hostname": "tr45.nordvpn.com", "number": 45, - "ip": "107.150.94.91", + "ips": [ + "107.150.94.91" + ], "tcp": true, "udp": true }, @@ -59783,7 +63508,9 @@ "region": "Turkey", "hostname": "tr46.nordvpn.com", "number": 46, - "ip": "107.150.94.99", + "ips": [ + "107.150.94.99" + ], "tcp": true, "udp": true }, @@ -59791,7 +63518,9 @@ "region": "Turkey", "hostname": "tr47.nordvpn.com", "number": 47, - "ip": "107.150.94.107", + "ips": [ + "107.150.94.107" + ], "tcp": true, "udp": true }, @@ -59799,7 +63528,69 @@ "region": "Turkey", "hostname": "tr48.nordvpn.com", "number": 48, - "ip": "107.150.94.115", + "ips": [ + "107.150.94.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "Turkey", + "hostname": "tr51.nordvpn.com", + "number": 51, + "ips": [ + "87.249.139.62" + ], + "tcp": true, + "udp": true + }, + { + "region": "Turkey", + "hostname": "tr52.nordvpn.com", + "number": 52, + "ips": [ + "87.249.139.50" + ], + "tcp": true, + "udp": true + }, + { + "region": "Turkey", + "hostname": "tr53.nordvpn.com", + "number": 53, + "ips": [ + "87.249.139.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "Turkey", + "hostname": "tr54.nordvpn.com", + "number": 54, + "ips": [ + "87.249.139.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "Turkey", + "hostname": "tr55.nordvpn.com", + "number": 55, + "ips": [ + "87.249.139.14" + ], + "tcp": true, + "udp": true + }, + { + "region": "Turkey", + "hostname": "tr57.nordvpn.com", + "number": 57, + "ips": [ + "87.249.139.2" + ], "tcp": true, "udp": true }, @@ -59807,7 +63598,9 @@ "region": "Ukraine", "hostname": "ua51.nordvpn.com", "number": 51, - "ip": "37.19.218.139", + "ips": [ + "37.19.218.139" + ], "tcp": true, "udp": true }, @@ -59815,7 +63608,9 @@ "region": "Ukraine", "hostname": "ua52.nordvpn.com", "number": 52, - "ip": "37.19.218.143", + "ips": [ + "37.19.218.143" + ], "tcp": true, "udp": true }, @@ -59823,7 +63618,9 @@ "region": "Ukraine", "hostname": "ua53.nordvpn.com", "number": 53, - "ip": "37.19.218.147", + "ips": [ + "37.19.218.147" + ], "tcp": true, "udp": true }, @@ -59831,7 +63628,9 @@ "region": "Ukraine", "hostname": "ua54.nordvpn.com", "number": 54, - "ip": "37.19.218.151", + "ips": [ + "37.19.218.151" + ], "tcp": true, "udp": true }, @@ -59839,7 +63638,9 @@ "region": "Ukraine", "hostname": "ua55.nordvpn.com", "number": 55, - "ip": "37.19.218.155", + "ips": [ + "37.19.218.155" + ], "tcp": true, "udp": true }, @@ -59847,7 +63648,9 @@ "region": "Ukraine", "hostname": "ua56.nordvpn.com", "number": 56, - "ip": "37.19.218.159", + "ips": [ + "37.19.218.159" + ], "tcp": true, "udp": true }, @@ -59855,7 +63658,9 @@ "region": "Ukraine", "hostname": "ua57.nordvpn.com", "number": 57, - "ip": "37.19.218.163", + "ips": [ + "37.19.218.163" + ], "tcp": true, "udp": true }, @@ -59863,7 +63668,9 @@ "region": "Ukraine", "hostname": "ua58.nordvpn.com", "number": 58, - "ip": "37.19.218.167", + "ips": [ + "37.19.218.167" + ], "tcp": true, "udp": true }, @@ -59871,7 +63678,9 @@ "region": "Ukraine", "hostname": "ua59.nordvpn.com", "number": 59, - "ip": "37.19.218.171", + "ips": [ + "37.19.218.171" + ], "tcp": true, "udp": true }, @@ -59879,15 +63688,49 @@ "region": "Ukraine", "hostname": "ua60.nordvpn.com", "number": 60, - "ip": "37.19.218.175", + "ips": [ + "37.19.218.175" + ], "tcp": true, "udp": true }, { - "region": "United Kingdom", - "hostname": "uk-nl10.nordvpn.com", - "number": 10, - "ip": "109.70.150.97", + "region": "Ukraine", + "hostname": "ua61.nordvpn.com", + "number": 61, + "ips": [ + "143.244.46.172" + ], + "tcp": true, + "udp": true + }, + { + "region": "Ukraine", + "hostname": "ua62.nordvpn.com", + "number": 62, + "ips": [ + "143.244.46.166" + ], + "tcp": true, + "udp": true + }, + { + "region": "Ukraine", + "hostname": "ua63.nordvpn.com", + "number": 63, + "ips": [ + "143.244.46.161" + ], + "tcp": true, + "udp": true + }, + { + "region": "Ukraine", + "hostname": "ua64.nordvpn.com", + "number": 64, + "ips": [ + "37.19.218.180" + ], "tcp": true, "udp": true }, @@ -59895,15 +63738,19 @@ "region": "United Kingdom", "hostname": "uk-fr10.nordvpn.com", "number": 10, - "ip": "89.35.30.163", + "ips": [ + "89.35.30.163" + ], "tcp": true, "udp": true }, { "region": "United Kingdom", - "hostname": "uk-fr11.nordvpn.com", - "number": 11, - "ip": "89.35.30.164", + "hostname": "uk-nl10.nordvpn.com", + "number": 10, + "ips": [ + "109.70.150.97" + ], "tcp": true, "udp": true }, @@ -59911,7 +63758,19 @@ "region": "United Kingdom", "hostname": "uk-nl11.nordvpn.com", "number": 11, - "ip": "109.70.150.98", + "ips": [ + "109.70.150.98" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk-fr11.nordvpn.com", + "number": 11, + "ips": [ + "89.35.30.164" + ], "tcp": true, "udp": true }, @@ -59919,7 +63778,9 @@ "region": "United Kingdom", "hostname": "uk-nl12.nordvpn.com", "number": 12, - "ip": "217.146.90.6", + "ips": [ + "217.146.90.6" + ], "tcp": true, "udp": true }, @@ -59927,7 +63788,9 @@ "region": "United Kingdom", "hostname": "uk-nl13.nordvpn.com", "number": 13, - "ip": "217.146.90.8", + "ips": [ + "217.146.90.8" + ], "tcp": true, "udp": true }, @@ -59935,7 +63798,9 @@ "region": "United Kingdom", "hostname": "uk-fr14.nordvpn.com", "number": 14, - "ip": "89.238.176.149", + "ips": [ + "89.238.176.149" + ], "tcp": true, "udp": true }, @@ -59943,7 +63808,29 @@ "region": "United Kingdom", "hostname": "uk-fr15.nordvpn.com", "number": 15, - "ip": "89.238.176.150", + "ips": [ + "89.238.176.150" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk-fr16.nordvpn.com", + "number": 16, + "ips": [ + "217.146.90.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk-fr17.nordvpn.com", + "number": 17, + "ips": [ + "217.146.90.3" + ], "tcp": true, "udp": true }, @@ -59951,7 +63838,9 @@ "region": "United Kingdom", "hostname": "uk765.nordvpn.com", "number": 765, - "ip": "89.35.28.131", + "ips": [ + "89.35.28.131" + ], "tcp": true, "udp": true }, @@ -59959,7 +63848,9 @@ "region": "United Kingdom", "hostname": "uk766.nordvpn.com", "number": 766, - "ip": "89.35.28.132", + "ips": [ + "89.35.28.132" + ], "tcp": true, "udp": true }, @@ -59967,7 +63858,9 @@ "region": "United Kingdom", "hostname": "uk812.nordvpn.com", "number": 812, - "ip": "77.81.191.3", + "ips": [ + "77.81.191.3" + ], "tcp": true, "udp": true }, @@ -59975,7 +63868,9 @@ "region": "United Kingdom", "hostname": "uk813.nordvpn.com", "number": 813, - "ip": "89.34.98.195", + "ips": [ + "89.34.98.195" + ], "tcp": true, "udp": true }, @@ -59983,7 +63878,9 @@ "region": "United Kingdom", "hostname": "uk814.nordvpn.com", "number": 814, - "ip": "185.121.139.100", + "ips": [ + "185.121.139.100" + ], "tcp": true, "udp": true }, @@ -59991,7 +63888,9 @@ "region": "United Kingdom", "hostname": "uk815.nordvpn.com", "number": 815, - "ip": "185.44.76.198", + "ips": [ + "185.44.76.198" + ], "tcp": true, "udp": true }, @@ -59999,7 +63898,9 @@ "region": "United Kingdom", "hostname": "uk870.nordvpn.com", "number": 870, - "ip": "77.81.191.4", + "ips": [ + "77.81.191.4" + ], "tcp": true, "udp": true }, @@ -60007,7 +63908,9 @@ "region": "United Kingdom", "hostname": "uk871.nordvpn.com", "number": 871, - "ip": "89.34.99.131", + "ips": [ + "89.34.99.131" + ], "tcp": true, "udp": true }, @@ -60015,7 +63918,9 @@ "region": "United Kingdom", "hostname": "uk873.nordvpn.com", "number": 873, - "ip": "195.206.180.3", + "ips": [ + "195.206.180.3" + ], "tcp": true, "udp": true }, @@ -60023,7 +63928,9 @@ "region": "United Kingdom", "hostname": "uk874.nordvpn.com", "number": 874, - "ip": "195.206.180.4", + "ips": [ + "195.206.180.4" + ], "tcp": true, "udp": true }, @@ -60031,7 +63938,9 @@ "region": "United Kingdom", "hostname": "uk875.nordvpn.com", "number": 875, - "ip": "195.206.180.131", + "ips": [ + "195.206.180.131" + ], "tcp": true, "udp": true }, @@ -60039,7 +63948,9 @@ "region": "United Kingdom", "hostname": "uk876.nordvpn.com", "number": 876, - "ip": "195.206.180.132", + "ips": [ + "195.206.180.132" + ], "tcp": true, "udp": true }, @@ -60047,7 +63958,9 @@ "region": "United Kingdom", "hostname": "uk877.nordvpn.com", "number": 877, - "ip": "81.19.217.3", + "ips": [ + "81.19.217.3" + ], "tcp": true, "udp": true }, @@ -60055,7 +63968,9 @@ "region": "United Kingdom", "hostname": "uk878.nordvpn.com", "number": 878, - "ip": "81.19.217.5", + "ips": [ + "81.19.217.5" + ], "tcp": true, "udp": true }, @@ -60063,7 +63978,9 @@ "region": "United Kingdom", "hostname": "uk879.nordvpn.com", "number": 879, - "ip": "81.19.223.3", + "ips": [ + "81.19.223.3" + ], "tcp": true, "udp": true }, @@ -60071,7 +63988,9 @@ "region": "United Kingdom", "hostname": "uk880.nordvpn.com", "number": 880, - "ip": "81.19.223.4", + "ips": [ + "81.19.223.4" + ], "tcp": true, "udp": true }, @@ -60079,7 +63998,9 @@ "region": "United Kingdom", "hostname": "uk883.nordvpn.com", "number": 883, - "ip": "178.239.168.223", + "ips": [ + "178.239.168.223" + ], "tcp": true, "udp": true }, @@ -60087,7 +64008,9 @@ "region": "United Kingdom", "hostname": "uk884.nordvpn.com", "number": 884, - "ip": "178.239.169.3", + "ips": [ + "178.239.169.3" + ], "tcp": true, "udp": true }, @@ -60095,7 +64018,9 @@ "region": "United Kingdom", "hostname": "uk885.nordvpn.com", "number": 885, - "ip": "178.239.169.4", + "ips": [ + "178.239.169.4" + ], "tcp": true, "udp": true }, @@ -60103,7 +64028,9 @@ "region": "United Kingdom", "hostname": "uk886.nordvpn.com", "number": 886, - "ip": "185.44.79.131", + "ips": [ + "185.44.79.131" + ], "tcp": true, "udp": true }, @@ -60111,7 +64038,9 @@ "region": "United Kingdom", "hostname": "uk887.nordvpn.com", "number": 887, - "ip": "185.44.79.132", + "ips": [ + "185.44.79.132" + ], "tcp": true, "udp": true }, @@ -60119,7 +64048,9 @@ "region": "United Kingdom", "hostname": "uk888.nordvpn.com", "number": 888, - "ip": "185.16.205.3", + "ips": [ + "185.16.205.3" + ], "tcp": true, "udp": true }, @@ -60127,7 +64058,9 @@ "region": "United Kingdom", "hostname": "uk889.nordvpn.com", "number": 889, - "ip": "185.16.205.4", + "ips": [ + "185.16.205.4" + ], "tcp": true, "udp": true }, @@ -60135,7 +64068,9 @@ "region": "United Kingdom", "hostname": "uk890.nordvpn.com", "number": 890, - "ip": "185.16.205.131", + "ips": [ + "185.16.205.131" + ], "tcp": true, "udp": true }, @@ -60143,7 +64078,9 @@ "region": "United Kingdom", "hostname": "uk891.nordvpn.com", "number": 891, - "ip": "185.16.205.132", + "ips": [ + "185.16.205.132" + ], "tcp": true, "udp": true }, @@ -60151,7 +64088,9 @@ "region": "United Kingdom", "hostname": "uk892.nordvpn.com", "number": 892, - "ip": "195.206.170.3", + "ips": [ + "195.206.170.3" + ], "tcp": true, "udp": true }, @@ -60159,7 +64098,9 @@ "region": "United Kingdom", "hostname": "uk893.nordvpn.com", "number": 893, - "ip": "195.206.170.4", + "ips": [ + "195.206.170.4" + ], "tcp": true, "udp": true }, @@ -60167,7 +64108,9 @@ "region": "United Kingdom", "hostname": "uk894.nordvpn.com", "number": 894, - "ip": "195.206.170.131", + "ips": [ + "195.206.170.131" + ], "tcp": true, "udp": true }, @@ -60175,7 +64118,9 @@ "region": "United Kingdom", "hostname": "uk895.nordvpn.com", "number": 895, - "ip": "195.206.170.132", + "ips": [ + "195.206.170.132" + ], "tcp": true, "udp": true }, @@ -60183,7 +64128,9 @@ "region": "United Kingdom", "hostname": "uk896.nordvpn.com", "number": 896, - "ip": "178.239.164.3", + "ips": [ + "178.239.164.3" + ], "tcp": true, "udp": true }, @@ -60191,7 +64138,9 @@ "region": "United Kingdom", "hostname": "uk897.nordvpn.com", "number": 897, - "ip": "178.239.164.65", + "ips": [ + "178.239.164.65" + ], "tcp": true, "udp": true }, @@ -60199,7 +64148,9 @@ "region": "United Kingdom", "hostname": "uk898.nordvpn.com", "number": 898, - "ip": "178.239.164.131", + "ips": [ + "178.239.164.131" + ], "tcp": true, "udp": true }, @@ -60207,7 +64158,9 @@ "region": "United Kingdom", "hostname": "uk899.nordvpn.com", "number": 899, - "ip": "178.239.164.193", + "ips": [ + "178.239.164.193" + ], "tcp": true, "udp": true }, @@ -60215,7 +64168,9 @@ "region": "United Kingdom", "hostname": "uk1601.nordvpn.com", "number": 1601, - "ip": "195.140.213.201", + "ips": [ + "195.140.213.201" + ], "tcp": true, "udp": true }, @@ -60223,7 +64178,9 @@ "region": "United Kingdom", "hostname": "uk1602.nordvpn.com", "number": 1602, - "ip": "81.19.214.131", + "ips": [ + "81.19.214.131" + ], "tcp": true, "udp": true }, @@ -60231,7 +64188,9 @@ "region": "United Kingdom", "hostname": "uk1603.nordvpn.com", "number": 1603, - "ip": "81.19.214.132", + "ips": [ + "81.19.214.132" + ], "tcp": true, "udp": true }, @@ -60239,7 +64198,9 @@ "region": "United Kingdom", "hostname": "uk1604.nordvpn.com", "number": 1604, - "ip": "185.223.233.3", + "ips": [ + "185.223.233.3" + ], "tcp": true, "udp": true }, @@ -60247,7 +64208,9 @@ "region": "United Kingdom", "hostname": "uk1605.nordvpn.com", "number": 1605, - "ip": "185.223.233.4", + "ips": [ + "185.223.233.4" + ], "tcp": true, "udp": true }, @@ -60255,7 +64218,9 @@ "region": "United Kingdom", "hostname": "uk1606.nordvpn.com", "number": 1606, - "ip": "109.70.151.2", + "ips": [ + "109.70.151.2" + ], "tcp": true, "udp": true }, @@ -60263,7 +64228,9 @@ "region": "United Kingdom", "hostname": "uk1607.nordvpn.com", "number": 1607, - "ip": "109.70.151.3", + "ips": [ + "109.70.151.3" + ], "tcp": true, "udp": true }, @@ -60271,7 +64238,9 @@ "region": "United Kingdom", "hostname": "uk1608.nordvpn.com", "number": 1608, - "ip": "195.234.127.3", + "ips": [ + "195.234.127.3" + ], "tcp": true, "udp": true }, @@ -60279,7 +64248,9 @@ "region": "United Kingdom", "hostname": "uk1784.nordvpn.com", "number": 1784, - "ip": "81.92.202.11", + "ips": [ + "81.92.202.11" + ], "tcp": true, "udp": true }, @@ -60287,7 +64258,9 @@ "region": "United Kingdom", "hostname": "uk1785.nordvpn.com", "number": 1785, - "ip": "194.35.233.75", + "ips": [ + "194.35.233.75" + ], "tcp": true, "udp": true }, @@ -60295,7 +64268,9 @@ "region": "United Kingdom", "hostname": "uk1789.nordvpn.com", "number": 1789, - "ip": "194.35.233.202", + "ips": [ + "194.35.233.202" + ], "tcp": true, "udp": true }, @@ -60303,7 +64278,9 @@ "region": "United Kingdom", "hostname": "uk1790.nordvpn.com", "number": 1790, - "ip": "194.35.233.205", + "ips": [ + "194.35.233.205" + ], "tcp": true, "udp": true }, @@ -60311,7 +64288,9 @@ "region": "United Kingdom", "hostname": "uk1791.nordvpn.com", "number": 1791, - "ip": "194.35.233.208", + "ips": [ + "194.35.233.208" + ], "tcp": true, "udp": true }, @@ -60319,7 +64298,9 @@ "region": "United Kingdom", "hostname": "uk1792.nordvpn.com", "number": 1792, - "ip": "194.35.233.211", + "ips": [ + "194.35.233.211" + ], "tcp": true, "udp": true }, @@ -60327,7 +64308,9 @@ "region": "United Kingdom", "hostname": "uk1806.nordvpn.com", "number": 1806, - "ip": "193.9.113.134", + "ips": [ + "193.9.113.134" + ], "tcp": true, "udp": true }, @@ -60335,7 +64318,9 @@ "region": "United Kingdom", "hostname": "uk1807.nordvpn.com", "number": 1807, - "ip": "194.35.233.214", + "ips": [ + "194.35.233.214" + ], "tcp": true, "udp": true }, @@ -60343,7 +64328,9 @@ "region": "United Kingdom", "hostname": "uk1808.nordvpn.com", "number": 1808, - "ip": "194.35.233.217", + "ips": [ + "194.35.233.217" + ], "tcp": true, "udp": true }, @@ -60351,7 +64338,9 @@ "region": "United Kingdom", "hostname": "uk1809.nordvpn.com", "number": 1809, - "ip": "194.35.233.220", + "ips": [ + "194.35.233.220" + ], "tcp": true, "udp": true }, @@ -60359,7 +64348,9 @@ "region": "United Kingdom", "hostname": "uk1810.nordvpn.com", "number": 1810, - "ip": "194.35.233.223", + "ips": [ + "194.35.233.223" + ], "tcp": true, "udp": true }, @@ -60367,7 +64358,9 @@ "region": "United Kingdom", "hostname": "uk1811.nordvpn.com", "number": 1811, - "ip": "194.35.233.226", + "ips": [ + "194.35.233.226" + ], "tcp": true, "udp": true }, @@ -60375,7 +64368,9 @@ "region": "United Kingdom", "hostname": "uk1812.nordvpn.com", "number": 1812, - "ip": "194.35.233.229", + "ips": [ + "194.35.233.229" + ], "tcp": true, "udp": true }, @@ -60383,7 +64378,9 @@ "region": "United Kingdom", "hostname": "uk1813.nordvpn.com", "number": 1813, - "ip": "194.35.233.232", + "ips": [ + "194.35.233.232" + ], "tcp": true, "udp": true }, @@ -60391,7 +64388,9 @@ "region": "United Kingdom", "hostname": "uk1814.nordvpn.com", "number": 1814, - "ip": "194.35.233.235", + "ips": [ + "194.35.233.235" + ], "tcp": true, "udp": true }, @@ -60399,7 +64398,9 @@ "region": "United Kingdom", "hostname": "uk1815.nordvpn.com", "number": 1815, - "ip": "194.35.233.238", + "ips": [ + "194.35.233.238" + ], "tcp": true, "udp": true }, @@ -60407,7 +64408,9 @@ "region": "United Kingdom", "hostname": "uk1816.nordvpn.com", "number": 1816, - "ip": "194.35.233.241", + "ips": [ + "194.35.233.241" + ], "tcp": true, "udp": true }, @@ -60415,7 +64418,9 @@ "region": "United Kingdom", "hostname": "uk1821.nordvpn.com", "number": 1821, - "ip": "194.35.233.244", + "ips": [ + "194.35.233.244" + ], "tcp": true, "udp": true }, @@ -60423,7 +64428,9 @@ "region": "United Kingdom", "hostname": "uk1822.nordvpn.com", "number": 1822, - "ip": "194.35.233.247", + "ips": [ + "194.35.233.247" + ], "tcp": true, "udp": true }, @@ -60431,7 +64438,9 @@ "region": "United Kingdom", "hostname": "uk1823.nordvpn.com", "number": 1823, - "ip": "194.35.233.250", + "ips": [ + "194.35.233.250" + ], "tcp": true, "udp": true }, @@ -60439,7 +64448,9 @@ "region": "United Kingdom", "hostname": "uk1824.nordvpn.com", "number": 1824, - "ip": "194.35.233.253", + "ips": [ + "194.35.233.253" + ], "tcp": true, "udp": true }, @@ -60447,7 +64458,9 @@ "region": "United Kingdom", "hostname": "uk1825.nordvpn.com", "number": 1825, - "ip": "185.169.255.3", + "ips": [ + "185.169.255.3" + ], "tcp": true, "udp": true }, @@ -60455,7 +64468,9 @@ "region": "United Kingdom", "hostname": "uk1826.nordvpn.com", "number": 1826, - "ip": "185.169.255.6", + "ips": [ + "185.169.255.6" + ], "tcp": true, "udp": true }, @@ -60463,7 +64478,9 @@ "region": "United Kingdom", "hostname": "uk1827.nordvpn.com", "number": 1827, - "ip": "185.169.255.9", + "ips": [ + "185.169.255.9" + ], "tcp": true, "udp": true }, @@ -60471,7 +64488,9 @@ "region": "United Kingdom", "hostname": "uk1828.nordvpn.com", "number": 1828, - "ip": "185.169.255.12", + "ips": [ + "185.169.255.12" + ], "tcp": true, "udp": true }, @@ -60479,7 +64498,9 @@ "region": "United Kingdom", "hostname": "uk1829.nordvpn.com", "number": 1829, - "ip": "185.169.255.15", + "ips": [ + "185.169.255.15" + ], "tcp": true, "udp": true }, @@ -60487,7 +64508,9 @@ "region": "United Kingdom", "hostname": "uk1830.nordvpn.com", "number": 1830, - "ip": "185.169.255.18", + "ips": [ + "185.169.255.18" + ], "tcp": true, "udp": true }, @@ -60495,7 +64518,9 @@ "region": "United Kingdom", "hostname": "uk1835.nordvpn.com", "number": 1835, - "ip": "185.59.221.248", + "ips": [ + "185.59.221.248" + ], "tcp": true, "udp": true }, @@ -60503,7 +64528,9 @@ "region": "United Kingdom", "hostname": "uk1836.nordvpn.com", "number": 1836, - "ip": "185.59.221.245", + "ips": [ + "185.59.221.245" + ], "tcp": true, "udp": true }, @@ -60511,7 +64538,9 @@ "region": "United Kingdom", "hostname": "uk1837.nordvpn.com", "number": 1837, - "ip": "185.59.221.242", + "ips": [ + "185.59.221.242" + ], "tcp": true, "udp": true }, @@ -60519,7 +64548,9 @@ "region": "United Kingdom", "hostname": "uk1838.nordvpn.com", "number": 1838, - "ip": "185.169.255.21", + "ips": [ + "185.169.255.21" + ], "tcp": true, "udp": true }, @@ -60527,7 +64558,9 @@ "region": "United Kingdom", "hostname": "uk1839.nordvpn.com", "number": 1839, - "ip": "185.169.255.24", + "ips": [ + "185.169.255.24" + ], "tcp": true, "udp": true }, @@ -60535,7 +64568,9 @@ "region": "United Kingdom", "hostname": "uk1840.nordvpn.com", "number": 1840, - "ip": "185.169.255.27", + "ips": [ + "185.169.255.27" + ], "tcp": true, "udp": true }, @@ -60543,7 +64578,9 @@ "region": "United Kingdom", "hostname": "uk1841.nordvpn.com", "number": 1841, - "ip": "185.169.255.30", + "ips": [ + "185.169.255.30" + ], "tcp": true, "udp": true }, @@ -60551,7 +64588,9 @@ "region": "United Kingdom", "hostname": "uk1842.nordvpn.com", "number": 1842, - "ip": "185.169.255.33", + "ips": [ + "185.169.255.33" + ], "tcp": true, "udp": true }, @@ -60559,7 +64598,9 @@ "region": "United Kingdom", "hostname": "uk1843.nordvpn.com", "number": 1843, - "ip": "185.169.255.36", + "ips": [ + "185.169.255.36" + ], "tcp": true, "udp": true }, @@ -60567,7 +64608,9 @@ "region": "United Kingdom", "hostname": "uk1844.nordvpn.com", "number": 1844, - "ip": "185.169.255.39", + "ips": [ + "185.169.255.39" + ], "tcp": true, "udp": true }, @@ -60575,7 +64618,9 @@ "region": "United Kingdom", "hostname": "uk1845.nordvpn.com", "number": 1845, - "ip": "185.169.255.42", + "ips": [ + "185.169.255.42" + ], "tcp": true, "udp": true }, @@ -60583,7 +64628,9 @@ "region": "United Kingdom", "hostname": "uk1846.nordvpn.com", "number": 1846, - "ip": "185.169.255.45", + "ips": [ + "185.169.255.45" + ], "tcp": true, "udp": true }, @@ -60591,7 +64638,9 @@ "region": "United Kingdom", "hostname": "uk1847.nordvpn.com", "number": 1847, - "ip": "185.169.255.48", + "ips": [ + "185.169.255.48" + ], "tcp": true, "udp": true }, @@ -60599,7 +64648,9 @@ "region": "United Kingdom", "hostname": "uk1848.nordvpn.com", "number": 1848, - "ip": "194.36.110.181", + "ips": [ + "194.36.110.181" + ], "tcp": true, "udp": true }, @@ -60607,7 +64658,9 @@ "region": "United Kingdom", "hostname": "uk1849.nordvpn.com", "number": 1849, - "ip": "194.36.110.197", + "ips": [ + "194.36.110.197" + ], "tcp": true, "udp": true }, @@ -60615,7 +64668,9 @@ "region": "United Kingdom", "hostname": "uk1850.nordvpn.com", "number": 1850, - "ip": "194.36.110.229", + "ips": [ + "194.36.110.229" + ], "tcp": true, "udp": true }, @@ -60623,7 +64678,9 @@ "region": "United Kingdom", "hostname": "uk1851.nordvpn.com", "number": 1851, - "ip": "194.36.110.245", + "ips": [ + "194.36.110.245" + ], "tcp": true, "udp": true }, @@ -60631,7 +64688,9 @@ "region": "United Kingdom", "hostname": "uk1866.nordvpn.com", "number": 1866, - "ip": "81.92.203.57", + "ips": [ + "81.92.203.57" + ], "tcp": true, "udp": true }, @@ -60639,7 +64698,9 @@ "region": "United Kingdom", "hostname": "uk1867.nordvpn.com", "number": 1867, - "ip": "81.92.202.15", + "ips": [ + "81.92.202.15" + ], "tcp": true, "udp": true }, @@ -60647,7 +64708,9 @@ "region": "United Kingdom", "hostname": "uk1873.nordvpn.com", "number": 1873, - "ip": "89.238.176.213", + "ips": [ + "89.238.176.213" + ], "tcp": true, "udp": true }, @@ -60655,7 +64718,9 @@ "region": "United Kingdom", "hostname": "uk1874.nordvpn.com", "number": 1874, - "ip": "89.238.191.197", + "ips": [ + "89.238.191.197" + ], "tcp": true, "udp": true }, @@ -60663,7 +64728,9 @@ "region": "United Kingdom", "hostname": "uk1875.nordvpn.com", "number": 1875, - "ip": "89.238.191.202", + "ips": [ + "89.238.191.202" + ], "tcp": true, "udp": true }, @@ -60671,7 +64738,29 @@ "region": "United Kingdom", "hostname": "uk1876.nordvpn.com", "number": 1876, - "ip": "89.238.191.207", + "ips": [ + "89.238.191.207" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk1877.nordvpn.com", + "number": 1877, + "ips": [ + "89.238.191.212" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk1878.nordvpn.com", + "number": 1878, + "ips": [ + "185.253.98.101" + ], "tcp": true, "udp": true }, @@ -60679,7 +64768,9 @@ "region": "United Kingdom", "hostname": "uk1879.nordvpn.com", "number": 1879, - "ip": "185.253.98.106", + "ips": [ + "185.253.98.106" + ], "tcp": true, "udp": true }, @@ -60687,7 +64778,9 @@ "region": "United Kingdom", "hostname": "uk1882.nordvpn.com", "number": 1882, - "ip": "81.92.202.25", + "ips": [ + "81.92.202.25" + ], "tcp": true, "udp": true }, @@ -60695,7 +64788,9 @@ "region": "United Kingdom", "hostname": "uk1883.nordvpn.com", "number": 1883, - "ip": "81.92.203.101", + "ips": [ + "81.92.203.101" + ], "tcp": true, "udp": true }, @@ -60703,7 +64798,9 @@ "region": "United Kingdom", "hostname": "uk1884.nordvpn.com", "number": 1884, - "ip": "81.92.203.106", + "ips": [ + "81.92.203.106" + ], "tcp": true, "udp": true }, @@ -60711,7 +64808,9 @@ "region": "United Kingdom", "hostname": "uk1885.nordvpn.com", "number": 1885, - "ip": "81.92.203.111", + "ips": [ + "81.92.203.111" + ], "tcp": true, "udp": true }, @@ -60719,7 +64818,9 @@ "region": "United Kingdom", "hostname": "uk1886.nordvpn.com", "number": 1886, - "ip": "81.92.203.116", + "ips": [ + "81.92.203.116" + ], "tcp": true, "udp": true }, @@ -60727,7 +64828,9 @@ "region": "United Kingdom", "hostname": "uk1887.nordvpn.com", "number": 1887, - "ip": "81.92.203.121", + "ips": [ + "81.92.203.121" + ], "tcp": true, "udp": true }, @@ -60735,7 +64838,9 @@ "region": "United Kingdom", "hostname": "uk1889.nordvpn.com", "number": 1889, - "ip": "93.177.74.170", + "ips": [ + "93.177.74.170" + ], "tcp": true, "udp": true }, @@ -60743,7 +64848,9 @@ "region": "United Kingdom", "hostname": "uk1890.nordvpn.com", "number": 1890, - "ip": "93.177.74.165", + "ips": [ + "93.177.74.165" + ], "tcp": true, "udp": true }, @@ -60751,7 +64858,9 @@ "region": "United Kingdom", "hostname": "uk1891.nordvpn.com", "number": 1891, - "ip": "93.177.74.179", + "ips": [ + "93.177.74.179" + ], "tcp": true, "udp": true }, @@ -60759,7 +64868,9 @@ "region": "United Kingdom", "hostname": "uk1893.nordvpn.com", "number": 1893, - "ip": "37.120.133.67", + "ips": [ + "37.120.133.67" + ], "tcp": true, "udp": true }, @@ -60767,7 +64878,9 @@ "region": "United Kingdom", "hostname": "uk1894.nordvpn.com", "number": 1894, - "ip": "37.120.133.72", + "ips": [ + "37.120.133.72" + ], "tcp": true, "udp": true }, @@ -60775,7 +64888,29 @@ "region": "United Kingdom", "hostname": "uk1895.nordvpn.com", "number": 1895, - "ip": "37.120.133.83", + "ips": [ + "37.120.133.83" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk1896.nordvpn.com", + "number": 1896, + "ips": [ + "37.120.133.85" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk1897.nordvpn.com", + "number": 1897, + "ips": [ + "37.120.133.90" + ], "tcp": true, "udp": true }, @@ -60783,7 +64918,19 @@ "region": "United Kingdom", "hostname": "uk1898.nordvpn.com", "number": 1898, - "ip": "94.229.73.187", + "ips": [ + "94.229.73.187" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk1899.nordvpn.com", + "number": 1899, + "ips": [ + "94.229.75.83" + ], "tcp": true, "udp": true }, @@ -60791,7 +64938,9 @@ "region": "United Kingdom", "hostname": "uk1900.nordvpn.com", "number": 1900, - "ip": "178.159.9.211", + "ips": [ + "178.159.9.211" + ], "tcp": true, "udp": true }, @@ -60799,7 +64948,9 @@ "region": "United Kingdom", "hostname": "uk1901.nordvpn.com", "number": 1901, - "ip": "185.109.168.131", + "ips": [ + "185.109.168.131" + ], "tcp": true, "udp": true }, @@ -60807,7 +64958,9 @@ "region": "United Kingdom", "hostname": "uk1902.nordvpn.com", "number": 1902, - "ip": "185.109.170.243", + "ips": [ + "185.109.170.243" + ], "tcp": true, "udp": true }, @@ -60815,7 +64968,9 @@ "region": "United Kingdom", "hostname": "uk1903.nordvpn.com", "number": 1903, - "ip": "185.99.252.211", + "ips": [ + "185.99.252.211" + ], "tcp": true, "udp": true }, @@ -60823,7 +64978,9 @@ "region": "United Kingdom", "hostname": "uk1904.nordvpn.com", "number": 1904, - "ip": "31.132.5.19", + "ips": [ + "31.132.5.19" + ], "tcp": true, "udp": true }, @@ -60831,7 +64988,9 @@ "region": "United Kingdom", "hostname": "uk1905.nordvpn.com", "number": 1905, - "ip": "31.132.6.3", + "ips": [ + "31.132.6.3" + ], "tcp": true, "udp": true }, @@ -60839,7 +64998,9 @@ "region": "United Kingdom", "hostname": "uk1906.nordvpn.com", "number": 1906, - "ip": "31.132.7.3", + "ips": [ + "31.132.7.3" + ], "tcp": true, "udp": true }, @@ -60847,7 +65008,9 @@ "region": "United Kingdom", "hostname": "uk1907.nordvpn.com", "number": 1907, - "ip": "5.101.136.147", + "ips": [ + "5.101.136.147" + ], "tcp": true, "udp": true }, @@ -60855,7 +65018,9 @@ "region": "United Kingdom", "hostname": "uk1908.nordvpn.com", "number": 1908, - "ip": "5.101.137.195", + "ips": [ + "5.101.137.195" + ], "tcp": true, "udp": true }, @@ -60863,7 +65028,9 @@ "region": "United Kingdom", "hostname": "uk1909.nordvpn.com", "number": 1909, - "ip": "5.101.138.227", + "ips": [ + "5.101.138.227" + ], "tcp": true, "udp": true }, @@ -60871,7 +65038,9 @@ "region": "United Kingdom", "hostname": "uk1910.nordvpn.com", "number": 1910, - "ip": "5.101.174.195", + "ips": [ + "5.101.174.195" + ], "tcp": true, "udp": true }, @@ -60879,7 +65048,9 @@ "region": "United Kingdom", "hostname": "uk1911.nordvpn.com", "number": 1911, - "ip": "77.75.120.131", + "ips": [ + "77.75.120.131" + ], "tcp": true, "udp": true }, @@ -60887,7 +65058,9 @@ "region": "United Kingdom", "hostname": "uk1912.nordvpn.com", "number": 1912, - "ip": "78.157.193.51", + "ips": [ + "78.157.193.51" + ], "tcp": true, "udp": true }, @@ -60895,7 +65068,9 @@ "region": "United Kingdom", "hostname": "uk1913.nordvpn.com", "number": 1913, - "ip": "78.157.216.3", + "ips": [ + "78.157.216.3" + ], "tcp": true, "udp": true }, @@ -60903,7 +65078,9 @@ "region": "United Kingdom", "hostname": "uk1914.nordvpn.com", "number": 1914, - "ip": "94.229.69.243", + "ips": [ + "94.229.69.243" + ], "tcp": true, "udp": true }, @@ -60911,7 +65088,9 @@ "region": "United Kingdom", "hostname": "uk1915.nordvpn.com", "number": 1915, - "ip": "31.132.6.11", + "ips": [ + "31.132.6.11" + ], "tcp": true, "udp": true }, @@ -60919,7 +65098,9 @@ "region": "United Kingdom", "hostname": "uk1916.nordvpn.com", "number": 1916, - "ip": "94.46.223.19", + "ips": [ + "94.46.223.19" + ], "tcp": true, "udp": true }, @@ -60927,7 +65108,9 @@ "region": "United Kingdom", "hostname": "uk1917.nordvpn.com", "number": 1917, - "ip": "185.99.252.35", + "ips": [ + "185.99.252.35" + ], "tcp": true, "udp": true }, @@ -60935,7 +65118,9 @@ "region": "United Kingdom", "hostname": "uk1918.nordvpn.com", "number": 1918, - "ip": "37.9.58.227", + "ips": [ + "37.9.58.227" + ], "tcp": true, "udp": true }, @@ -60943,7 +65128,9 @@ "region": "United Kingdom", "hostname": "uk1919.nordvpn.com", "number": 1919, - "ip": "37.9.59.131", + "ips": [ + "37.9.59.131" + ], "tcp": true, "udp": true }, @@ -60951,7 +65138,9 @@ "region": "United Kingdom", "hostname": "uk1920.nordvpn.com", "number": 1920, - "ip": "5.101.171.227", + "ips": [ + "5.101.171.227" + ], "tcp": true, "udp": true }, @@ -60959,7 +65148,9 @@ "region": "United Kingdom", "hostname": "uk1921.nordvpn.com", "number": 1921, - "ip": "77.74.197.195", + "ips": [ + "77.74.197.195" + ], "tcp": true, "udp": true }, @@ -60967,7 +65158,9 @@ "region": "United Kingdom", "hostname": "uk1924.nordvpn.com", "number": 1924, - "ip": "81.92.203.37", + "ips": [ + "81.92.203.37" + ], "tcp": true, "udp": true }, @@ -60975,7 +65168,9 @@ "region": "United Kingdom", "hostname": "uk1925.nordvpn.com", "number": 1925, - "ip": "81.92.203.42", + "ips": [ + "81.92.203.42" + ], "tcp": true, "udp": true }, @@ -60983,7 +65178,9 @@ "region": "United Kingdom", "hostname": "uk1926.nordvpn.com", "number": 1926, - "ip": "81.92.203.52", + "ips": [ + "81.92.203.52" + ], "tcp": true, "udp": true }, @@ -60991,7 +65188,9 @@ "region": "United Kingdom", "hostname": "uk1927.nordvpn.com", "number": 1927, - "ip": "81.92.203.213", + "ips": [ + "81.92.203.213" + ], "tcp": true, "udp": true }, @@ -60999,7 +65198,9 @@ "region": "United Kingdom", "hostname": "uk1933.nordvpn.com", "number": 1933, - "ip": "81.92.203.218", + "ips": [ + "81.92.203.218" + ], "tcp": true, "udp": true }, @@ -61007,7 +65208,19 @@ "region": "United Kingdom", "hostname": "uk1934.nordvpn.com", "number": 1934, - "ip": "81.92.202.29", + "ips": [ + "81.92.202.29" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk1935.nordvpn.com", + "number": 1935, + "ips": [ + "81.92.203.197" + ], "tcp": true, "udp": true }, @@ -61015,7 +65228,9 @@ "region": "United Kingdom", "hostname": "uk1944.nordvpn.com", "number": 1944, - "ip": "141.98.100.123", + "ips": [ + "141.98.100.123" + ], "tcp": true, "udp": true }, @@ -61023,7 +65238,9 @@ "region": "United Kingdom", "hostname": "uk1945.nordvpn.com", "number": 1945, - "ip": "141.98.100.171", + "ips": [ + "141.98.100.171" + ], "tcp": true, "udp": true }, @@ -61031,7 +65248,9 @@ "region": "United Kingdom", "hostname": "uk1946.nordvpn.com", "number": 1946, - "ip": "141.98.100.179", + "ips": [ + "141.98.100.179" + ], "tcp": true, "udp": true }, @@ -61039,7 +65258,9 @@ "region": "United Kingdom", "hostname": "uk1977.nordvpn.com", "number": 1977, - "ip": "185.59.221.71", + "ips": [ + "185.59.221.71" + ], "tcp": true, "udp": true }, @@ -61047,7 +65268,9 @@ "region": "United Kingdom", "hostname": "uk1978.nordvpn.com", "number": 1978, - "ip": "185.59.221.87", + "ips": [ + "185.59.221.87" + ], "tcp": true, "udp": true }, @@ -61055,7 +65278,9 @@ "region": "United Kingdom", "hostname": "uk1999.nordvpn.com", "number": 1999, - "ip": "195.206.183.250", + "ips": [ + "195.206.183.250" + ], "tcp": true, "udp": true }, @@ -61063,7 +65288,9 @@ "region": "United Kingdom", "hostname": "uk2000.nordvpn.com", "number": 2000, - "ip": "195.206.183.245", + "ips": [ + "195.206.183.245" + ], "tcp": true, "udp": true }, @@ -61071,7 +65298,9 @@ "region": "United Kingdom", "hostname": "uk2001.nordvpn.com", "number": 2001, - "ip": "195.206.183.240", + "ips": [ + "195.206.183.240" + ], "tcp": true, "udp": true }, @@ -61079,7 +65308,9 @@ "region": "United Kingdom", "hostname": "uk2002.nordvpn.com", "number": 2002, - "ip": "195.206.183.235", + "ips": [ + "195.206.183.235" + ], "tcp": true, "udp": true }, @@ -61087,7 +65318,9 @@ "region": "United Kingdom", "hostname": "uk2003.nordvpn.com", "number": 2003, - "ip": "195.206.183.231", + "ips": [ + "195.206.183.231" + ], "tcp": true, "udp": true }, @@ -61095,7 +65328,9 @@ "region": "United Kingdom", "hostname": "uk2004.nordvpn.com", "number": 2004, - "ip": "195.206.183.225", + "ips": [ + "195.206.183.225" + ], "tcp": true, "udp": true }, @@ -61103,7 +65338,9 @@ "region": "United Kingdom", "hostname": "uk2005.nordvpn.com", "number": 2005, - "ip": "195.206.183.220", + "ips": [ + "195.206.183.220" + ], "tcp": true, "udp": true }, @@ -61111,7 +65348,9 @@ "region": "United Kingdom", "hostname": "uk2006.nordvpn.com", "number": 2006, - "ip": "195.206.183.215", + "ips": [ + "195.206.183.215" + ], "tcp": true, "udp": true }, @@ -61119,7 +65358,9 @@ "region": "United Kingdom", "hostname": "uk2007.nordvpn.com", "number": 2007, - "ip": "195.206.183.211", + "ips": [ + "195.206.183.211" + ], "tcp": true, "udp": true }, @@ -61127,7 +65368,9 @@ "region": "United Kingdom", "hostname": "uk2008.nordvpn.com", "number": 2008, - "ip": "195.206.183.206", + "ips": [ + "195.206.183.206" + ], "tcp": true, "udp": true }, @@ -61135,7 +65378,9 @@ "region": "United Kingdom", "hostname": "uk2009.nordvpn.com", "number": 2009, - "ip": "195.206.183.201", + "ips": [ + "195.206.183.201" + ], "tcp": true, "udp": true }, @@ -61143,7 +65388,9 @@ "region": "United Kingdom", "hostname": "uk2010.nordvpn.com", "number": 2010, - "ip": "195.206.183.196", + "ips": [ + "195.206.183.196" + ], "tcp": true, "udp": true }, @@ -61151,7 +65398,9 @@ "region": "United Kingdom", "hostname": "uk2011.nordvpn.com", "number": 2011, - "ip": "195.206.183.186", + "ips": [ + "195.206.183.186" + ], "tcp": true, "udp": true }, @@ -61159,7 +65408,9 @@ "region": "United Kingdom", "hostname": "uk2012.nordvpn.com", "number": 2012, - "ip": "195.206.183.181", + "ips": [ + "195.206.183.181" + ], "tcp": true, "udp": true }, @@ -61167,7 +65418,9 @@ "region": "United Kingdom", "hostname": "uk2013.nordvpn.com", "number": 2013, - "ip": "195.206.183.176", + "ips": [ + "195.206.183.176" + ], "tcp": true, "udp": true }, @@ -61175,7 +65428,9 @@ "region": "United Kingdom", "hostname": "uk2014.nordvpn.com", "number": 2014, - "ip": "195.206.183.171", + "ips": [ + "195.206.183.171" + ], "tcp": true, "udp": true }, @@ -61183,7 +65438,9 @@ "region": "United Kingdom", "hostname": "uk2015.nordvpn.com", "number": 2015, - "ip": "195.206.183.166", + "ips": [ + "195.206.183.166" + ], "tcp": true, "udp": true }, @@ -61191,7 +65448,9 @@ "region": "United Kingdom", "hostname": "uk2016.nordvpn.com", "number": 2016, - "ip": "195.206.183.161", + "ips": [ + "195.206.183.161" + ], "tcp": true, "udp": true }, @@ -61199,7 +65458,9 @@ "region": "United Kingdom", "hostname": "uk2017.nordvpn.com", "number": 2017, - "ip": "195.206.183.156", + "ips": [ + "195.206.183.156" + ], "tcp": true, "udp": true }, @@ -61207,7 +65468,9 @@ "region": "United Kingdom", "hostname": "uk2018.nordvpn.com", "number": 2018, - "ip": "195.206.183.146", + "ips": [ + "195.206.183.146" + ], "tcp": true, "udp": true }, @@ -61215,7 +65478,9 @@ "region": "United Kingdom", "hostname": "uk2019.nordvpn.com", "number": 2019, - "ip": "195.206.183.141", + "ips": [ + "195.206.183.141" + ], "tcp": true, "udp": true }, @@ -61223,7 +65488,9 @@ "region": "United Kingdom", "hostname": "uk2020.nordvpn.com", "number": 2020, - "ip": "195.206.183.136", + "ips": [ + "195.206.183.136" + ], "tcp": true, "udp": true }, @@ -61231,7 +65498,9 @@ "region": "United Kingdom", "hostname": "uk2021.nordvpn.com", "number": 2021, - "ip": "195.206.183.131", + "ips": [ + "195.206.183.131" + ], "tcp": true, "udp": true }, @@ -61239,7 +65508,9 @@ "region": "United Kingdom", "hostname": "uk2022.nordvpn.com", "number": 2022, - "ip": "195.206.183.126", + "ips": [ + "195.206.183.126" + ], "tcp": true, "udp": true }, @@ -61247,7 +65518,9 @@ "region": "United Kingdom", "hostname": "uk2023.nordvpn.com", "number": 2023, - "ip": "195.206.183.121", + "ips": [ + "195.206.183.121" + ], "tcp": true, "udp": true }, @@ -61255,7 +65528,9 @@ "region": "United Kingdom", "hostname": "uk2024.nordvpn.com", "number": 2024, - "ip": "195.206.183.111", + "ips": [ + "195.206.183.111" + ], "tcp": true, "udp": true }, @@ -61263,7 +65538,9 @@ "region": "United Kingdom", "hostname": "uk2025.nordvpn.com", "number": 2025, - "ip": "195.206.183.106", + "ips": [ + "195.206.183.106" + ], "tcp": true, "udp": true }, @@ -61271,7 +65548,9 @@ "region": "United Kingdom", "hostname": "uk2026.nordvpn.com", "number": 2026, - "ip": "195.206.183.101", + "ips": [ + "195.206.183.101" + ], "tcp": true, "udp": true }, @@ -61279,7 +65558,9 @@ "region": "United Kingdom", "hostname": "uk2027.nordvpn.com", "number": 2027, - "ip": "195.206.183.96", + "ips": [ + "195.206.183.96" + ], "tcp": true, "udp": true }, @@ -61287,7 +65568,9 @@ "region": "United Kingdom", "hostname": "uk2028.nordvpn.com", "number": 2028, - "ip": "195.206.183.91", + "ips": [ + "195.206.183.91" + ], "tcp": true, "udp": true }, @@ -61295,7 +65578,9 @@ "region": "United Kingdom", "hostname": "uk2029.nordvpn.com", "number": 2029, - "ip": "195.206.183.86", + "ips": [ + "195.206.183.86" + ], "tcp": true, "udp": true }, @@ -61303,7 +65588,9 @@ "region": "United Kingdom", "hostname": "uk2030.nordvpn.com", "number": 2030, - "ip": "195.206.183.81", + "ips": [ + "195.206.183.81" + ], "tcp": true, "udp": true }, @@ -61311,7 +65598,9 @@ "region": "United Kingdom", "hostname": "uk2031.nordvpn.com", "number": 2031, - "ip": "195.206.183.76", + "ips": [ + "195.206.183.76" + ], "tcp": true, "udp": true }, @@ -61319,7 +65608,9 @@ "region": "United Kingdom", "hostname": "uk2032.nordvpn.com", "number": 2032, - "ip": "195.206.183.71", + "ips": [ + "195.206.183.71" + ], "tcp": true, "udp": true }, @@ -61327,7 +65618,9 @@ "region": "United Kingdom", "hostname": "uk2033.nordvpn.com", "number": 2033, - "ip": "195.206.183.66", + "ips": [ + "195.206.183.66" + ], "tcp": true, "udp": true }, @@ -61335,7 +65628,9 @@ "region": "United Kingdom", "hostname": "uk2034.nordvpn.com", "number": 2034, - "ip": "195.206.183.61", + "ips": [ + "195.206.183.61" + ], "tcp": true, "udp": true }, @@ -61343,7 +65638,9 @@ "region": "United Kingdom", "hostname": "uk2035.nordvpn.com", "number": 2035, - "ip": "195.206.183.56", + "ips": [ + "195.206.183.56" + ], "tcp": true, "udp": true }, @@ -61351,7 +65648,9 @@ "region": "United Kingdom", "hostname": "uk2036.nordvpn.com", "number": 2036, - "ip": "109.70.144.26", + "ips": [ + "109.70.144.26" + ], "tcp": true, "udp": true }, @@ -61359,7 +65658,9 @@ "region": "United Kingdom", "hostname": "uk2037.nordvpn.com", "number": 2037, - "ip": "109.70.144.21", + "ips": [ + "109.70.144.21" + ], "tcp": true, "udp": true }, @@ -61367,7 +65668,9 @@ "region": "United Kingdom", "hostname": "uk2038.nordvpn.com", "number": 2038, - "ip": "109.70.144.154", + "ips": [ + "109.70.144.154" + ], "tcp": true, "udp": true }, @@ -61375,7 +65678,9 @@ "region": "United Kingdom", "hostname": "uk2039.nordvpn.com", "number": 2039, - "ip": "109.70.144.149", + "ips": [ + "109.70.144.149" + ], "tcp": true, "udp": true }, @@ -61383,7 +65688,9 @@ "region": "United Kingdom", "hostname": "uk2040.nordvpn.com", "number": 2040, - "ip": "185.16.207.58", + "ips": [ + "185.16.207.58" + ], "tcp": true, "udp": true }, @@ -61391,7 +65698,9 @@ "region": "United Kingdom", "hostname": "uk2041.nordvpn.com", "number": 2041, - "ip": "185.16.207.53", + "ips": [ + "185.16.207.53" + ], "tcp": true, "udp": true }, @@ -61399,7 +65708,9 @@ "region": "United Kingdom", "hostname": "uk2042.nordvpn.com", "number": 2042, - "ip": "185.16.207.48", + "ips": [ + "185.16.207.48" + ], "tcp": true, "udp": true }, @@ -61407,7 +65718,9 @@ "region": "United Kingdom", "hostname": "uk2043.nordvpn.com", "number": 2043, - "ip": "195.206.183.51", + "ips": [ + "195.206.183.51" + ], "tcp": true, "udp": true }, @@ -61415,7 +65728,9 @@ "region": "United Kingdom", "hostname": "uk2044.nordvpn.com", "number": 2044, - "ip": "195.140.215.186", + "ips": [ + "195.140.215.186" + ], "tcp": true, "udp": true }, @@ -61423,7 +65738,9 @@ "region": "United Kingdom", "hostname": "uk2045.nordvpn.com", "number": 2045, - "ip": "195.140.215.176", + "ips": [ + "195.140.215.176" + ], "tcp": true, "udp": true }, @@ -61431,7 +65748,9 @@ "region": "United Kingdom", "hostname": "uk2046.nordvpn.com", "number": 2046, - "ip": "195.140.215.171", + "ips": [ + "195.140.215.171" + ], "tcp": true, "udp": true }, @@ -61439,7 +65758,9 @@ "region": "United Kingdom", "hostname": "uk2047.nordvpn.com", "number": 2047, - "ip": "195.140.215.167", + "ips": [ + "195.140.215.167" + ], "tcp": true, "udp": true }, @@ -61447,7 +65768,9 @@ "region": "United Kingdom", "hostname": "uk2048.nordvpn.com", "number": 2048, - "ip": "178.239.160.202", + "ips": [ + "178.239.160.202" + ], "tcp": true, "udp": true }, @@ -61455,7 +65778,9 @@ "region": "United Kingdom", "hostname": "uk2049.nordvpn.com", "number": 2049, - "ip": "178.239.160.197", + "ips": [ + "178.239.160.197" + ], "tcp": true, "udp": true }, @@ -61463,7 +65788,9 @@ "region": "United Kingdom", "hostname": "uk2050.nordvpn.com", "number": 2050, - "ip": "178.239.161.218", + "ips": [ + "178.239.161.218" + ], "tcp": true, "udp": true }, @@ -61471,7 +65798,9 @@ "region": "United Kingdom", "hostname": "uk2051.nordvpn.com", "number": 2051, - "ip": "178.239.161.213", + "ips": [ + "178.239.161.213" + ], "tcp": true, "udp": true }, @@ -61479,7 +65808,9 @@ "region": "United Kingdom", "hostname": "uk2052.nordvpn.com", "number": 2052, - "ip": "185.16.207.39", + "ips": [ + "185.16.207.39" + ], "tcp": true, "udp": true }, @@ -61487,7 +65818,9 @@ "region": "United Kingdom", "hostname": "uk2053.nordvpn.com", "number": 2053, - "ip": "81.92.203.202", + "ips": [ + "81.92.203.202" + ], "tcp": true, "udp": true }, @@ -61495,7 +65828,9 @@ "region": "United Kingdom", "hostname": "uk2054.nordvpn.com", "number": 2054, - "ip": "194.36.110.101", + "ips": [ + "194.36.110.101" + ], "tcp": true, "udp": true }, @@ -61503,7 +65838,9 @@ "region": "United Kingdom", "hostname": "uk2065.nordvpn.com", "number": 2065, - "ip": "81.92.202.20", + "ips": [ + "81.92.202.20" + ], "tcp": true, "udp": true }, @@ -61511,7 +65848,9 @@ "region": "United Kingdom", "hostname": "uk2066.nordvpn.com", "number": 2066, - "ip": "194.36.110.213", + "ips": [ + "194.36.110.213" + ], "tcp": true, "udp": true }, @@ -61519,7 +65858,9 @@ "region": "United Kingdom", "hostname": "uk2067.nordvpn.com", "number": 2067, - "ip": "81.92.200.117", + "ips": [ + "81.92.200.117" + ], "tcp": true, "udp": true }, @@ -61527,7 +65868,9 @@ "region": "United Kingdom", "hostname": "uk2069.nordvpn.com", "number": 2069, - "ip": "195.206.183.191", + "ips": [ + "195.206.183.191" + ], "tcp": true, "udp": true }, @@ -61535,7 +65878,9 @@ "region": "United Kingdom", "hostname": "uk2070.nordvpn.com", "number": 2070, - "ip": "195.206.183.151", + "ips": [ + "195.206.183.151" + ], "tcp": true, "udp": true }, @@ -61543,7 +65888,9 @@ "region": "United Kingdom", "hostname": "uk2071.nordvpn.com", "number": 2071, - "ip": "195.206.183.116", + "ips": [ + "195.206.183.116" + ], "tcp": true, "udp": true }, @@ -61551,7 +65898,9 @@ "region": "United Kingdom", "hostname": "uk2072.nordvpn.com", "number": 2072, - "ip": "185.16.207.43", + "ips": [ + "185.16.207.43" + ], "tcp": true, "udp": true }, @@ -61559,7 +65908,9 @@ "region": "United Kingdom", "hostname": "uk2073.nordvpn.com", "number": 2073, - "ip": "195.206.183.46", + "ips": [ + "195.206.183.46" + ], "tcp": true, "udp": true }, @@ -61567,7 +65918,9 @@ "region": "United Kingdom", "hostname": "uk2074.nordvpn.com", "number": 2074, - "ip": "195.140.215.181", + "ips": [ + "195.140.215.181" + ], "tcp": true, "udp": true }, @@ -61575,7 +65928,19 @@ "region": "United Kingdom", "hostname": "uk2075.nordvpn.com", "number": 2075, - "ip": "194.35.233.3", + "ips": [ + "194.35.233.3" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2076.nordvpn.com", + "number": 2076, + "ips": [ + "194.35.233.6" + ], "tcp": true, "udp": true }, @@ -61583,7 +65948,9 @@ "region": "United Kingdom", "hostname": "uk2077.nordvpn.com", "number": 2077, - "ip": "194.35.233.9", + "ips": [ + "194.35.233.9" + ], "tcp": true, "udp": true }, @@ -61591,7 +65958,9 @@ "region": "United Kingdom", "hostname": "uk2078.nordvpn.com", "number": 2078, - "ip": "194.35.233.12", + "ips": [ + "194.35.233.12" + ], "tcp": true, "udp": true }, @@ -61599,7 +65968,9 @@ "region": "United Kingdom", "hostname": "uk2079.nordvpn.com", "number": 2079, - "ip": "194.35.233.15", + "ips": [ + "194.35.233.15" + ], "tcp": true, "udp": true }, @@ -61607,7 +65978,9 @@ "region": "United Kingdom", "hostname": "uk2080.nordvpn.com", "number": 2080, - "ip": "194.35.233.18", + "ips": [ + "194.35.233.18" + ], "tcp": true, "udp": true }, @@ -61615,7 +65988,9 @@ "region": "United Kingdom", "hostname": "uk2081.nordvpn.com", "number": 2081, - "ip": "194.35.233.21", + "ips": [ + "194.35.233.21" + ], "tcp": true, "udp": true }, @@ -61623,7 +65998,9 @@ "region": "United Kingdom", "hostname": "uk2082.nordvpn.com", "number": 2082, - "ip": "194.35.233.24", + "ips": [ + "194.35.233.24" + ], "tcp": true, "udp": true }, @@ -61631,7 +66008,9 @@ "region": "United Kingdom", "hostname": "uk2083.nordvpn.com", "number": 2083, - "ip": "194.35.233.27", + "ips": [ + "194.35.233.27" + ], "tcp": true, "udp": true }, @@ -61639,7 +66018,9 @@ "region": "United Kingdom", "hostname": "uk2084.nordvpn.com", "number": 2084, - "ip": "194.35.233.30", + "ips": [ + "194.35.233.30" + ], "tcp": true, "udp": true }, @@ -61647,7 +66028,9 @@ "region": "United Kingdom", "hostname": "uk2085.nordvpn.com", "number": 2085, - "ip": "194.35.233.33", + "ips": [ + "194.35.233.33" + ], "tcp": true, "udp": true }, @@ -61655,7 +66038,9 @@ "region": "United Kingdom", "hostname": "uk2087.nordvpn.com", "number": 2087, - "ip": "194.35.233.39", + "ips": [ + "194.35.233.39" + ], "tcp": true, "udp": true }, @@ -61663,7 +66048,9 @@ "region": "United Kingdom", "hostname": "uk2088.nordvpn.com", "number": 2088, - "ip": "194.35.233.42", + "ips": [ + "194.35.233.42" + ], "tcp": true, "udp": true }, @@ -61671,7 +66058,9 @@ "region": "United Kingdom", "hostname": "uk2089.nordvpn.com", "number": 2089, - "ip": "194.35.233.45", + "ips": [ + "194.35.233.45" + ], "tcp": true, "udp": true }, @@ -61679,7 +66068,9 @@ "region": "United Kingdom", "hostname": "uk2090.nordvpn.com", "number": 2090, - "ip": "194.35.233.48", + "ips": [ + "194.35.233.48" + ], "tcp": true, "udp": true }, @@ -61687,7 +66078,9 @@ "region": "United Kingdom", "hostname": "uk2091.nordvpn.com", "number": 2091, - "ip": "194.35.233.51", + "ips": [ + "194.35.233.51" + ], "tcp": true, "udp": true }, @@ -61695,7 +66088,9 @@ "region": "United Kingdom", "hostname": "uk2092.nordvpn.com", "number": 2092, - "ip": "194.35.233.54", + "ips": [ + "194.35.233.54" + ], "tcp": true, "udp": true }, @@ -61703,7 +66098,9 @@ "region": "United Kingdom", "hostname": "uk2093.nordvpn.com", "number": 2093, - "ip": "194.35.233.57", + "ips": [ + "194.35.233.57" + ], "tcp": true, "udp": true }, @@ -61711,7 +66108,9 @@ "region": "United Kingdom", "hostname": "uk2094.nordvpn.com", "number": 2094, - "ip": "194.35.233.60", + "ips": [ + "194.35.233.60" + ], "tcp": true, "udp": true }, @@ -61719,7 +66118,9 @@ "region": "United Kingdom", "hostname": "uk2095.nordvpn.com", "number": 2095, - "ip": "194.35.233.63", + "ips": [ + "194.35.233.63" + ], "tcp": true, "udp": true }, @@ -61727,7 +66128,9 @@ "region": "United Kingdom", "hostname": "uk2096.nordvpn.com", "number": 2096, - "ip": "194.35.233.66", + "ips": [ + "194.35.233.66" + ], "tcp": true, "udp": true }, @@ -61735,7 +66138,9 @@ "region": "United Kingdom", "hostname": "uk2097.nordvpn.com", "number": 2097, - "ip": "194.35.233.69", + "ips": [ + "194.35.233.69" + ], "tcp": true, "udp": true }, @@ -61743,15 +66148,9 @@ "region": "United Kingdom", "hostname": "uk2098.nordvpn.com", "number": 2098, - "ip": "194.35.233.72", - "tcp": true, - "udp": true - }, - { - "region": "United Kingdom", - "hostname": "uk2099.nordvpn.com", - "number": 2099, - "ip": "195.181.164.39", + "ips": [ + "194.35.233.72" + ], "tcp": true, "udp": true }, @@ -61759,7 +66158,9 @@ "region": "United Kingdom", "hostname": "uk2100.nordvpn.com", "number": 2100, - "ip": "185.59.221.110", + "ips": [ + "185.59.221.110" + ], "tcp": true, "udp": true }, @@ -61767,7 +66168,9 @@ "region": "United Kingdom", "hostname": "uk2101.nordvpn.com", "number": 2101, - "ip": "185.59.221.81", + "ips": [ + "185.59.221.81" + ], "tcp": true, "udp": true }, @@ -61775,7 +66178,9 @@ "region": "United Kingdom", "hostname": "uk2102.nordvpn.com", "number": 2102, - "ip": "89.34.98.110", + "ips": [ + "89.34.98.110" + ], "tcp": true, "udp": true }, @@ -61783,7 +66188,9 @@ "region": "United Kingdom", "hostname": "uk2103.nordvpn.com", "number": 2103, - "ip": "89.34.98.106", + "ips": [ + "89.34.98.106" + ], "tcp": true, "udp": true }, @@ -61791,7 +66198,9 @@ "region": "United Kingdom", "hostname": "uk2104.nordvpn.com", "number": 2104, - "ip": "89.34.98.102", + "ips": [ + "89.34.98.102" + ], "tcp": true, "udp": true }, @@ -61799,7 +66208,9 @@ "region": "United Kingdom", "hostname": "uk2105.nordvpn.com", "number": 2105, - "ip": "89.34.98.98", + "ips": [ + "89.34.98.98" + ], "tcp": true, "udp": true }, @@ -61807,7 +66218,9 @@ "region": "United Kingdom", "hostname": "uk2106.nordvpn.com", "number": 2106, - "ip": "89.34.98.94", + "ips": [ + "89.34.98.94" + ], "tcp": true, "udp": true }, @@ -61815,7 +66228,9 @@ "region": "United Kingdom", "hostname": "uk2107.nordvpn.com", "number": 2107, - "ip": "89.34.98.90", + "ips": [ + "89.34.98.90" + ], "tcp": true, "udp": true }, @@ -61823,7 +66238,9 @@ "region": "United Kingdom", "hostname": "uk2108.nordvpn.com", "number": 2108, - "ip": "89.34.98.86", + "ips": [ + "89.34.98.86" + ], "tcp": true, "udp": true }, @@ -61831,7 +66248,9 @@ "region": "United Kingdom", "hostname": "uk2109.nordvpn.com", "number": 2109, - "ip": "89.34.98.82", + "ips": [ + "89.34.98.82" + ], "tcp": true, "udp": true }, @@ -61839,7 +66258,9 @@ "region": "United Kingdom", "hostname": "uk2110.nordvpn.com", "number": 2110, - "ip": "89.34.98.78", + "ips": [ + "89.34.98.78" + ], "tcp": true, "udp": true }, @@ -61847,7 +66268,9 @@ "region": "United Kingdom", "hostname": "uk2111.nordvpn.com", "number": 2111, - "ip": "194.35.233.104", + "ips": [ + "194.35.233.104" + ], "tcp": true, "udp": true }, @@ -61855,7 +66278,9 @@ "region": "United Kingdom", "hostname": "uk2112.nordvpn.com", "number": 2112, - "ip": "194.35.233.107", + "ips": [ + "194.35.233.107" + ], "tcp": true, "udp": true }, @@ -61863,7 +66288,9 @@ "region": "United Kingdom", "hostname": "uk2113.nordvpn.com", "number": 2113, - "ip": "194.35.233.110", + "ips": [ + "194.35.233.110" + ], "tcp": true, "udp": true }, @@ -61871,7 +66298,9 @@ "region": "United Kingdom", "hostname": "uk2114.nordvpn.com", "number": 2114, - "ip": "194.35.233.113", + "ips": [ + "194.35.233.113" + ], "tcp": true, "udp": true }, @@ -61879,7 +66308,9 @@ "region": "United Kingdom", "hostname": "uk2115.nordvpn.com", "number": 2115, - "ip": "194.35.233.116", + "ips": [ + "194.35.233.116" + ], "tcp": true, "udp": true }, @@ -61887,7 +66318,9 @@ "region": "United Kingdom", "hostname": "uk2116.nordvpn.com", "number": 2116, - "ip": "194.35.233.119", + "ips": [ + "194.35.233.119" + ], "tcp": true, "udp": true }, @@ -61895,7 +66328,9 @@ "region": "United Kingdom", "hostname": "uk2117.nordvpn.com", "number": 2117, - "ip": "194.35.233.122", + "ips": [ + "194.35.233.122" + ], "tcp": true, "udp": true }, @@ -61903,7 +66338,9 @@ "region": "United Kingdom", "hostname": "uk2118.nordvpn.com", "number": 2118, - "ip": "194.35.233.125", + "ips": [ + "194.35.233.125" + ], "tcp": true, "udp": true }, @@ -61911,7 +66348,9 @@ "region": "United Kingdom", "hostname": "uk2119.nordvpn.com", "number": 2119, - "ip": "194.35.233.128", + "ips": [ + "194.35.233.128" + ], "tcp": true, "udp": true }, @@ -61919,7 +66358,9 @@ "region": "United Kingdom", "hostname": "uk2120.nordvpn.com", "number": 2120, - "ip": "194.35.233.131", + "ips": [ + "194.35.233.131" + ], "tcp": true, "udp": true }, @@ -61927,7 +66368,9 @@ "region": "United Kingdom", "hostname": "uk2121.nordvpn.com", "number": 2121, - "ip": "194.35.233.134", + "ips": [ + "194.35.233.134" + ], "tcp": true, "udp": true }, @@ -61935,7 +66378,9 @@ "region": "United Kingdom", "hostname": "uk2122.nordvpn.com", "number": 2122, - "ip": "194.35.233.137", + "ips": [ + "194.35.233.137" + ], "tcp": true, "udp": true }, @@ -61943,7 +66388,9 @@ "region": "United Kingdom", "hostname": "uk2123.nordvpn.com", "number": 2123, - "ip": "194.35.233.140", + "ips": [ + "194.35.233.140" + ], "tcp": true, "udp": true }, @@ -61951,7 +66398,9 @@ "region": "United Kingdom", "hostname": "uk2124.nordvpn.com", "number": 2124, - "ip": "194.35.233.143", + "ips": [ + "194.35.233.143" + ], "tcp": true, "udp": true }, @@ -61959,7 +66408,9 @@ "region": "United Kingdom", "hostname": "uk2142.nordvpn.com", "number": 2142, - "ip": "194.35.233.148", + "ips": [ + "194.35.233.148" + ], "tcp": true, "udp": true }, @@ -61967,7 +66418,9 @@ "region": "United Kingdom", "hostname": "uk2143.nordvpn.com", "number": 2143, - "ip": "194.35.233.151", + "ips": [ + "194.35.233.151" + ], "tcp": true, "udp": true }, @@ -61975,7 +66428,9 @@ "region": "United Kingdom", "hostname": "uk2144.nordvpn.com", "number": 2144, - "ip": "194.35.233.154", + "ips": [ + "194.35.233.154" + ], "tcp": true, "udp": true }, @@ -61983,7 +66438,9 @@ "region": "United Kingdom", "hostname": "uk2145.nordvpn.com", "number": 2145, - "ip": "194.35.233.157", + "ips": [ + "194.35.233.157" + ], "tcp": true, "udp": true }, @@ -61991,7 +66448,9 @@ "region": "United Kingdom", "hostname": "uk2146.nordvpn.com", "number": 2146, - "ip": "194.35.233.160", + "ips": [ + "194.35.233.160" + ], "tcp": true, "udp": true }, @@ -61999,7 +66458,9 @@ "region": "United Kingdom", "hostname": "uk2147.nordvpn.com", "number": 2147, - "ip": "194.35.233.163", + "ips": [ + "194.35.233.163" + ], "tcp": true, "udp": true }, @@ -62007,7 +66468,9 @@ "region": "United Kingdom", "hostname": "uk2148.nordvpn.com", "number": 2148, - "ip": "194.35.233.166", + "ips": [ + "194.35.233.166" + ], "tcp": true, "udp": true }, @@ -62015,7 +66478,9 @@ "region": "United Kingdom", "hostname": "uk2149.nordvpn.com", "number": 2149, - "ip": "194.35.233.169", + "ips": [ + "194.35.233.169" + ], "tcp": true, "udp": true }, @@ -62023,7 +66488,9 @@ "region": "United Kingdom", "hostname": "uk2150.nordvpn.com", "number": 2150, - "ip": "178.239.161.91", + "ips": [ + "178.239.161.91" + ], "tcp": true, "udp": true }, @@ -62031,7 +66498,9 @@ "region": "United Kingdom", "hostname": "uk2151.nordvpn.com", "number": 2151, - "ip": "178.239.161.87", + "ips": [ + "178.239.161.87" + ], "tcp": true, "udp": true }, @@ -62039,7 +66508,9 @@ "region": "United Kingdom", "hostname": "uk2152.nordvpn.com", "number": 2152, - "ip": "178.239.161.83", + "ips": [ + "178.239.161.83" + ], "tcp": true, "udp": true }, @@ -62047,7 +66518,9 @@ "region": "United Kingdom", "hostname": "uk2153.nordvpn.com", "number": 2153, - "ip": "178.239.161.75", + "ips": [ + "178.239.161.75" + ], "tcp": true, "udp": true }, @@ -62055,7 +66528,9 @@ "region": "United Kingdom", "hostname": "uk2154.nordvpn.com", "number": 2154, - "ip": "178.239.161.79", + "ips": [ + "178.239.161.79" + ], "tcp": true, "udp": true }, @@ -62063,7 +66538,9 @@ "region": "United Kingdom", "hostname": "uk2160.nordvpn.com", "number": 2160, - "ip": "194.35.233.172", + "ips": [ + "194.35.233.172" + ], "tcp": true, "udp": true }, @@ -62071,7 +66548,9 @@ "region": "United Kingdom", "hostname": "uk2161.nordvpn.com", "number": 2161, - "ip": "194.35.233.175", + "ips": [ + "194.35.233.175" + ], "tcp": true, "udp": true }, @@ -62079,7 +66558,9 @@ "region": "United Kingdom", "hostname": "uk2162.nordvpn.com", "number": 2162, - "ip": "194.35.233.178", + "ips": [ + "194.35.233.178" + ], "tcp": true, "udp": true }, @@ -62087,7 +66568,9 @@ "region": "United Kingdom", "hostname": "uk2163.nordvpn.com", "number": 2163, - "ip": "194.35.233.181", + "ips": [ + "194.35.233.181" + ], "tcp": true, "udp": true }, @@ -62095,7 +66578,9 @@ "region": "United Kingdom", "hostname": "uk2164.nordvpn.com", "number": 2164, - "ip": "194.35.233.184", + "ips": [ + "194.35.233.184" + ], "tcp": true, "udp": true }, @@ -62103,7 +66588,9 @@ "region": "United Kingdom", "hostname": "uk2165.nordvpn.com", "number": 2165, - "ip": "194.35.233.187", + "ips": [ + "194.35.233.187" + ], "tcp": true, "udp": true }, @@ -62111,7 +66598,9 @@ "region": "United Kingdom", "hostname": "uk2166.nordvpn.com", "number": 2166, - "ip": "194.35.233.190", + "ips": [ + "194.35.233.190" + ], "tcp": true, "udp": true }, @@ -62119,7 +66608,9 @@ "region": "United Kingdom", "hostname": "uk2167.nordvpn.com", "number": 2167, - "ip": "194.35.233.193", + "ips": [ + "194.35.233.193" + ], "tcp": true, "udp": true }, @@ -62127,7 +66618,9 @@ "region": "United Kingdom", "hostname": "uk2168.nordvpn.com", "number": 2168, - "ip": "194.35.233.196", + "ips": [ + "194.35.233.196" + ], "tcp": true, "udp": true }, @@ -62135,7 +66628,9 @@ "region": "United Kingdom", "hostname": "uk2169.nordvpn.com", "number": 2169, - "ip": "81.92.203.47", + "ips": [ + "81.92.203.47" + ], "tcp": true, "udp": true }, @@ -62143,7 +66638,9 @@ "region": "United Kingdom", "hostname": "uk2183.nordvpn.com", "number": 2183, - "ip": "77.243.177.37", + "ips": [ + "77.243.177.37" + ], "tcp": true, "udp": true }, @@ -62151,7 +66648,9 @@ "region": "United Kingdom", "hostname": "uk2184.nordvpn.com", "number": 2184, - "ip": "77.243.177.53", + "ips": [ + "77.243.177.53" + ], "tcp": true, "udp": true }, @@ -62159,7 +66658,9 @@ "region": "United Kingdom", "hostname": "uk2185.nordvpn.com", "number": 2185, - "ip": "77.243.177.117", + "ips": [ + "77.243.177.117" + ], "tcp": true, "udp": true }, @@ -62167,7 +66668,9 @@ "region": "United Kingdom", "hostname": "uk2186.nordvpn.com", "number": 2186, - "ip": "89.238.150.149", + "ips": [ + "89.238.150.149" + ], "tcp": true, "udp": true }, @@ -62175,7 +66678,9 @@ "region": "United Kingdom", "hostname": "uk2193.nordvpn.com", "number": 2193, - "ip": "178.159.3.162", + "ips": [ + "178.159.3.162" + ], "tcp": true, "udp": true }, @@ -62183,7 +66688,9 @@ "region": "United Kingdom", "hostname": "uk2194.nordvpn.com", "number": 2194, - "ip": "178.159.3.164", + "ips": [ + "178.159.3.164" + ], "tcp": true, "udp": true }, @@ -62191,7 +66698,9 @@ "region": "United Kingdom", "hostname": "uk2195.nordvpn.com", "number": 2195, - "ip": "178.159.3.166", + "ips": [ + "178.159.3.166" + ], "tcp": true, "udp": true }, @@ -62199,7 +66708,9 @@ "region": "United Kingdom", "hostname": "uk2196.nordvpn.com", "number": 2196, - "ip": "178.159.3.168", + "ips": [ + "178.159.3.168" + ], "tcp": true, "udp": true }, @@ -62207,7 +66718,9 @@ "region": "United Kingdom", "hostname": "uk2197.nordvpn.com", "number": 2197, - "ip": "178.159.3.170", + "ips": [ + "178.159.3.170" + ], "tcp": true, "udp": true }, @@ -62215,7 +66728,9 @@ "region": "United Kingdom", "hostname": "uk2198.nordvpn.com", "number": 2198, - "ip": "178.159.3.172", + "ips": [ + "178.159.3.172" + ], "tcp": true, "udp": true }, @@ -62223,7 +66738,9 @@ "region": "United Kingdom", "hostname": "uk2199.nordvpn.com", "number": 2199, - "ip": "178.159.3.174", + "ips": [ + "178.159.3.174" + ], "tcp": true, "udp": true }, @@ -62231,7 +66748,9 @@ "region": "United Kingdom", "hostname": "uk2200.nordvpn.com", "number": 2200, - "ip": "178.159.3.176", + "ips": [ + "178.159.3.176" + ], "tcp": true, "udp": true }, @@ -62239,7 +66758,9 @@ "region": "United Kingdom", "hostname": "uk2201.nordvpn.com", "number": 2201, - "ip": "178.159.3.178", + "ips": [ + "178.159.3.178" + ], "tcp": true, "udp": true }, @@ -62247,7 +66768,9 @@ "region": "United Kingdom", "hostname": "uk2202.nordvpn.com", "number": 2202, - "ip": "178.159.3.180", + "ips": [ + "178.159.3.180" + ], "tcp": true, "udp": true }, @@ -62255,7 +66778,9 @@ "region": "United Kingdom", "hostname": "uk2203.nordvpn.com", "number": 2203, - "ip": "178.159.3.182", + "ips": [ + "178.159.3.182" + ], "tcp": true, "udp": true }, @@ -62263,7 +66788,9 @@ "region": "United Kingdom", "hostname": "uk2204.nordvpn.com", "number": 2204, - "ip": "178.159.3.184", + "ips": [ + "178.159.3.184" + ], "tcp": true, "udp": true }, @@ -62271,7 +66798,9 @@ "region": "United Kingdom", "hostname": "uk2205.nordvpn.com", "number": 2205, - "ip": "185.17.27.98", + "ips": [ + "185.17.27.98" + ], "tcp": true, "udp": true }, @@ -62279,7 +66808,9 @@ "region": "United Kingdom", "hostname": "uk2206.nordvpn.com", "number": 2206, - "ip": "185.17.27.100", + "ips": [ + "185.17.27.100" + ], "tcp": true, "udp": true }, @@ -62287,7 +66818,9 @@ "region": "United Kingdom", "hostname": "uk2207.nordvpn.com", "number": 2207, - "ip": "185.17.27.102", + "ips": [ + "185.17.27.102" + ], "tcp": true, "udp": true }, @@ -62295,7 +66828,9 @@ "region": "United Kingdom", "hostname": "uk2208.nordvpn.com", "number": 2208, - "ip": "185.17.27.104", + "ips": [ + "185.17.27.104" + ], "tcp": true, "udp": true }, @@ -62303,7 +66838,9 @@ "region": "United Kingdom", "hostname": "uk2209.nordvpn.com", "number": 2209, - "ip": "185.17.27.106", + "ips": [ + "185.17.27.106" + ], "tcp": true, "udp": true }, @@ -62311,7 +66848,9 @@ "region": "United Kingdom", "hostname": "uk2210.nordvpn.com", "number": 2210, - "ip": "185.17.27.108", + "ips": [ + "185.17.27.108" + ], "tcp": true, "udp": true }, @@ -62319,7 +66858,9 @@ "region": "United Kingdom", "hostname": "uk2211.nordvpn.com", "number": 2211, - "ip": "185.17.27.110", + "ips": [ + "185.17.27.110" + ], "tcp": true, "udp": true }, @@ -62327,7 +66868,9 @@ "region": "United Kingdom", "hostname": "uk2212.nordvpn.com", "number": 2212, - "ip": "185.17.27.112", + "ips": [ + "185.17.27.112" + ], "tcp": true, "udp": true }, @@ -62335,7 +66878,9 @@ "region": "United Kingdom", "hostname": "uk2213.nordvpn.com", "number": 2213, - "ip": "185.17.27.114", + "ips": [ + "185.17.27.114" + ], "tcp": true, "udp": true }, @@ -62343,7 +66888,9 @@ "region": "United Kingdom", "hostname": "uk2214.nordvpn.com", "number": 2214, - "ip": "185.17.27.116", + "ips": [ + "185.17.27.116" + ], "tcp": true, "udp": true }, @@ -62351,7 +66898,9 @@ "region": "United Kingdom", "hostname": "uk2215.nordvpn.com", "number": 2215, - "ip": "185.17.27.118", + "ips": [ + "185.17.27.118" + ], "tcp": true, "udp": true }, @@ -62359,7 +66908,9 @@ "region": "United Kingdom", "hostname": "uk2216.nordvpn.com", "number": 2216, - "ip": "185.17.27.120", + "ips": [ + "185.17.27.120" + ], "tcp": true, "udp": true }, @@ -62367,7 +66918,9 @@ "region": "United Kingdom", "hostname": "uk2217.nordvpn.com", "number": 2217, - "ip": "89.238.191.173", + "ips": [ + "89.238.191.173" + ], "tcp": true, "udp": true }, @@ -62375,7 +66928,9 @@ "region": "United Kingdom", "hostname": "uk2218.nordvpn.com", "number": 2218, - "ip": "178.239.162.251", + "ips": [ + "178.239.162.251" + ], "tcp": true, "udp": true }, @@ -62383,7 +66938,9 @@ "region": "United Kingdom", "hostname": "uk2219.nordvpn.com", "number": 2219, - "ip": "178.239.162.247", + "ips": [ + "178.239.162.247" + ], "tcp": true, "udp": true }, @@ -62391,7 +66948,9 @@ "region": "United Kingdom", "hostname": "uk2220.nordvpn.com", "number": 2220, - "ip": "178.239.162.243", + "ips": [ + "178.239.162.243" + ], "tcp": true, "udp": true }, @@ -62399,7 +66958,9 @@ "region": "United Kingdom", "hostname": "uk2221.nordvpn.com", "number": 2221, - "ip": "178.239.162.239", + "ips": [ + "178.239.162.239" + ], "tcp": true, "udp": true }, @@ -62407,7 +66968,9 @@ "region": "United Kingdom", "hostname": "uk2222.nordvpn.com", "number": 2222, - "ip": "178.239.162.235", + "ips": [ + "178.239.162.235" + ], "tcp": true, "udp": true }, @@ -62415,7 +66978,9 @@ "region": "United Kingdom", "hostname": "uk2223.nordvpn.com", "number": 2223, - "ip": "178.239.162.231", + "ips": [ + "178.239.162.231" + ], "tcp": true, "udp": true }, @@ -62423,7 +66988,9 @@ "region": "United Kingdom", "hostname": "uk2224.nordvpn.com", "number": 2224, - "ip": "178.239.162.227", + "ips": [ + "178.239.162.227" + ], "tcp": true, "udp": true }, @@ -62431,7 +66998,9 @@ "region": "United Kingdom", "hostname": "uk2225.nordvpn.com", "number": 2225, - "ip": "178.239.162.223", + "ips": [ + "178.239.162.223" + ], "tcp": true, "udp": true }, @@ -62439,7 +67008,9 @@ "region": "United Kingdom", "hostname": "uk2226.nordvpn.com", "number": 2226, - "ip": "178.239.162.219", + "ips": [ + "178.239.162.219" + ], "tcp": true, "udp": true }, @@ -62447,7 +67018,9 @@ "region": "United Kingdom", "hostname": "uk2227.nordvpn.com", "number": 2227, - "ip": "178.239.162.215", + "ips": [ + "178.239.162.215" + ], "tcp": true, "udp": true }, @@ -62455,7 +67028,9 @@ "region": "United Kingdom", "hostname": "uk2228.nordvpn.com", "number": 2228, - "ip": "178.239.162.211", + "ips": [ + "178.239.162.211" + ], "tcp": true, "udp": true }, @@ -62463,7 +67038,9 @@ "region": "United Kingdom", "hostname": "uk2229.nordvpn.com", "number": 2229, - "ip": "178.239.162.207", + "ips": [ + "178.239.162.207" + ], "tcp": true, "udp": true }, @@ -62471,7 +67048,9 @@ "region": "United Kingdom", "hostname": "uk2230.nordvpn.com", "number": 2230, - "ip": "178.239.162.203", + "ips": [ + "178.239.162.203" + ], "tcp": true, "udp": true }, @@ -62479,7 +67058,9 @@ "region": "United Kingdom", "hostname": "uk2231.nordvpn.com", "number": 2231, - "ip": "178.239.162.199", + "ips": [ + "178.239.162.199" + ], "tcp": true, "udp": true }, @@ -62487,7 +67068,9 @@ "region": "United Kingdom", "hostname": "uk2232.nordvpn.com", "number": 2232, - "ip": "178.239.162.195", + "ips": [ + "178.239.162.195" + ], "tcp": true, "udp": true }, @@ -62495,7 +67078,9 @@ "region": "United Kingdom", "hostname": "uk2233.nordvpn.com", "number": 2233, - "ip": "178.239.162.191", + "ips": [ + "178.239.162.191" + ], "tcp": true, "udp": true }, @@ -62503,7 +67088,9 @@ "region": "United Kingdom", "hostname": "uk2234.nordvpn.com", "number": 2234, - "ip": "178.239.162.187", + "ips": [ + "178.239.162.187" + ], "tcp": true, "udp": true }, @@ -62511,7 +67098,9 @@ "region": "United Kingdom", "hostname": "uk2235.nordvpn.com", "number": 2235, - "ip": "178.239.162.183", + "ips": [ + "178.239.162.183" + ], "tcp": true, "udp": true }, @@ -62519,7 +67108,9 @@ "region": "United Kingdom", "hostname": "uk2236.nordvpn.com", "number": 2236, - "ip": "178.239.162.179", + "ips": [ + "178.239.162.179" + ], "tcp": true, "udp": true }, @@ -62527,7 +67118,9 @@ "region": "United Kingdom", "hostname": "uk2237.nordvpn.com", "number": 2237, - "ip": "178.239.162.175", + "ips": [ + "178.239.162.175" + ], "tcp": true, "udp": true }, @@ -62535,7 +67128,9 @@ "region": "United Kingdom", "hostname": "uk2238.nordvpn.com", "number": 2238, - "ip": "178.239.162.171", + "ips": [ + "178.239.162.171" + ], "tcp": true, "udp": true }, @@ -62543,7 +67138,9 @@ "region": "United Kingdom", "hostname": "uk2239.nordvpn.com", "number": 2239, - "ip": "178.239.162.167", + "ips": [ + "178.239.162.167" + ], "tcp": true, "udp": true }, @@ -62551,7 +67148,9 @@ "region": "United Kingdom", "hostname": "uk2240.nordvpn.com", "number": 2240, - "ip": "178.239.162.163", + "ips": [ + "178.239.162.163" + ], "tcp": true, "udp": true }, @@ -62559,7 +67158,9 @@ "region": "United Kingdom", "hostname": "uk2241.nordvpn.com", "number": 2241, - "ip": "178.239.162.160", + "ips": [ + "178.239.162.160" + ], "tcp": true, "udp": true }, @@ -62567,7 +67168,9 @@ "region": "United Kingdom", "hostname": "uk2242.nordvpn.com", "number": 2242, - "ip": "217.146.92.231", + "ips": [ + "217.146.92.231" + ], "tcp": true, "udp": true }, @@ -62575,7 +67178,9 @@ "region": "United Kingdom", "hostname": "uk2243.nordvpn.com", "number": 2243, - "ip": "217.146.92.251", + "ips": [ + "217.146.92.251" + ], "tcp": true, "udp": true }, @@ -62583,7 +67188,9 @@ "region": "United Kingdom", "hostname": "uk2244.nordvpn.com", "number": 2244, - "ip": "217.146.92.247", + "ips": [ + "217.146.92.247" + ], "tcp": true, "udp": true }, @@ -62591,7 +67198,9 @@ "region": "United Kingdom", "hostname": "uk2245.nordvpn.com", "number": 2245, - "ip": "217.146.92.243", + "ips": [ + "217.146.92.243" + ], "tcp": true, "udp": true }, @@ -62599,7 +67208,9 @@ "region": "United Kingdom", "hostname": "uk2246.nordvpn.com", "number": 2246, - "ip": "217.146.92.239", + "ips": [ + "217.146.92.239" + ], "tcp": true, "udp": true }, @@ -62607,7 +67218,9 @@ "region": "United Kingdom", "hostname": "uk2247.nordvpn.com", "number": 2247, - "ip": "217.146.92.235", + "ips": [ + "217.146.92.235" + ], "tcp": true, "udp": true }, @@ -62615,7 +67228,9 @@ "region": "United Kingdom", "hostname": "uk2248.nordvpn.com", "number": 2248, - "ip": "217.146.92.222", + "ips": [ + "217.146.92.222" + ], "tcp": true, "udp": true }, @@ -62623,7 +67238,9 @@ "region": "United Kingdom", "hostname": "uk2249.nordvpn.com", "number": 2249, - "ip": "217.146.92.214", + "ips": [ + "217.146.92.214" + ], "tcp": true, "udp": true }, @@ -62631,7 +67248,9 @@ "region": "United Kingdom", "hostname": "uk2250.nordvpn.com", "number": 2250, - "ip": "217.146.92.218", + "ips": [ + "217.146.92.218" + ], "tcp": true, "udp": true }, @@ -62639,7 +67258,9 @@ "region": "United Kingdom", "hostname": "uk2251.nordvpn.com", "number": 2251, - "ip": "217.146.92.226", + "ips": [ + "217.146.92.226" + ], "tcp": true, "udp": true }, @@ -62647,7 +67268,9 @@ "region": "United Kingdom", "hostname": "uk2252.nordvpn.com", "number": 2252, - "ip": "217.146.92.210", + "ips": [ + "217.146.92.210" + ], "tcp": true, "udp": true }, @@ -62655,7 +67278,9 @@ "region": "United Kingdom", "hostname": "uk2253.nordvpn.com", "number": 2253, - "ip": "217.146.92.206", + "ips": [ + "217.146.92.206" + ], "tcp": true, "udp": true }, @@ -62663,7 +67288,9 @@ "region": "United Kingdom", "hostname": "uk2254.nordvpn.com", "number": 2254, - "ip": "217.146.92.202", + "ips": [ + "217.146.92.202" + ], "tcp": true, "udp": true }, @@ -62671,7 +67298,9 @@ "region": "United Kingdom", "hostname": "uk2255.nordvpn.com", "number": 2255, - "ip": "217.146.92.198", + "ips": [ + "217.146.92.198" + ], "tcp": true, "udp": true }, @@ -62679,7 +67308,9 @@ "region": "United Kingdom", "hostname": "uk2256.nordvpn.com", "number": 2256, - "ip": "217.146.92.194", + "ips": [ + "217.146.92.194" + ], "tcp": true, "udp": true }, @@ -62687,7 +67318,9 @@ "region": "United Kingdom", "hostname": "uk2257.nordvpn.com", "number": 2257, - "ip": "217.146.92.190", + "ips": [ + "217.146.92.190" + ], "tcp": true, "udp": true }, @@ -62695,7 +67328,9 @@ "region": "United Kingdom", "hostname": "uk2258.nordvpn.com", "number": 2258, - "ip": "217.146.92.186", + "ips": [ + "217.146.92.186" + ], "tcp": true, "udp": true }, @@ -62703,7 +67338,9 @@ "region": "United Kingdom", "hostname": "uk2259.nordvpn.com", "number": 2259, - "ip": "217.146.92.182", + "ips": [ + "217.146.92.182" + ], "tcp": true, "udp": true }, @@ -62711,7 +67348,9 @@ "region": "United Kingdom", "hostname": "uk2260.nordvpn.com", "number": 2260, - "ip": "217.146.92.178", + "ips": [ + "217.146.92.178" + ], "tcp": true, "udp": true }, @@ -62719,7 +67358,9 @@ "region": "United Kingdom", "hostname": "uk2261.nordvpn.com", "number": 2261, - "ip": "217.146.92.174", + "ips": [ + "217.146.92.174" + ], "tcp": true, "udp": true }, @@ -62727,7 +67368,9 @@ "region": "United Kingdom", "hostname": "uk2262.nordvpn.com", "number": 2262, - "ip": "217.146.92.170", + "ips": [ + "217.146.92.170" + ], "tcp": true, "udp": true }, @@ -62735,7 +67378,9 @@ "region": "United Kingdom", "hostname": "uk2263.nordvpn.com", "number": 2263, - "ip": "217.146.92.166", + "ips": [ + "217.146.92.166" + ], "tcp": true, "udp": true }, @@ -62743,7 +67388,9 @@ "region": "United Kingdom", "hostname": "uk2264.nordvpn.com", "number": 2264, - "ip": "217.146.92.162", + "ips": [ + "217.146.92.162" + ], "tcp": true, "udp": true }, @@ -62751,7 +67398,9 @@ "region": "United Kingdom", "hostname": "uk2265.nordvpn.com", "number": 2265, - "ip": "217.146.92.158", + "ips": [ + "217.146.92.158" + ], "tcp": true, "udp": true }, @@ -62759,7 +67408,9 @@ "region": "United Kingdom", "hostname": "uk2266.nordvpn.com", "number": 2266, - "ip": "217.146.92.154", + "ips": [ + "217.146.92.154" + ], "tcp": true, "udp": true }, @@ -62767,7 +67418,9 @@ "region": "United Kingdom", "hostname": "uk2267.nordvpn.com", "number": 2267, - "ip": "217.146.92.150", + "ips": [ + "217.146.92.150" + ], "tcp": true, "udp": true }, @@ -62775,7 +67428,9 @@ "region": "United Kingdom", "hostname": "uk2268.nordvpn.com", "number": 2268, - "ip": "5.226.142.3", + "ips": [ + "5.226.142.3" + ], "tcp": true, "udp": true }, @@ -62783,7 +67438,9 @@ "region": "United Kingdom", "hostname": "uk2269.nordvpn.com", "number": 2269, - "ip": "89.35.30.251", + "ips": [ + "89.35.30.251" + ], "tcp": true, "udp": true }, @@ -62791,7 +67448,9 @@ "region": "United Kingdom", "hostname": "uk2270.nordvpn.com", "number": 2270, - "ip": "89.35.30.247", + "ips": [ + "89.35.30.247" + ], "tcp": true, "udp": true }, @@ -62799,7 +67458,9 @@ "region": "United Kingdom", "hostname": "uk2271.nordvpn.com", "number": 2271, - "ip": "89.35.30.243", + "ips": [ + "89.35.30.243" + ], "tcp": true, "udp": true }, @@ -62807,7 +67468,9 @@ "region": "United Kingdom", "hostname": "uk2272.nordvpn.com", "number": 2272, - "ip": "89.35.30.239", + "ips": [ + "89.35.30.239" + ], "tcp": true, "udp": true }, @@ -62815,7 +67478,9 @@ "region": "United Kingdom", "hostname": "uk2273.nordvpn.com", "number": 2273, - "ip": "89.35.30.235", + "ips": [ + "89.35.30.235" + ], "tcp": true, "udp": true }, @@ -62823,7 +67488,9 @@ "region": "United Kingdom", "hostname": "uk2274.nordvpn.com", "number": 2274, - "ip": "89.35.30.231", + "ips": [ + "89.35.30.231" + ], "tcp": true, "udp": true }, @@ -62831,7 +67498,9 @@ "region": "United Kingdom", "hostname": "uk2275.nordvpn.com", "number": 2275, - "ip": "89.35.30.227", + "ips": [ + "89.35.30.227" + ], "tcp": true, "udp": true }, @@ -62839,7 +67508,9 @@ "region": "United Kingdom", "hostname": "uk2276.nordvpn.com", "number": 2276, - "ip": "89.35.30.223", + "ips": [ + "89.35.30.223" + ], "tcp": true, "udp": true }, @@ -62847,7 +67518,9 @@ "region": "United Kingdom", "hostname": "uk2277.nordvpn.com", "number": 2277, - "ip": "89.35.30.219", + "ips": [ + "89.35.30.219" + ], "tcp": true, "udp": true }, @@ -62855,7 +67528,9 @@ "region": "United Kingdom", "hostname": "uk2278.nordvpn.com", "number": 2278, - "ip": "89.35.30.215", + "ips": [ + "89.35.30.215" + ], "tcp": true, "udp": true }, @@ -62863,7 +67538,9 @@ "region": "United Kingdom", "hostname": "uk2279.nordvpn.com", "number": 2279, - "ip": "89.35.30.211", + "ips": [ + "89.35.30.211" + ], "tcp": true, "udp": true }, @@ -62871,7 +67548,9 @@ "region": "United Kingdom", "hostname": "uk2280.nordvpn.com", "number": 2280, - "ip": "89.35.30.207", + "ips": [ + "89.35.30.207" + ], "tcp": true, "udp": true }, @@ -62879,7 +67558,9 @@ "region": "United Kingdom", "hostname": "uk2281.nordvpn.com", "number": 2281, - "ip": "89.35.30.203", + "ips": [ + "89.35.30.203" + ], "tcp": true, "udp": true }, @@ -62887,7 +67568,9 @@ "region": "United Kingdom", "hostname": "uk2282.nordvpn.com", "number": 2282, - "ip": "89.35.30.199", + "ips": [ + "89.35.30.199" + ], "tcp": true, "udp": true }, @@ -62895,7 +67578,9 @@ "region": "United Kingdom", "hostname": "uk2283.nordvpn.com", "number": 2283, - "ip": "89.35.30.195", + "ips": [ + "89.35.30.195" + ], "tcp": true, "udp": true }, @@ -62903,7 +67588,9 @@ "region": "United Kingdom", "hostname": "uk2284.nordvpn.com", "number": 2284, - "ip": "89.35.30.191", + "ips": [ + "89.35.30.191" + ], "tcp": true, "udp": true }, @@ -62911,7 +67598,9 @@ "region": "United Kingdom", "hostname": "uk2285.nordvpn.com", "number": 2285, - "ip": "89.35.30.187", + "ips": [ + "89.35.30.187" + ], "tcp": true, "udp": true }, @@ -62919,7 +67608,9 @@ "region": "United Kingdom", "hostname": "uk2286.nordvpn.com", "number": 2286, - "ip": "89.35.30.183", + "ips": [ + "89.35.30.183" + ], "tcp": true, "udp": true }, @@ -62927,7 +67618,9 @@ "region": "United Kingdom", "hostname": "uk2287.nordvpn.com", "number": 2287, - "ip": "89.35.30.179", + "ips": [ + "89.35.30.179" + ], "tcp": true, "udp": true }, @@ -62935,7 +67628,9 @@ "region": "United Kingdom", "hostname": "uk2288.nordvpn.com", "number": 2288, - "ip": "109.70.150.247", + "ips": [ + "109.70.150.247" + ], "tcp": true, "udp": true }, @@ -62943,7 +67638,9 @@ "region": "United Kingdom", "hostname": "uk2289.nordvpn.com", "number": 2289, - "ip": "109.70.150.243", + "ips": [ + "109.70.150.243" + ], "tcp": true, "udp": true }, @@ -62951,7 +67648,9 @@ "region": "United Kingdom", "hostname": "uk2290.nordvpn.com", "number": 2290, - "ip": "109.70.150.239", + "ips": [ + "109.70.150.239" + ], "tcp": true, "udp": true }, @@ -62959,7 +67658,9 @@ "region": "United Kingdom", "hostname": "uk2291.nordvpn.com", "number": 2291, - "ip": "109.70.150.235", + "ips": [ + "109.70.150.235" + ], "tcp": true, "udp": true }, @@ -62967,7 +67668,9 @@ "region": "United Kingdom", "hostname": "uk2292.nordvpn.com", "number": 2292, - "ip": "109.70.150.231", + "ips": [ + "109.70.150.231" + ], "tcp": true, "udp": true }, @@ -62975,7 +67678,9 @@ "region": "United Kingdom", "hostname": "uk2293.nordvpn.com", "number": 2293, - "ip": "109.70.150.227", + "ips": [ + "109.70.150.227" + ], "tcp": true, "udp": true }, @@ -62983,7 +67688,9 @@ "region": "United Kingdom", "hostname": "uk2294.nordvpn.com", "number": 2294, - "ip": "109.70.150.223", + "ips": [ + "109.70.150.223" + ], "tcp": true, "udp": true }, @@ -62991,7 +67698,9 @@ "region": "United Kingdom", "hostname": "uk2295.nordvpn.com", "number": 2295, - "ip": "109.70.150.219", + "ips": [ + "109.70.150.219" + ], "tcp": true, "udp": true }, @@ -62999,7 +67708,9 @@ "region": "United Kingdom", "hostname": "uk2296.nordvpn.com", "number": 2296, - "ip": "109.70.150.195", + "ips": [ + "109.70.150.195" + ], "tcp": true, "udp": true }, @@ -63007,7 +67718,9 @@ "region": "United Kingdom", "hostname": "uk2297.nordvpn.com", "number": 2297, - "ip": "109.70.150.215", + "ips": [ + "109.70.150.215" + ], "tcp": true, "udp": true }, @@ -63015,7 +67728,9 @@ "region": "United Kingdom", "hostname": "uk2298.nordvpn.com", "number": 2298, - "ip": "109.70.150.211", + "ips": [ + "109.70.150.211" + ], "tcp": true, "udp": true }, @@ -63023,7 +67738,9 @@ "region": "United Kingdom", "hostname": "uk2299.nordvpn.com", "number": 2299, - "ip": "109.70.150.207", + "ips": [ + "109.70.150.207" + ], "tcp": true, "udp": true }, @@ -63031,7 +67748,9 @@ "region": "United Kingdom", "hostname": "uk2300.nordvpn.com", "number": 2300, - "ip": "109.70.150.203", + "ips": [ + "109.70.150.203" + ], "tcp": true, "udp": true }, @@ -63039,7 +67758,9 @@ "region": "United Kingdom", "hostname": "uk2301.nordvpn.com", "number": 2301, - "ip": "109.70.150.199", + "ips": [ + "109.70.150.199" + ], "tcp": true, "udp": true }, @@ -63047,7 +67768,9 @@ "region": "United Kingdom", "hostname": "uk2302.nordvpn.com", "number": 2302, - "ip": "109.70.150.191", + "ips": [ + "109.70.150.191" + ], "tcp": true, "udp": true }, @@ -63055,7 +67778,9 @@ "region": "United Kingdom", "hostname": "uk2303.nordvpn.com", "number": 2303, - "ip": "109.70.150.159", + "ips": [ + "109.70.150.159" + ], "tcp": true, "udp": true }, @@ -63063,7 +67788,9 @@ "region": "United Kingdom", "hostname": "uk2304.nordvpn.com", "number": 2304, - "ip": "109.70.150.155", + "ips": [ + "109.70.150.155" + ], "tcp": true, "udp": true }, @@ -63071,7 +67798,9 @@ "region": "United Kingdom", "hostname": "uk2305.nordvpn.com", "number": 2305, - "ip": "109.70.150.151", + "ips": [ + "109.70.150.151" + ], "tcp": true, "udp": true }, @@ -63079,7 +67808,9 @@ "region": "United Kingdom", "hostname": "uk2306.nordvpn.com", "number": 2306, - "ip": "109.70.150.146", + "ips": [ + "109.70.150.146" + ], "tcp": true, "udp": true }, @@ -63087,7 +67818,9 @@ "region": "United Kingdom", "hostname": "uk2307.nordvpn.com", "number": 2307, - "ip": "109.70.150.138", + "ips": [ + "109.70.150.138" + ], "tcp": true, "udp": true }, @@ -63095,7 +67828,9 @@ "region": "United Kingdom", "hostname": "uk2308.nordvpn.com", "number": 2308, - "ip": "109.70.150.142", + "ips": [ + "109.70.150.142" + ], "tcp": true, "udp": true }, @@ -63103,7 +67838,9 @@ "region": "United Kingdom", "hostname": "uk2309.nordvpn.com", "number": 2309, - "ip": "109.70.150.163", + "ips": [ + "109.70.150.163" + ], "tcp": true, "udp": true }, @@ -63111,7 +67848,9 @@ "region": "United Kingdom", "hostname": "uk2310.nordvpn.com", "number": 2310, - "ip": "109.70.150.167", + "ips": [ + "109.70.150.167" + ], "tcp": true, "udp": true }, @@ -63119,7 +67858,9 @@ "region": "United Kingdom", "hostname": "uk2311.nordvpn.com", "number": 2311, - "ip": "109.70.150.171", + "ips": [ + "109.70.150.171" + ], "tcp": true, "udp": true }, @@ -63127,7 +67868,9 @@ "region": "United Kingdom", "hostname": "uk2312.nordvpn.com", "number": 2312, - "ip": "109.70.150.175", + "ips": [ + "109.70.150.175" + ], "tcp": true, "udp": true }, @@ -63135,7 +67878,9 @@ "region": "United Kingdom", "hostname": "uk2313.nordvpn.com", "number": 2313, - "ip": "109.70.150.179", + "ips": [ + "109.70.150.179" + ], "tcp": true, "udp": true }, @@ -63143,7 +67888,9 @@ "region": "United Kingdom", "hostname": "uk2314.nordvpn.com", "number": 2314, - "ip": "109.70.150.183", + "ips": [ + "109.70.150.183" + ], "tcp": true, "udp": true }, @@ -63151,7 +67898,9 @@ "region": "United Kingdom", "hostname": "uk2315.nordvpn.com", "number": 2315, - "ip": "109.70.150.187", + "ips": [ + "109.70.150.187" + ], "tcp": true, "udp": true }, @@ -63159,7 +67908,9 @@ "region": "United Kingdom", "hostname": "uk2316.nordvpn.com", "number": 2316, - "ip": "109.70.150.134", + "ips": [ + "109.70.150.134" + ], "tcp": true, "udp": true }, @@ -63167,7 +67918,9 @@ "region": "United Kingdom", "hostname": "uk2317.nordvpn.com", "number": 2317, - "ip": "109.70.150.130", + "ips": [ + "109.70.150.130" + ], "tcp": true, "udp": true }, @@ -63175,7 +67928,9 @@ "region": "United Kingdom", "hostname": "uk2318.nordvpn.com", "number": 2318, - "ip": "109.70.150.125", + "ips": [ + "109.70.150.125" + ], "tcp": true, "udp": true }, @@ -63183,7 +67938,9 @@ "region": "United Kingdom", "hostname": "uk2319.nordvpn.com", "number": 2319, - "ip": "109.70.150.121", + "ips": [ + "109.70.150.121" + ], "tcp": true, "udp": true }, @@ -63191,7 +67948,9 @@ "region": "United Kingdom", "hostname": "uk2320.nordvpn.com", "number": 2320, - "ip": "109.70.150.117", + "ips": [ + "109.70.150.117" + ], "tcp": true, "udp": true }, @@ -63199,7 +67958,9 @@ "region": "United Kingdom", "hostname": "uk2321.nordvpn.com", "number": 2321, - "ip": "109.70.150.113", + "ips": [ + "109.70.150.113" + ], "tcp": true, "udp": true }, @@ -63207,7 +67968,9 @@ "region": "United Kingdom", "hostname": "uk2322.nordvpn.com", "number": 2322, - "ip": "109.70.150.109", + "ips": [ + "109.70.150.109" + ], "tcp": true, "udp": true }, @@ -63215,7 +67978,9 @@ "region": "United Kingdom", "hostname": "uk2323.nordvpn.com", "number": 2323, - "ip": "109.70.150.101", + "ips": [ + "109.70.150.101" + ], "tcp": true, "udp": true }, @@ -63223,7 +67988,9 @@ "region": "United Kingdom", "hostname": "uk2324.nordvpn.com", "number": 2324, - "ip": "109.70.150.105", + "ips": [ + "109.70.150.105" + ], "tcp": true, "udp": true }, @@ -63231,7 +67998,9 @@ "region": "United Kingdom", "hostname": "uk2325.nordvpn.com", "number": 2325, - "ip": "109.70.150.251", + "ips": [ + "109.70.150.251" + ], "tcp": true, "udp": true }, @@ -63239,7 +68008,9 @@ "region": "United Kingdom", "hostname": "uk2328.nordvpn.com", "number": 2328, - "ip": "109.70.150.89", + "ips": [ + "109.70.150.89" + ], "tcp": true, "udp": true }, @@ -63247,7 +68018,9 @@ "region": "United Kingdom", "hostname": "uk2329.nordvpn.com", "number": 2329, - "ip": "109.70.150.81", + "ips": [ + "109.70.150.81" + ], "tcp": true, "udp": true }, @@ -63255,7 +68028,9 @@ "region": "United Kingdom", "hostname": "uk2330.nordvpn.com", "number": 2330, - "ip": "109.70.150.85", + "ips": [ + "109.70.150.85" + ], "tcp": true, "udp": true }, @@ -63263,7 +68038,1709 @@ "region": "United Kingdom", "hostname": "uk2331.nordvpn.com", "number": 2331, - "ip": "109.70.150.77", + "ips": [ + "109.70.150.77" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2332.nordvpn.com", + "number": 2332, + "ips": [ + "185.59.221.251" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2333.nordvpn.com", + "number": 2333, + "ips": [ + "138.199.63.162" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2334.nordvpn.com", + "number": 2334, + "ips": [ + "194.35.232.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2335.nordvpn.com", + "number": 2335, + "ips": [ + "194.35.232.13" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2336.nordvpn.com", + "number": 2336, + "ips": [ + "194.35.232.24" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2337.nordvpn.com", + "number": 2337, + "ips": [ + "194.35.232.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2338.nordvpn.com", + "number": 2338, + "ips": [ + "194.35.232.46" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2339.nordvpn.com", + "number": 2339, + "ips": [ + "194.35.232.57" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2340.nordvpn.com", + "number": 2340, + "ips": [ + "194.35.232.68" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2341.nordvpn.com", + "number": 2341, + "ips": [ + "194.35.232.79" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2342.nordvpn.com", + "number": 2342, + "ips": [ + "194.35.232.90" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2343.nordvpn.com", + "number": 2343, + "ips": [ + "194.35.232.101" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2344.nordvpn.com", + "number": 2344, + "ips": [ + "194.35.232.112" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2345.nordvpn.com", + "number": 2345, + "ips": [ + "194.35.232.123" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2346.nordvpn.com", + "number": 2346, + "ips": [ + "194.35.232.134" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2347.nordvpn.com", + "number": 2347, + "ips": [ + "194.35.232.145" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2348.nordvpn.com", + "number": 2348, + "ips": [ + "194.35.232.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2349.nordvpn.com", + "number": 2349, + "ips": [ + "194.35.232.165" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2350.nordvpn.com", + "number": 2350, + "ips": [ + "194.35.232.175" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2351.nordvpn.com", + "number": 2351, + "ips": [ + "194.35.232.185" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2352.nordvpn.com", + "number": 2352, + "ips": [ + "194.35.232.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2353.nordvpn.com", + "number": 2353, + "ips": [ + "194.35.232.205" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2354.nordvpn.com", + "number": 2354, + "ips": [ + "194.35.232.215" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2355.nordvpn.com", + "number": 2355, + "ips": [ + "194.35.232.225" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2356.nordvpn.com", + "number": 2356, + "ips": [ + "194.35.232.235" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2357.nordvpn.com", + "number": 2357, + "ips": [ + "194.35.232.245" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2359.nordvpn.com", + "number": 2359, + "ips": [ + "5.101.171.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2360.nordvpn.com", + "number": 2360, + "ips": [ + "185.17.27.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2361.nordvpn.com", + "number": 2361, + "ips": [ + "178.159.9.83" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2362.nordvpn.com", + "number": 2362, + "ips": [ + "77.74.192.227" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2363.nordvpn.com", + "number": 2363, + "ips": [ + "37.9.58.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2364.nordvpn.com", + "number": 2364, + "ips": [ + "5.101.138.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2365.nordvpn.com", + "number": 2365, + "ips": [ + "5.101.143.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2366.nordvpn.com", + "number": 2366, + "ips": [ + "5.101.168.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2367.nordvpn.com", + "number": 2367, + "ips": [ + "5.101.171.163" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2368.nordvpn.com", + "number": 2368, + "ips": [ + "94.46.185.115" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2369.nordvpn.com", + "number": 2369, + "ips": [ + "94.46.195.147" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2370.nordvpn.com", + "number": 2370, + "ips": [ + "94.46.195.243" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2371.nordvpn.com", + "number": 2371, + "ips": [ + "94.46.192.99" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2372.nordvpn.com", + "number": 2372, + "ips": [ + "94.46.187.179" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2373.nordvpn.com", + "number": 2373, + "ips": [ + "94.46.222.147" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2374.nordvpn.com", + "number": 2374, + "ips": [ + "94.46.185.163" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2375.nordvpn.com", + "number": 2375, + "ips": [ + "94.46.185.147" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2376.nordvpn.com", + "number": 2376, + "ips": [ + "94.46.194.211" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2377.nordvpn.com", + "number": 2377, + "ips": [ + "94.46.222.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2378.nordvpn.com", + "number": 2378, + "ips": [ + "94.46.245.211" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2379.nordvpn.com", + "number": 2379, + "ips": [ + "94.229.73.147" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2380.nordvpn.com", + "number": 2380, + "ips": [ + "94.229.76.195" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2382.nordvpn.com", + "number": 2382, + "ips": [ + "138.199.63.216" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2383.nordvpn.com", + "number": 2383, + "ips": [ + "138.199.63.228" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2384.nordvpn.com", + "number": 2384, + "ips": [ + "103.214.45.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2385.nordvpn.com", + "number": 2385, + "ips": [ + "103.214.45.12" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2386.nordvpn.com", + "number": 2386, + "ips": [ + "103.214.45.22" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2387.nordvpn.com", + "number": 2387, + "ips": [ + "103.214.45.32" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2388.nordvpn.com", + "number": 2388, + "ips": [ + "103.214.45.42" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2389.nordvpn.com", + "number": 2389, + "ips": [ + "103.214.45.52" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2390.nordvpn.com", + "number": 2390, + "ips": [ + "103.214.45.62" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2391.nordvpn.com", + "number": 2391, + "ips": [ + "103.214.45.72" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2392.nordvpn.com", + "number": 2392, + "ips": [ + "103.214.45.82" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2393.nordvpn.com", + "number": 2393, + "ips": [ + "103.214.45.92" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2394.nordvpn.com", + "number": 2394, + "ips": [ + "103.214.45.102" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2395.nordvpn.com", + "number": 2395, + "ips": [ + "103.214.45.112" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2396.nordvpn.com", + "number": 2396, + "ips": [ + "103.214.45.122" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2397.nordvpn.com", + "number": 2397, + "ips": [ + "103.214.45.132" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2398.nordvpn.com", + "number": 2398, + "ips": [ + "103.214.45.142" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2399.nordvpn.com", + "number": 2399, + "ips": [ + "103.214.45.152" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2400.nordvpn.com", + "number": 2400, + "ips": [ + "103.214.45.162" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2401.nordvpn.com", + "number": 2401, + "ips": [ + "103.214.45.172" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2402.nordvpn.com", + "number": 2402, + "ips": [ + "103.214.45.182" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2403.nordvpn.com", + "number": 2403, + "ips": [ + "103.214.45.192" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2404.nordvpn.com", + "number": 2404, + "ips": [ + "103.214.45.202" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2405.nordvpn.com", + "number": 2405, + "ips": [ + "103.214.45.212" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2406.nordvpn.com", + "number": 2406, + "ips": [ + "103.214.45.222" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2407.nordvpn.com", + "number": 2407, + "ips": [ + "103.214.45.233" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2408.nordvpn.com", + "number": 2408, + "ips": [ + "103.214.45.244" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2409.nordvpn.com", + "number": 2409, + "ips": [ + "103.219.20.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2410.nordvpn.com", + "number": 2410, + "ips": [ + "103.219.20.13" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2411.nordvpn.com", + "number": 2411, + "ips": [ + "103.219.20.24" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2412.nordvpn.com", + "number": 2412, + "ips": [ + "103.219.20.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2413.nordvpn.com", + "number": 2413, + "ips": [ + "103.219.20.46" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2414.nordvpn.com", + "number": 2414, + "ips": [ + "103.219.20.57" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2415.nordvpn.com", + "number": 2415, + "ips": [ + "103.219.20.68" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2416.nordvpn.com", + "number": 2416, + "ips": [ + "103.219.20.79" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2417.nordvpn.com", + "number": 2417, + "ips": [ + "103.219.20.90" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2418.nordvpn.com", + "number": 2418, + "ips": [ + "103.219.20.101" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2419.nordvpn.com", + "number": 2419, + "ips": [ + "103.219.20.112" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2420.nordvpn.com", + "number": 2420, + "ips": [ + "103.219.20.123" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2421.nordvpn.com", + "number": 2421, + "ips": [ + "103.219.20.134" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2422.nordvpn.com", + "number": 2422, + "ips": [ + "103.219.20.145" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2423.nordvpn.com", + "number": 2423, + "ips": [ + "103.219.20.156" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2424.nordvpn.com", + "number": 2424, + "ips": [ + "103.219.20.167" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2425.nordvpn.com", + "number": 2425, + "ips": [ + "103.219.20.178" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2426.nordvpn.com", + "number": 2426, + "ips": [ + "103.219.20.189" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2427.nordvpn.com", + "number": 2427, + "ips": [ + "103.219.20.200" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2428.nordvpn.com", + "number": 2428, + "ips": [ + "103.219.20.211" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2429.nordvpn.com", + "number": 2429, + "ips": [ + "103.219.20.222" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2430.nordvpn.com", + "number": 2430, + "ips": [ + "103.219.20.233" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2431.nordvpn.com", + "number": 2431, + "ips": [ + "103.219.20.244" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2432.nordvpn.com", + "number": 2432, + "ips": [ + "188.212.154.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2433.nordvpn.com", + "number": 2433, + "ips": [ + "188.212.154.51" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2434.nordvpn.com", + "number": 2434, + "ips": [ + "188.212.154.64" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2435.nordvpn.com", + "number": 2435, + "ips": [ + "188.212.154.77" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2436.nordvpn.com", + "number": 2436, + "ips": [ + "188.212.154.90" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2437.nordvpn.com", + "number": 2437, + "ips": [ + "188.212.154.103" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2438.nordvpn.com", + "number": 2438, + "ips": [ + "188.212.154.116" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2440.nordvpn.com", + "number": 2440, + "ips": [ + "188.212.154.142" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2441.nordvpn.com", + "number": 2441, + "ips": [ + "188.212.154.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2442.nordvpn.com", + "number": 2442, + "ips": [ + "188.212.154.168" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2443.nordvpn.com", + "number": 2443, + "ips": [ + "188.212.154.181" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2444.nordvpn.com", + "number": 2444, + "ips": [ + "188.212.154.194" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2445.nordvpn.com", + "number": 2445, + "ips": [ + "188.212.154.207" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2446.nordvpn.com", + "number": 2446, + "ips": [ + "188.212.154.220" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2447.nordvpn.com", + "number": 2447, + "ips": [ + "188.212.154.233" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2448.nordvpn.com", + "number": 2448, + "ips": [ + "188.212.154.246" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2449.nordvpn.com", + "number": 2449, + "ips": [ + "188.240.56.6" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2450.nordvpn.com", + "number": 2450, + "ips": [ + "188.240.56.19" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2451.nordvpn.com", + "number": 2451, + "ips": [ + "188.240.56.32" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2452.nordvpn.com", + "number": 2452, + "ips": [ + "188.240.56.45" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2453.nordvpn.com", + "number": 2453, + "ips": [ + "188.240.56.58" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2454.nordvpn.com", + "number": 2454, + "ips": [ + "188.240.56.71" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2455.nordvpn.com", + "number": 2455, + "ips": [ + "188.240.56.84" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2456.nordvpn.com", + "number": 2456, + "ips": [ + "188.240.56.97" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2457.nordvpn.com", + "number": 2457, + "ips": [ + "188.240.56.110" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2458.nordvpn.com", + "number": 2458, + "ips": [ + "188.240.56.123" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2459.nordvpn.com", + "number": 2459, + "ips": [ + "188.240.56.136" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2460.nordvpn.com", + "number": 2460, + "ips": [ + "188.240.56.149" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2461.nordvpn.com", + "number": 2461, + "ips": [ + "188.240.56.162" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2462.nordvpn.com", + "number": 2462, + "ips": [ + "188.240.56.175" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2463.nordvpn.com", + "number": 2463, + "ips": [ + "188.240.56.188" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2464.nordvpn.com", + "number": 2464, + "ips": [ + "188.240.56.201" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2465.nordvpn.com", + "number": 2465, + "ips": [ + "188.240.56.214" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2466.nordvpn.com", + "number": 2466, + "ips": [ + "188.240.56.227" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2467.nordvpn.com", + "number": 2467, + "ips": [ + "188.240.56.241" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2468.nordvpn.com", + "number": 2468, + "ips": [ + "188.212.154.130" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2470.nordvpn.com", + "number": 2470, + "ips": [ + "188.241.157.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2471.nordvpn.com", + "number": 2471, + "ips": [ + "188.241.157.40" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2472.nordvpn.com", + "number": 2472, + "ips": [ + "188.241.157.42" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2473.nordvpn.com", + "number": 2473, + "ips": [ + "188.241.157.44" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2474.nordvpn.com", + "number": 2474, + "ips": [ + "188.241.157.46" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2475.nordvpn.com", + "number": 2475, + "ips": [ + "188.241.157.48" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2476.nordvpn.com", + "number": 2476, + "ips": [ + "188.241.157.50" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2477.nordvpn.com", + "number": 2477, + "ips": [ + "188.241.157.52" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2478.nordvpn.com", + "number": 2478, + "ips": [ + "188.241.157.54" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2479.nordvpn.com", + "number": 2479, + "ips": [ + "188.241.157.56" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2480.nordvpn.com", + "number": 2480, + "ips": [ + "188.241.157.58" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2481.nordvpn.com", + "number": 2481, + "ips": [ + "188.241.157.60" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2482.nordvpn.com", + "number": 2482, + "ips": [ + "188.241.157.62" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2483.nordvpn.com", + "number": 2483, + "ips": [ + "188.241.157.64" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2484.nordvpn.com", + "number": 2484, + "ips": [ + "188.241.157.66" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2485.nordvpn.com", + "number": 2485, + "ips": [ + "188.241.157.68" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2486.nordvpn.com", + "number": 2486, + "ips": [ + "188.241.157.70" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2487.nordvpn.com", + "number": 2487, + "ips": [ + "188.241.157.72" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2488.nordvpn.com", + "number": 2488, + "ips": [ + "188.241.157.74" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2489.nordvpn.com", + "number": 2489, + "ips": [ + "188.241.157.76" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2490.nordvpn.com", + "number": 2490, + "ips": [ + "188.241.157.78" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2491.nordvpn.com", + "number": 2491, + "ips": [ + "188.241.157.80" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2492.nordvpn.com", + "number": 2492, + "ips": [ + "188.241.157.82" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2493.nordvpn.com", + "number": 2493, + "ips": [ + "188.241.157.84" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2494.nordvpn.com", + "number": 2494, + "ips": [ + "188.241.157.86" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2495.nordvpn.com", + "number": 2495, + "ips": [ + "188.241.157.88" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2496.nordvpn.com", + "number": 2496, + "ips": [ + "188.241.157.90" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2497.nordvpn.com", + "number": 2497, + "ips": [ + "188.241.157.92" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2498.nordvpn.com", + "number": 2498, + "ips": [ + "188.241.157.94" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2499.nordvpn.com", + "number": 2499, + "ips": [ + "188.241.157.96" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2500.nordvpn.com", + "number": 2500, + "ips": [ + "188.241.157.98" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2501.nordvpn.com", + "number": 2501, + "ips": [ + "188.241.157.100" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2502.nordvpn.com", + "number": 2502, + "ips": [ + "188.241.157.102" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2503.nordvpn.com", + "number": 2503, + "ips": [ + "188.241.157.104" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2504.nordvpn.com", + "number": 2504, + "ips": [ + "188.241.157.106" + ], + "tcp": true, + "udp": true + }, + { + "region": "United Kingdom", + "hostname": "uk2505.nordvpn.com", + "number": 2505, + "ips": [ + "188.241.157.108" + ], "tcp": true, "udp": true }, @@ -63271,7 +69748,9 @@ "region": "United States", "hostname": "us-ca36.nordvpn.com", "number": 36, - "ip": "192.96.202.4", + "ips": [ + "192.96.202.4" + ], "tcp": true, "udp": true }, @@ -63279,7 +69758,9 @@ "region": "United States", "hostname": "us-ca37.nordvpn.com", "number": 37, - "ip": "192.96.202.13", + "ips": [ + "192.96.202.13" + ], "tcp": true, "udp": true }, @@ -63287,7 +69768,9 @@ "region": "United States", "hostname": "us-ca38.nordvpn.com", "number": 38, - "ip": "92.119.177.11", + "ips": [ + "92.119.177.11" + ], "tcp": true, "udp": true }, @@ -63295,7 +69778,9 @@ "region": "United States", "hostname": "us-ca39.nordvpn.com", "number": 39, - "ip": "92.119.177.12", + "ips": [ + "92.119.177.12" + ], "tcp": true, "udp": true }, @@ -63303,7 +69788,9 @@ "region": "United States", "hostname": "us-ca40.nordvpn.com", "number": 40, - "ip": "45.152.180.115", + "ips": [ + "45.152.180.115" + ], "tcp": true, "udp": true }, @@ -63311,7 +69798,9 @@ "region": "United States", "hostname": "us-ca41.nordvpn.com", "number": 41, - "ip": "45.152.180.116", + "ips": [ + "45.152.180.116" + ], "tcp": true, "udp": true }, @@ -63319,7 +69808,9 @@ "region": "United States", "hostname": "us-ca46.nordvpn.com", "number": 46, - "ip": "91.132.137.139", + "ips": [ + "91.132.137.139" + ], "tcp": true, "udp": true }, @@ -63327,7 +69818,9 @@ "region": "United States", "hostname": "us-ca47.nordvpn.com", "number": 47, - "ip": "91.132.137.140", + "ips": [ + "91.132.137.140" + ], "tcp": true, "udp": true }, @@ -63335,7 +69828,9 @@ "region": "United States", "hostname": "us-ca56.nordvpn.com", "number": 56, - "ip": "185.244.215.83", + "ips": [ + "185.244.215.83" + ], "tcp": true, "udp": true }, @@ -63343,7 +69838,9 @@ "region": "United States", "hostname": "us-ca57.nordvpn.com", "number": 57, - "ip": "185.244.215.84", + "ips": [ + "185.244.215.84" + ], "tcp": true, "udp": true }, @@ -63351,7 +69848,9 @@ "region": "United States", "hostname": "us-ca60.nordvpn.com", "number": 60, - "ip": "87.101.95.179", + "ips": [ + "87.101.95.179" + ], "tcp": true, "udp": true }, @@ -63359,7 +69858,9 @@ "region": "United States", "hostname": "us-ca61.nordvpn.com", "number": 61, - "ip": "87.101.95.180", + "ips": [ + "87.101.95.180" + ], "tcp": true, "udp": true }, @@ -63367,7 +69868,9 @@ "region": "United States", "hostname": "us-ca62.nordvpn.com", "number": 62, - "ip": "217.138.206.51", + "ips": [ + "217.138.206.51" + ], "tcp": true, "udp": true }, @@ -63375,7 +69878,9 @@ "region": "United States", "hostname": "us-ca63.nordvpn.com", "number": 63, - "ip": "217.138.206.52", + "ips": [ + "217.138.206.52" + ], "tcp": true, "udp": true }, @@ -63383,7 +69888,9 @@ "region": "United States", "hostname": "us-ca64.nordvpn.com", "number": 64, - "ip": "176.113.72.227", + "ips": [ + "176.113.72.227" + ], "tcp": true, "udp": true }, @@ -63391,7 +69898,9 @@ "region": "United States", "hostname": "us-ca65.nordvpn.com", "number": 65, - "ip": "176.113.72.228", + "ips": [ + "176.113.72.228" + ], "tcp": true, "udp": true }, @@ -63399,7 +69908,9 @@ "region": "United States", "hostname": "us-ca66.nordvpn.com", "number": 66, - "ip": "212.103.48.59", + "ips": [ + "212.103.48.59" + ], "tcp": true, "udp": true }, @@ -63407,7 +69918,9 @@ "region": "United States", "hostname": "us-ca67.nordvpn.com", "number": 67, - "ip": "212.103.48.60", + "ips": [ + "212.103.48.60" + ], "tcp": true, "udp": true }, @@ -63415,7 +69928,9 @@ "region": "United States", "hostname": "us-ca68.nordvpn.com", "number": 68, - "ip": "212.103.48.235", + "ips": [ + "212.103.48.235" + ], "tcp": true, "udp": true }, @@ -63423,7 +69938,9 @@ "region": "United States", "hostname": "us-ca69.nordvpn.com", "number": 69, - "ip": "212.103.48.236", + "ips": [ + "212.103.48.236" + ], "tcp": true, "udp": true }, @@ -63431,7 +69948,9 @@ "region": "United States", "hostname": "us-ca70.nordvpn.com", "number": 70, - "ip": "212.103.48.227", + "ips": [ + "212.103.48.227" + ], "tcp": true, "udp": true }, @@ -63439,7 +69958,9 @@ "region": "United States", "hostname": "us-ca71.nordvpn.com", "number": 71, - "ip": "212.103.48.228", + "ips": [ + "212.103.48.228" + ], "tcp": true, "udp": true }, @@ -63447,7 +69968,9 @@ "region": "United States", "hostname": "us-ca72.nordvpn.com", "number": 72, - "ip": "185.232.22.11", + "ips": [ + "185.232.22.11" + ], "tcp": true, "udp": true }, @@ -63455,7 +69978,9 @@ "region": "United States", "hostname": "us-ca73.nordvpn.com", "number": 73, - "ip": "185.232.22.12", + "ips": [ + "185.232.22.12" + ], "tcp": true, "udp": true }, @@ -63463,7 +69988,9 @@ "region": "United States", "hostname": "us2722.nordvpn.com", "number": 2722, - "ip": "104.149.135.11", + "ips": [ + "104.149.135.11" + ], "tcp": true, "udp": true }, @@ -63471,7 +69998,9 @@ "region": "United States", "hostname": "us2723.nordvpn.com", "number": 2723, - "ip": "104.149.135.12", + "ips": [ + "104.149.135.12" + ], "tcp": true, "udp": true }, @@ -63479,7 +70008,9 @@ "region": "United States", "hostname": "us2852.nordvpn.com", "number": 2852, - "ip": "104.149.35.146", + "ips": [ + "104.149.35.146" + ], "tcp": true, "udp": true }, @@ -63487,7 +70018,9 @@ "region": "United States", "hostname": "us2853.nordvpn.com", "number": 2853, - "ip": "45.35.93.146", + "ips": [ + "45.35.93.146" + ], "tcp": true, "udp": true }, @@ -63495,7 +70028,9 @@ "region": "United States", "hostname": "us2862.nordvpn.com", "number": 2862, - "ip": "45.35.204.2", + "ips": [ + "45.35.204.2" + ], "tcp": true, "udp": true }, @@ -63503,7 +70038,9 @@ "region": "United States", "hostname": "us2900.nordvpn.com", "number": 2900, - "ip": "155.94.242.3", + "ips": [ + "155.94.242.3" + ], "tcp": true, "udp": true }, @@ -63511,7 +70048,9 @@ "region": "United States", "hostname": "us2901.nordvpn.com", "number": 2901, - "ip": "155.94.242.4", + "ips": [ + "155.94.242.4" + ], "tcp": true, "udp": true }, @@ -63519,7 +70058,9 @@ "region": "United States", "hostname": "us2902.nordvpn.com", "number": 2902, - "ip": "155.94.242.5", + "ips": [ + "155.94.242.5" + ], "tcp": true, "udp": true }, @@ -63527,7 +70068,9 @@ "region": "United States", "hostname": "us2903.nordvpn.com", "number": 2903, - "ip": "155.94.242.6", + "ips": [ + "155.94.242.6" + ], "tcp": true, "udp": true }, @@ -63535,7 +70078,9 @@ "region": "United States", "hostname": "us2904.nordvpn.com", "number": 2904, - "ip": "107.172.254.33", + "ips": [ + "107.172.254.33" + ], "tcp": true, "udp": true }, @@ -63543,7 +70088,9 @@ "region": "United States", "hostname": "us2905.nordvpn.com", "number": 2905, - "ip": "66.55.146.98", + "ips": [ + "66.55.146.98" + ], "tcp": true, "udp": true }, @@ -63551,7 +70098,9 @@ "region": "United States", "hostname": "us2906.nordvpn.com", "number": 2906, - "ip": "155.94.183.3", + "ips": [ + "155.94.183.3" + ], "tcp": true, "udp": true }, @@ -63559,7 +70108,9 @@ "region": "United States", "hostname": "us2907.nordvpn.com", "number": 2907, - "ip": "155.94.183.4", + "ips": [ + "155.94.183.4" + ], "tcp": true, "udp": true }, @@ -63567,7 +70118,9 @@ "region": "United States", "hostname": "us2908.nordvpn.com", "number": 2908, - "ip": "155.94.183.5", + "ips": [ + "155.94.183.5" + ], "tcp": true, "udp": true }, @@ -63575,7 +70128,9 @@ "region": "United States", "hostname": "us2909.nordvpn.com", "number": 2909, - "ip": "155.94.183.6", + "ips": [ + "155.94.183.6" + ], "tcp": true, "udp": true }, @@ -63583,7 +70138,9 @@ "region": "United States", "hostname": "us2910.nordvpn.com", "number": 2910, - "ip": "45.35.77.131", + "ips": [ + "45.35.77.131" + ], "tcp": true, "udp": true }, @@ -63591,7 +70148,9 @@ "region": "United States", "hostname": "us2911.nordvpn.com", "number": 2911, - "ip": "45.35.78.194", + "ips": [ + "45.35.78.194" + ], "tcp": true, "udp": true }, @@ -63599,7 +70158,9 @@ "region": "United States", "hostname": "us2912.nordvpn.com", "number": 2912, - "ip": "45.35.120.194", + "ips": [ + "45.35.120.194" + ], "tcp": true, "udp": true }, @@ -63607,7 +70168,9 @@ "region": "United States", "hostname": "us2913.nordvpn.com", "number": 2913, - "ip": "45.35.120.195", + "ips": [ + "45.35.120.195" + ], "tcp": true, "udp": true }, @@ -63615,7 +70178,9 @@ "region": "United States", "hostname": "us2914.nordvpn.com", "number": 2914, - "ip": "66.55.156.251", + "ips": [ + "66.55.156.251" + ], "tcp": true, "udp": true }, @@ -63623,7 +70188,9 @@ "region": "United States", "hostname": "us2916.nordvpn.com", "number": 2916, - "ip": "104.149.238.67", + "ips": [ + "104.149.238.67" + ], "tcp": true, "udp": true }, @@ -63631,7 +70198,9 @@ "region": "United States", "hostname": "us2917.nordvpn.com", "number": 2917, - "ip": "45.32.4.19", + "ips": [ + "45.32.4.19" + ], "tcp": true, "udp": true }, @@ -63639,7 +70208,9 @@ "region": "United States", "hostname": "us2918.nordvpn.com", "number": 2918, - "ip": "104.149.237.243", + "ips": [ + "104.149.237.243" + ], "tcp": true, "udp": true }, @@ -63647,7 +70218,9 @@ "region": "United States", "hostname": "us2919.nordvpn.com", "number": 2919, - "ip": "104.149.237.245", + "ips": [ + "104.149.237.245" + ], "tcp": true, "udp": true }, @@ -63655,7 +70228,9 @@ "region": "United States", "hostname": "us2920.nordvpn.com", "number": 2920, - "ip": "96.9.246.179", + "ips": [ + "96.9.246.179" + ], "tcp": true, "udp": true }, @@ -63663,7 +70238,9 @@ "region": "United States", "hostname": "us2921.nordvpn.com", "number": 2921, - "ip": "96.9.246.180", + "ips": [ + "96.9.246.180" + ], "tcp": true, "udp": true }, @@ -63671,7 +70248,9 @@ "region": "United States", "hostname": "us2922.nordvpn.com", "number": 2922, - "ip": "104.149.29.226", + "ips": [ + "104.149.29.226" + ], "tcp": true, "udp": true }, @@ -63679,7 +70258,9 @@ "region": "United States", "hostname": "us2923.nordvpn.com", "number": 2923, - "ip": "104.149.68.66", + "ips": [ + "104.149.68.66" + ], "tcp": true, "udp": true }, @@ -63687,7 +70268,9 @@ "region": "United States", "hostname": "us2924.nordvpn.com", "number": 2924, - "ip": "96.9.247.187", + "ips": [ + "96.9.247.187" + ], "tcp": true, "udp": true }, @@ -63695,7 +70278,9 @@ "region": "United States", "hostname": "us2925.nordvpn.com", "number": 2925, - "ip": "96.9.247.188", + "ips": [ + "96.9.247.188" + ], "tcp": true, "udp": true }, @@ -63703,7 +70288,9 @@ "region": "United States", "hostname": "us2926.nordvpn.com", "number": 2926, - "ip": "172.106.165.2", + "ips": [ + "172.106.165.2" + ], "tcp": true, "udp": true }, @@ -63711,7 +70298,9 @@ "region": "United States", "hostname": "us2927.nordvpn.com", "number": 2927, - "ip": "172.106.165.3", + "ips": [ + "172.106.165.3" + ], "tcp": true, "udp": true }, @@ -63719,7 +70308,9 @@ "region": "United States", "hostname": "us2928.nordvpn.com", "number": 2928, - "ip": "104.216.240.98", + "ips": [ + "104.216.240.98" + ], "tcp": true, "udp": true }, @@ -63727,7 +70318,9 @@ "region": "United States", "hostname": "us2929.nordvpn.com", "number": 2929, - "ip": "107.173.59.99", + "ips": [ + "107.173.59.99" + ], "tcp": true, "udp": true }, @@ -63735,7 +70328,9 @@ "region": "United States", "hostname": "us2930.nordvpn.com", "number": 2930, - "ip": "172.93.147.130", + "ips": [ + "172.93.147.130" + ], "tcp": true, "udp": true }, @@ -63743,7 +70338,9 @@ "region": "United States", "hostname": "us2931.nordvpn.com", "number": 2931, - "ip": "104.216.216.130", + "ips": [ + "104.216.216.130" + ], "tcp": true, "udp": true }, @@ -63751,7 +70348,9 @@ "region": "United States", "hostname": "us2932.nordvpn.com", "number": 2932, - "ip": "104.216.216.194", + "ips": [ + "104.216.216.194" + ], "tcp": true, "udp": true }, @@ -63759,7 +70358,9 @@ "region": "United States", "hostname": "us2933.nordvpn.com", "number": 2933, - "ip": "96.9.250.147", + "ips": [ + "96.9.250.147" + ], "tcp": true, "udp": true }, @@ -63767,7 +70368,9 @@ "region": "United States", "hostname": "us2934.nordvpn.com", "number": 2934, - "ip": "104.237.193.147", + "ips": [ + "104.237.193.147" + ], "tcp": true, "udp": true }, @@ -63775,15 +70378,9 @@ "region": "United States", "hostname": "us2935.nordvpn.com", "number": 2935, - "ip": "172.107.205.194", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us2936.nordvpn.com", - "number": 2936, - "ip": "38.39.199.2", + "ips": [ + "172.107.205.194" + ], "tcp": true, "udp": true }, @@ -63791,15 +70388,9 @@ "region": "United States", "hostname": "us2937.nordvpn.com", "number": 2937, - "ip": "108.61.144.67", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us2938.nordvpn.com", - "number": 2938, - "ip": "108.61.155.83", + "ips": [ + "108.61.144.67" + ], "tcp": true, "udp": true }, @@ -63807,7 +70398,9 @@ "region": "United States", "hostname": "us2939.nordvpn.com", "number": 2939, - "ip": "172.93.237.99", + "ips": [ + "172.93.237.99" + ], "tcp": true, "udp": true }, @@ -63815,7 +70408,9 @@ "region": "United States", "hostname": "us2940.nordvpn.com", "number": 2940, - "ip": "172.93.237.100", + "ips": [ + "172.93.237.100" + ], "tcp": true, "udp": true }, @@ -63823,7 +70418,9 @@ "region": "United States", "hostname": "us2941.nordvpn.com", "number": 2941, - "ip": "45.35.81.2", + "ips": [ + "45.35.81.2" + ], "tcp": true, "udp": true }, @@ -63831,7 +70428,9 @@ "region": "United States", "hostname": "us2942.nordvpn.com", "number": 2942, - "ip": "45.35.110.130", + "ips": [ + "45.35.110.130" + ], "tcp": true, "udp": true }, @@ -63839,7 +70438,9 @@ "region": "United States", "hostname": "us2943.nordvpn.com", "number": 2943, - "ip": "89.187.175.97", + "ips": [ + "89.187.175.97" + ], "tcp": true, "udp": true }, @@ -63847,7 +70448,9 @@ "region": "United States", "hostname": "us2944.nordvpn.com", "number": 2944, - "ip": "89.187.175.98", + "ips": [ + "89.187.175.98" + ], "tcp": true, "udp": true }, @@ -63855,7 +70458,9 @@ "region": "United States", "hostname": "us2945.nordvpn.com", "number": 2945, - "ip": "89.187.185.86", + "ips": [ + "89.187.185.86" + ], "tcp": true, "udp": true }, @@ -63863,7 +70468,9 @@ "region": "United States", "hostname": "us2946.nordvpn.com", "number": 2946, - "ip": "89.187.185.97", + "ips": [ + "89.187.185.97" + ], "tcp": true, "udp": true }, @@ -63871,7 +70478,9 @@ "region": "United States", "hostname": "us2947.nordvpn.com", "number": 2947, - "ip": "167.88.10.163", + "ips": [ + "167.88.10.163" + ], "tcp": true, "udp": true }, @@ -63879,7 +70488,9 @@ "region": "United States", "hostname": "us2948.nordvpn.com", "number": 2948, - "ip": "209.222.2.195", + "ips": [ + "209.222.2.195" + ], "tcp": true, "udp": true }, @@ -63887,7 +70498,9 @@ "region": "United States", "hostname": "us2949.nordvpn.com", "number": 2949, - "ip": "64.44.32.75", + "ips": [ + "64.44.32.75" + ], "tcp": true, "udp": true }, @@ -63895,7 +70508,19 @@ "region": "United States", "hostname": "us2950.nordvpn.com", "number": 2950, - "ip": "64.44.32.76", + "ips": [ + "64.44.32.76" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us2951.nordvpn.com", + "number": 2951, + "ips": [ + "45.35.84.2" + ], "tcp": true, "udp": true }, @@ -63903,7 +70528,9 @@ "region": "United States", "hostname": "us4735.nordvpn.com", "number": 4735, - "ip": "217.138.198.235", + "ips": [ + "217.138.198.235" + ], "tcp": true, "udp": true }, @@ -63911,7 +70538,9 @@ "region": "United States", "hostname": "us4950.nordvpn.com", "number": 4950, - "ip": "84.17.44.121", + "ips": [ + "84.17.44.121" + ], "tcp": true, "udp": true }, @@ -63919,7 +70548,9 @@ "region": "United States", "hostname": "us4951.nordvpn.com", "number": 4951, - "ip": "84.17.44.122", + "ips": [ + "84.17.44.122" + ], "tcp": true, "udp": true }, @@ -63927,7 +70558,9 @@ "region": "United States", "hostname": "us4952.nordvpn.com", "number": 4952, - "ip": "68.232.180.194", + "ips": [ + "68.232.180.194" + ], "tcp": true, "udp": true }, @@ -63935,7 +70568,9 @@ "region": "United States", "hostname": "us4953.nordvpn.com", "number": 4953, - "ip": "89.187.175.53", + "ips": [ + "89.187.175.53" + ], "tcp": true, "udp": true }, @@ -63943,7 +70578,9 @@ "region": "United States", "hostname": "us4954.nordvpn.com", "number": 4954, - "ip": "89.187.175.54", + "ips": [ + "89.187.175.54" + ], "tcp": true, "udp": true }, @@ -63951,7 +70588,9 @@ "region": "United States", "hostname": "us4955.nordvpn.com", "number": 4955, - "ip": "108.61.39.2", + "ips": [ + "108.61.39.2" + ], "tcp": true, "udp": true }, @@ -63959,7 +70598,9 @@ "region": "United States", "hostname": "us4956.nordvpn.com", "number": 4956, - "ip": "108.61.39.115", + "ips": [ + "108.61.39.115" + ], "tcp": true, "udp": true }, @@ -63967,7 +70608,9 @@ "region": "United States", "hostname": "us4957.nordvpn.com", "number": 4957, - "ip": "84.17.45.194", + "ips": [ + "84.17.45.194" + ], "tcp": true, "udp": true }, @@ -63975,7 +70618,9 @@ "region": "United States", "hostname": "us4958.nordvpn.com", "number": 4958, - "ip": "84.17.45.195", + "ips": [ + "84.17.45.195" + ], "tcp": true, "udp": true }, @@ -63983,7 +70628,9 @@ "region": "United States", "hostname": "us4959.nordvpn.com", "number": 4959, - "ip": "96.9.246.123", + "ips": [ + "96.9.246.123" + ], "tcp": true, "udp": true }, @@ -63991,7 +70638,9 @@ "region": "United States", "hostname": "us4960.nordvpn.com", "number": 4960, - "ip": "96.9.246.124", + "ips": [ + "96.9.246.124" + ], "tcp": true, "udp": true }, @@ -63999,7 +70648,9 @@ "region": "United States", "hostname": "us4961.nordvpn.com", "number": 4961, - "ip": "89.187.175.57", + "ips": [ + "89.187.175.57" + ], "tcp": true, "udp": true }, @@ -64007,7 +70658,9 @@ "region": "United States", "hostname": "us4962.nordvpn.com", "number": 4962, - "ip": "89.187.175.58", + "ips": [ + "89.187.175.58" + ], "tcp": true, "udp": true }, @@ -64015,7 +70668,9 @@ "region": "United States", "hostname": "us4963.nordvpn.com", "number": 4963, - "ip": "138.199.9.130", + "ips": [ + "138.199.9.130" + ], "tcp": true, "udp": true }, @@ -64023,7 +70678,9 @@ "region": "United States", "hostname": "us4964.nordvpn.com", "number": 4964, - "ip": "138.199.9.131", + "ips": [ + "138.199.9.131" + ], "tcp": true, "udp": true }, @@ -64031,7 +70688,9 @@ "region": "United States", "hostname": "us4965.nordvpn.com", "number": 4965, - "ip": "172.93.146.171", + "ips": [ + "172.93.146.171" + ], "tcp": true, "udp": true }, @@ -64039,7 +70698,9 @@ "region": "United States", "hostname": "us4966.nordvpn.com", "number": 4966, - "ip": "172.93.146.172", + "ips": [ + "172.93.146.172" + ], "tcp": true, "udp": true }, @@ -64047,7 +70708,9 @@ "region": "United States", "hostname": "us4967.nordvpn.com", "number": 4967, - "ip": "212.102.40.54", + "ips": [ + "212.102.40.54" + ], "tcp": true, "udp": true }, @@ -64055,7 +70718,9 @@ "region": "United States", "hostname": "us4968.nordvpn.com", "number": 4968, - "ip": "212.102.40.55", + "ips": [ + "212.102.40.55" + ], "tcp": true, "udp": true }, @@ -64063,7 +70728,9 @@ "region": "United States", "hostname": "us4969.nordvpn.com", "number": 4969, - "ip": "138.199.9.133", + "ips": [ + "138.199.9.133" + ], "tcp": true, "udp": true }, @@ -64071,7 +70738,9 @@ "region": "United States", "hostname": "us4970.nordvpn.com", "number": 4970, - "ip": "138.199.9.134", + "ips": [ + "138.199.9.134" + ], "tcp": true, "udp": true }, @@ -64079,7 +70748,9 @@ "region": "United States", "hostname": "us4971.nordvpn.com", "number": 4971, - "ip": "172.93.146.187", + "ips": [ + "172.93.146.187" + ], "tcp": true, "udp": true }, @@ -64087,7 +70758,9 @@ "region": "United States", "hostname": "us4972.nordvpn.com", "number": 4972, - "ip": "172.93.146.188", + "ips": [ + "172.93.146.188" + ], "tcp": true, "udp": true }, @@ -64095,7 +70768,9 @@ "region": "United States", "hostname": "us4973.nordvpn.com", "number": 4973, - "ip": "107.173.69.187", + "ips": [ + "107.173.69.187" + ], "tcp": true, "udp": true }, @@ -64103,7 +70778,69 @@ "region": "United States", "hostname": "us4974.nordvpn.com", "number": 4974, - "ip": "107.173.69.188", + "ips": [ + "107.173.69.188" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us4975.nordvpn.com", + "number": 4975, + "ips": [ + "143.244.49.136" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us4976.nordvpn.com", + "number": 4976, + "ips": [ + "143.244.49.137" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us4977.nordvpn.com", + "number": 4977, + "ips": [ + "172.93.230.107" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us4978.nordvpn.com", + "number": 4978, + "ips": [ + "172.93.230.108" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us4979.nordvpn.com", + "number": 4979, + "ips": [ + "107.173.59.139" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us4980.nordvpn.com", + "number": 4980, + "ips": [ + "212.102.40.57" + ], "tcp": true, "udp": true }, @@ -64111,7 +70848,9 @@ "region": "United States", "hostname": "us5055.nordvpn.com", "number": 5055, - "ip": "89.187.175.2", + "ips": [ + "89.187.175.2" + ], "tcp": true, "udp": true }, @@ -64119,7 +70858,9 @@ "region": "United States", "hostname": "us5057.nordvpn.com", "number": 5057, - "ip": "217.138.208.211", + "ips": [ + "217.138.208.211" + ], "tcp": true, "udp": true }, @@ -64127,7 +70868,9 @@ "region": "United States", "hostname": "us5058.nordvpn.com", "number": 5058, - "ip": "217.138.208.219", + "ips": [ + "217.138.208.219" + ], "tcp": true, "udp": true }, @@ -64135,7 +70878,9 @@ "region": "United States", "hostname": "us5059.nordvpn.com", "number": 5059, - "ip": "217.138.208.139", + "ips": [ + "217.138.208.139" + ], "tcp": true, "udp": true }, @@ -64143,7 +70888,9 @@ "region": "United States", "hostname": "us5060.nordvpn.com", "number": 5060, - "ip": "217.138.208.147", + "ips": [ + "217.138.208.147" + ], "tcp": true, "udp": true }, @@ -64151,7 +70898,9 @@ "region": "United States", "hostname": "us5063.nordvpn.com", "number": 5063, - "ip": "185.245.87.59", + "ips": [ + "185.245.87.59" + ], "tcp": true, "udp": true }, @@ -64159,7 +70908,9 @@ "region": "United States", "hostname": "us5064.nordvpn.com", "number": 5064, - "ip": "195.206.104.156", + "ips": [ + "195.206.104.156" + ], "tcp": true, "udp": true }, @@ -64167,7 +70918,9 @@ "region": "United States", "hostname": "us5066.nordvpn.com", "number": 5066, - "ip": "212.102.45.2", + "ips": [ + "212.102.45.2" + ], "tcp": true, "udp": true }, @@ -64175,7 +70928,9 @@ "region": "United States", "hostname": "us5067.nordvpn.com", "number": 5067, - "ip": "212.102.45.7", + "ips": [ + "212.102.45.7" + ], "tcp": true, "udp": true }, @@ -64183,7 +70938,9 @@ "region": "United States", "hostname": "us5068.nordvpn.com", "number": 5068, - "ip": "212.102.45.12", + "ips": [ + "212.102.45.12" + ], "tcp": true, "udp": true }, @@ -64191,7 +70948,9 @@ "region": "United States", "hostname": "us5069.nordvpn.com", "number": 5069, - "ip": "212.102.45.17", + "ips": [ + "212.102.45.17" + ], "tcp": true, "udp": true }, @@ -64199,7 +70958,9 @@ "region": "United States", "hostname": "us5070.nordvpn.com", "number": 5070, - "ip": "212.102.45.22", + "ips": [ + "212.102.45.22" + ], "tcp": true, "udp": true }, @@ -64207,7 +70968,19 @@ "region": "United States", "hostname": "us5071.nordvpn.com", "number": 5071, - "ip": "212.102.45.27", + "ips": [ + "212.102.45.27" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us5072.nordvpn.com", + "number": 5072, + "ips": [ + "212.102.45.32" + ], "tcp": true, "udp": true }, @@ -64215,7 +70988,9 @@ "region": "United States", "hostname": "us5073.nordvpn.com", "number": 5073, - "ip": "212.102.45.37", + "ips": [ + "212.102.45.37" + ], "tcp": true, "udp": true }, @@ -64223,7 +70998,9 @@ "region": "United States", "hostname": "us5074.nordvpn.com", "number": 5074, - "ip": "212.102.45.42", + "ips": [ + "212.102.45.42" + ], "tcp": true, "udp": true }, @@ -64231,7 +71008,9 @@ "region": "United States", "hostname": "us5075.nordvpn.com", "number": 5075, - "ip": "212.102.45.47", + "ips": [ + "212.102.45.47" + ], "tcp": true, "udp": true }, @@ -64239,7 +71018,9 @@ "region": "United States", "hostname": "us5076.nordvpn.com", "number": 5076, - "ip": "212.102.45.52", + "ips": [ + "212.102.45.52" + ], "tcp": true, "udp": true }, @@ -64247,7 +71028,9 @@ "region": "United States", "hostname": "us5077.nordvpn.com", "number": 5077, - "ip": "212.102.45.57", + "ips": [ + "212.102.45.57" + ], "tcp": true, "udp": true }, @@ -64255,7 +71038,9 @@ "region": "United States", "hostname": "us5078.nordvpn.com", "number": 5078, - "ip": "212.102.45.62", + "ips": [ + "212.102.45.62" + ], "tcp": true, "udp": true }, @@ -64263,7 +71048,9 @@ "region": "United States", "hostname": "us5079.nordvpn.com", "number": 5079, - "ip": "212.102.45.67", + "ips": [ + "212.102.45.67" + ], "tcp": true, "udp": true }, @@ -64271,7 +71058,9 @@ "region": "United States", "hostname": "us5080.nordvpn.com", "number": 5080, - "ip": "212.102.45.72", + "ips": [ + "212.102.45.72" + ], "tcp": true, "udp": true }, @@ -64279,7 +71068,9 @@ "region": "United States", "hostname": "us5081.nordvpn.com", "number": 5081, - "ip": "212.102.45.77", + "ips": [ + "212.102.45.77" + ], "tcp": true, "udp": true }, @@ -64287,7 +71078,9 @@ "region": "United States", "hostname": "us5082.nordvpn.com", "number": 5082, - "ip": "212.102.45.82", + "ips": [ + "212.102.45.82" + ], "tcp": true, "udp": true }, @@ -64295,7 +71088,9 @@ "region": "United States", "hostname": "us5083.nordvpn.com", "number": 5083, - "ip": "212.102.45.87", + "ips": [ + "212.102.45.87" + ], "tcp": true, "udp": true }, @@ -64303,7 +71098,9 @@ "region": "United States", "hostname": "us5084.nordvpn.com", "number": 5084, - "ip": "212.102.45.92", + "ips": [ + "212.102.45.92" + ], "tcp": true, "udp": true }, @@ -64311,7 +71108,9 @@ "region": "United States", "hostname": "us5085.nordvpn.com", "number": 5085, - "ip": "212.102.45.97", + "ips": [ + "212.102.45.97" + ], "tcp": true, "udp": true }, @@ -64319,7 +71118,9 @@ "region": "United States", "hostname": "us5086.nordvpn.com", "number": 5086, - "ip": "84.17.41.130", + "ips": [ + "84.17.41.130" + ], "tcp": true, "udp": true }, @@ -64327,7 +71128,9 @@ "region": "United States", "hostname": "us5087.nordvpn.com", "number": 5087, - "ip": "84.17.41.135", + "ips": [ + "84.17.41.135" + ], "tcp": true, "udp": true }, @@ -64335,7 +71138,9 @@ "region": "United States", "hostname": "us5088.nordvpn.com", "number": 5088, - "ip": "84.17.41.140", + "ips": [ + "84.17.41.140" + ], "tcp": true, "udp": true }, @@ -64343,7 +71148,9 @@ "region": "United States", "hostname": "us5089.nordvpn.com", "number": 5089, - "ip": "84.17.41.145", + "ips": [ + "84.17.41.145" + ], "tcp": true, "udp": true }, @@ -64351,7 +71158,9 @@ "region": "United States", "hostname": "us5090.nordvpn.com", "number": 5090, - "ip": "84.17.41.150", + "ips": [ + "84.17.41.150" + ], "tcp": true, "udp": true }, @@ -64359,7 +71168,9 @@ "region": "United States", "hostname": "us5091.nordvpn.com", "number": 5091, - "ip": "84.17.41.155", + "ips": [ + "84.17.41.155" + ], "tcp": true, "udp": true }, @@ -64367,7 +71178,9 @@ "region": "United States", "hostname": "us5092.nordvpn.com", "number": 5092, - "ip": "84.17.41.160", + "ips": [ + "84.17.41.160" + ], "tcp": true, "udp": true }, @@ -64375,7 +71188,9 @@ "region": "United States", "hostname": "us5093.nordvpn.com", "number": 5093, - "ip": "84.17.41.165", + "ips": [ + "84.17.41.165" + ], "tcp": true, "udp": true }, @@ -64383,7 +71198,9 @@ "region": "United States", "hostname": "us5094.nordvpn.com", "number": 5094, - "ip": "84.17.41.170", + "ips": [ + "84.17.41.170" + ], "tcp": true, "udp": true }, @@ -64391,7 +71208,9 @@ "region": "United States", "hostname": "us5095.nordvpn.com", "number": 5095, - "ip": "84.17.41.175", + "ips": [ + "84.17.41.175" + ], "tcp": true, "udp": true }, @@ -64399,7 +71218,9 @@ "region": "United States", "hostname": "us5099.nordvpn.com", "number": 5099, - "ip": "86.107.55.227", + "ips": [ + "86.107.55.227" + ], "tcp": true, "udp": true }, @@ -64407,7 +71228,9 @@ "region": "United States", "hostname": "us5100.nordvpn.com", "number": 5100, - "ip": "86.107.55.230", + "ips": [ + "86.107.55.230" + ], "tcp": true, "udp": true }, @@ -64415,7 +71238,9 @@ "region": "United States", "hostname": "us5101.nordvpn.com", "number": 5101, - "ip": "86.107.55.233", + "ips": [ + "86.107.55.233" + ], "tcp": true, "udp": true }, @@ -64423,7 +71248,9 @@ "region": "United States", "hostname": "us5102.nordvpn.com", "number": 5102, - "ip": "86.107.55.236", + "ips": [ + "86.107.55.236" + ], "tcp": true, "udp": true }, @@ -64431,7 +71258,9 @@ "region": "United States", "hostname": "us5103.nordvpn.com", "number": 5103, - "ip": "86.107.55.239", + "ips": [ + "86.107.55.239" + ], "tcp": true, "udp": true }, @@ -64439,7 +71268,9 @@ "region": "United States", "hostname": "us5104.nordvpn.com", "number": 5104, - "ip": "86.107.55.242", + "ips": [ + "86.107.55.242" + ], "tcp": true, "udp": true }, @@ -64447,7 +71278,9 @@ "region": "United States", "hostname": "us5105.nordvpn.com", "number": 5105, - "ip": "86.107.55.245", + "ips": [ + "86.107.55.245" + ], "tcp": true, "udp": true }, @@ -64455,7 +71288,9 @@ "region": "United States", "hostname": "us5106.nordvpn.com", "number": 5106, - "ip": "86.107.55.248", + "ips": [ + "86.107.55.248" + ], "tcp": true, "udp": true }, @@ -64463,7 +71298,9 @@ "region": "United States", "hostname": "us5107.nordvpn.com", "number": 5107, - "ip": "86.107.55.251", + "ips": [ + "86.107.55.251" + ], "tcp": true, "udp": true }, @@ -64471,7 +71308,9 @@ "region": "United States", "hostname": "us5108.nordvpn.com", "number": 5108, - "ip": "86.107.55.253", + "ips": [ + "86.107.55.253" + ], "tcp": true, "udp": true }, @@ -64479,7 +71318,9 @@ "region": "United States", "hostname": "us5109.nordvpn.com", "number": 5109, - "ip": "185.93.0.98", + "ips": [ + "185.93.0.98" + ], "tcp": true, "udp": true }, @@ -64487,7 +71328,9 @@ "region": "United States", "hostname": "us5110.nordvpn.com", "number": 5110, - "ip": "185.93.0.108", + "ips": [ + "185.93.0.108" + ], "tcp": true, "udp": true }, @@ -64495,7 +71338,9 @@ "region": "United States", "hostname": "us5111.nordvpn.com", "number": 5111, - "ip": "185.93.0.103", + "ips": [ + "185.93.0.103" + ], "tcp": true, "udp": true }, @@ -64503,7 +71348,9 @@ "region": "United States", "hostname": "us5112.nordvpn.com", "number": 5112, - "ip": "89.187.171.106", + "ips": [ + "89.187.171.106" + ], "tcp": true, "udp": true }, @@ -64511,15 +71358,9 @@ "region": "United States", "hostname": "us5113.nordvpn.com", "number": 5113, - "ip": "89.187.171.101", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us5298.nordvpn.com", - "number": 5298, - "ip": "108.61.9.179", + "ips": [ + "89.187.171.101" + ], "tcp": true, "udp": true }, @@ -64527,7 +71368,9 @@ "region": "United States", "hostname": "us5339.nordvpn.com", "number": 5339, - "ip": "212.102.33.98", + "ips": [ + "212.102.33.98" + ], "tcp": true, "udp": true }, @@ -64535,7 +71378,9 @@ "region": "United States", "hostname": "us5340.nordvpn.com", "number": 5340, - "ip": "212.102.33.101", + "ips": [ + "212.102.33.101" + ], "tcp": true, "udp": true }, @@ -64543,7 +71388,9 @@ "region": "United States", "hostname": "us5341.nordvpn.com", "number": 5341, - "ip": "212.102.33.104", + "ips": [ + "212.102.33.104" + ], "tcp": true, "udp": true }, @@ -64551,7 +71398,9 @@ "region": "United States", "hostname": "us5349.nordvpn.com", "number": 5349, - "ip": "185.245.87.43", + "ips": [ + "185.245.87.43" + ], "tcp": true, "udp": true }, @@ -64559,7 +71408,9 @@ "region": "United States", "hostname": "us5350.nordvpn.com", "number": 5350, - "ip": "185.245.87.23", + "ips": [ + "185.245.87.23" + ], "tcp": true, "udp": true }, @@ -64567,7 +71418,9 @@ "region": "United States", "hostname": "us5351.nordvpn.com", "number": 5351, - "ip": "185.245.86.235", + "ips": [ + "185.245.86.235" + ], "tcp": true, "udp": true }, @@ -64575,7 +71428,9 @@ "region": "United States", "hostname": "us5359.nordvpn.com", "number": 5359, - "ip": "84.17.44.149", + "ips": [ + "84.17.44.149" + ], "tcp": true, "udp": true }, @@ -64583,7 +71438,9 @@ "region": "United States", "hostname": "us5360.nordvpn.com", "number": 5360, - "ip": "84.17.44.146", + "ips": [ + "84.17.44.146" + ], "tcp": true, "udp": true }, @@ -64591,38 +71448,9 @@ "region": "United States", "hostname": "us5381.nordvpn.com", "number": 5381, - "ip": "91.207.175.27", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us5382.nordvpn.com", - "number": 5382, - "ip": "82.102.31.172", - "udp": true - }, - { - "region": "United States", - "hostname": "us5383.nordvpn.com", - "number": 5383, - "ip": "82.102.31.163", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us5384.nordvpn.com", - "number": 5384, - "ip": "82.102.31.166", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us5385.nordvpn.com", - "number": 5385, - "ip": "82.102.31.169", + "ips": [ + "91.207.175.27" + ], "tcp": true, "udp": true }, @@ -64630,7 +71458,9 @@ "region": "United States", "hostname": "us5386.nordvpn.com", "number": 5386, - "ip": "45.83.89.203", + "ips": [ + "45.83.89.203" + ], "tcp": true, "udp": true }, @@ -64638,15 +71468,9 @@ "region": "United States", "hostname": "us5387.nordvpn.com", "number": 5387, - "ip": "45.83.89.211", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us5388.nordvpn.com", - "number": 5388, - "ip": "139.28.216.179", + "ips": [ + "45.83.89.211" + ], "tcp": true, "udp": true }, @@ -64654,7 +71478,9 @@ "region": "United States", "hostname": "us5482.nordvpn.com", "number": 5482, - "ip": "212.102.40.50", + "ips": [ + "212.102.40.50" + ], "tcp": true, "udp": true }, @@ -64662,7 +71488,9 @@ "region": "United States", "hostname": "us5483.nordvpn.com", "number": 5483, - "ip": "212.102.40.45", + "ips": [ + "212.102.40.45" + ], "tcp": true, "udp": true }, @@ -64670,15 +71498,9 @@ "region": "United States", "hostname": "us5484.nordvpn.com", "number": 5484, - "ip": "212.102.40.40", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us5485.nordvpn.com", - "number": 5485, - "ip": "212.102.40.35", + "ips": [ + "212.102.40.40" + ], "tcp": true, "udp": true }, @@ -64686,7 +71508,9 @@ "region": "United States", "hostname": "us5490.nordvpn.com", "number": 5490, - "ip": "185.245.87.48", + "ips": [ + "185.245.87.48" + ], "tcp": true, "udp": true }, @@ -64694,7 +71518,9 @@ "region": "United States", "hostname": "us5491.nordvpn.com", "number": 5491, - "ip": "185.245.87.13", + "ips": [ + "185.245.87.13" + ], "tcp": true, "udp": true }, @@ -64702,7 +71528,9 @@ "region": "United States", "hostname": "us5492.nordvpn.com", "number": 5492, - "ip": "185.245.87.18", + "ips": [ + "185.245.87.18" + ], "tcp": true, "udp": true }, @@ -64710,7 +71538,9 @@ "region": "United States", "hostname": "us5500.nordvpn.com", "number": 5500, - "ip": "37.120.157.3", + "ips": [ + "37.120.157.3" + ], "tcp": true, "udp": true }, @@ -64718,7 +71548,9 @@ "region": "United States", "hostname": "us5501.nordvpn.com", "number": 5501, - "ip": "37.120.157.19", + "ips": [ + "37.120.157.19" + ], "tcp": true, "udp": true }, @@ -64726,7 +71558,9 @@ "region": "United States", "hostname": "us5502.nordvpn.com", "number": 5502, - "ip": "37.120.157.27", + "ips": [ + "37.120.157.27" + ], "tcp": true, "udp": true }, @@ -64734,7 +71568,9 @@ "region": "United States", "hostname": "us5508.nordvpn.com", "number": 5508, - "ip": "5.181.234.75", + "ips": [ + "5.181.234.75" + ], "tcp": true, "udp": true }, @@ -64742,7 +71578,9 @@ "region": "United States", "hostname": "us5509.nordvpn.com", "number": 5509, - "ip": "5.181.234.83", + "ips": [ + "5.181.234.83" + ], "tcp": true, "udp": true }, @@ -64750,7 +71588,9 @@ "region": "United States", "hostname": "us5510.nordvpn.com", "number": 5510, - "ip": "5.181.234.91", + "ips": [ + "5.181.234.91" + ], "tcp": true, "udp": true }, @@ -64758,7 +71598,9 @@ "region": "United States", "hostname": "us5529.nordvpn.com", "number": 5529, - "ip": "212.103.48.171", + "ips": [ + "212.103.48.171" + ], "tcp": true, "udp": true }, @@ -64766,7 +71608,9 @@ "region": "United States", "hostname": "us5530.nordvpn.com", "number": 5530, - "ip": "212.103.48.163", + "ips": [ + "212.103.48.163" + ], "tcp": true, "udp": true }, @@ -64774,7 +71618,9 @@ "region": "United States", "hostname": "us5561.nordvpn.com", "number": 5561, - "ip": "212.102.33.115", + "ips": [ + "212.102.33.115" + ], "tcp": true, "udp": true }, @@ -64782,7 +71628,9 @@ "region": "United States", "hostname": "us5594.nordvpn.com", "number": 5594, - "ip": "185.245.87.8", + "ips": [ + "185.245.87.8" + ], "tcp": true, "udp": true }, @@ -64790,7 +71638,9 @@ "region": "United States", "hostname": "us5597.nordvpn.com", "number": 5597, - "ip": "185.245.87.28", + "ips": [ + "185.245.87.28" + ], "tcp": true, "udp": true }, @@ -64798,7 +71648,9 @@ "region": "United States", "hostname": "us5605.nordvpn.com", "number": 5605, - "ip": "37.120.157.35", + "ips": [ + "37.120.157.35" + ], "tcp": true, "udp": true }, @@ -64806,7 +71658,9 @@ "region": "United States", "hostname": "us5606.nordvpn.com", "number": 5606, - "ip": "37.120.157.43", + "ips": [ + "37.120.157.43" + ], "tcp": true, "udp": true }, @@ -64814,7 +71668,9 @@ "region": "United States", "hostname": "us5610.nordvpn.com", "number": 5610, - "ip": "5.181.234.99", + "ips": [ + "5.181.234.99" + ], "tcp": true, "udp": true }, @@ -64822,7 +71678,9 @@ "region": "United States", "hostname": "us5611.nordvpn.com", "number": 5611, - "ip": "5.181.234.107", + "ips": [ + "5.181.234.107" + ], "tcp": true, "udp": true }, @@ -64830,7 +71688,9 @@ "region": "United States", "hostname": "us5612.nordvpn.com", "number": 5612, - "ip": "156.146.36.44", + "ips": [ + "156.146.36.44" + ], "tcp": true, "udp": true }, @@ -64838,7 +71698,9 @@ "region": "United States", "hostname": "us5613.nordvpn.com", "number": 5613, - "ip": "212.102.33.120", + "ips": [ + "212.102.33.120" + ], "tcp": true, "udp": true }, @@ -64846,7 +71708,9 @@ "region": "United States", "hostname": "us5614.nordvpn.com", "number": 5614, - "ip": "156.146.36.39", + "ips": [ + "156.146.36.39" + ], "tcp": true, "udp": true }, @@ -64854,7 +71718,9 @@ "region": "United States", "hostname": "us5615.nordvpn.com", "number": 5615, - "ip": "156.146.36.34", + "ips": [ + "156.146.36.34" + ], "tcp": true, "udp": true }, @@ -64862,7 +71728,9 @@ "region": "United States", "hostname": "us5725.nordvpn.com", "number": 5725, - "ip": "185.245.87.243", + "ips": [ + "185.245.87.243" + ], "tcp": true, "udp": true }, @@ -64870,7 +71738,9 @@ "region": "United States", "hostname": "us5726.nordvpn.com", "number": 5726, - "ip": "185.236.200.203", + "ips": [ + "185.236.200.203" + ], "tcp": true, "udp": true }, @@ -64878,7 +71748,9 @@ "region": "United States", "hostname": "us5727.nordvpn.com", "number": 5727, - "ip": "185.236.200.195", + "ips": [ + "185.236.200.195" + ], "tcp": true, "udp": true }, @@ -64886,7 +71758,9 @@ "region": "United States", "hostname": "us5728.nordvpn.com", "number": 5728, - "ip": "185.236.200.147", + "ips": [ + "185.236.200.147" + ], "tcp": true, "udp": true }, @@ -64894,7 +71768,9 @@ "region": "United States", "hostname": "us5729.nordvpn.com", "number": 5729, - "ip": "185.236.200.115", + "ips": [ + "185.236.200.115" + ], "tcp": true, "udp": true }, @@ -64902,7 +71778,9 @@ "region": "United States", "hostname": "us5741.nordvpn.com", "number": 5741, - "ip": "185.245.86.83", + "ips": [ + "185.245.86.83" + ], "tcp": true, "udp": true }, @@ -64910,7 +71788,9 @@ "region": "United States", "hostname": "us5742.nordvpn.com", "number": 5742, - "ip": "185.245.86.195", + "ips": [ + "185.245.86.195" + ], "tcp": true, "udp": true }, @@ -64918,7 +71798,9 @@ "region": "United States", "hostname": "us5743.nordvpn.com", "number": 5743, - "ip": "185.245.86.155", + "ips": [ + "185.245.86.155" + ], "tcp": true, "udp": true }, @@ -64926,7 +71808,9 @@ "region": "United States", "hostname": "us5744.nordvpn.com", "number": 5744, - "ip": "185.245.86.107", + "ips": [ + "185.245.86.107" + ], "tcp": true, "udp": true }, @@ -64934,7 +71818,9 @@ "region": "United States", "hostname": "us5745.nordvpn.com", "number": 5745, - "ip": "185.245.86.203", + "ips": [ + "185.245.86.203" + ], "tcp": true, "udp": true }, @@ -64942,7 +71828,9 @@ "region": "United States", "hostname": "us5746.nordvpn.com", "number": 5746, - "ip": "185.245.86.11", + "ips": [ + "185.245.86.11" + ], "tcp": true, "udp": true }, @@ -64950,7 +71838,9 @@ "region": "United States", "hostname": "us5747.nordvpn.com", "number": 5747, - "ip": "185.245.86.19", + "ips": [ + "185.245.86.19" + ], "tcp": true, "udp": true }, @@ -64958,7 +71848,9 @@ "region": "United States", "hostname": "us5748.nordvpn.com", "number": 5748, - "ip": "185.245.86.27", + "ips": [ + "185.245.86.27" + ], "tcp": true, "udp": true }, @@ -64966,7 +71858,9 @@ "region": "United States", "hostname": "us5781.nordvpn.com", "number": 5781, - "ip": "84.17.45.199", + "ips": [ + "84.17.45.199" + ], "tcp": true, "udp": true }, @@ -64974,7 +71868,9 @@ "region": "United States", "hostname": "us5782.nordvpn.com", "number": 5782, - "ip": "84.17.45.202", + "ips": [ + "84.17.45.202" + ], "tcp": true, "udp": true }, @@ -64982,7 +71878,9 @@ "region": "United States", "hostname": "us5818.nordvpn.com", "number": 5818, - "ip": "62.182.99.32", + "ips": [ + "62.182.99.32" + ], "tcp": true, "udp": true }, @@ -64990,7 +71888,9 @@ "region": "United States", "hostname": "us5819.nordvpn.com", "number": 5819, - "ip": "62.182.99.34", + "ips": [ + "62.182.99.34" + ], "tcp": true, "udp": true }, @@ -64998,7 +71898,9 @@ "region": "United States", "hostname": "us5820.nordvpn.com", "number": 5820, - "ip": "62.182.99.36", + "ips": [ + "62.182.99.36" + ], "tcp": true, "udp": true }, @@ -65006,7 +71908,9 @@ "region": "United States", "hostname": "us5821.nordvpn.com", "number": 5821, - "ip": "62.182.99.38", + "ips": [ + "62.182.99.38" + ], "tcp": true, "udp": true }, @@ -65014,7 +71918,9 @@ "region": "United States", "hostname": "us5822.nordvpn.com", "number": 5822, - "ip": "62.182.99.40", + "ips": [ + "62.182.99.40" + ], "tcp": true, "udp": true }, @@ -65022,7 +71928,9 @@ "region": "United States", "hostname": "us5823.nordvpn.com", "number": 5823, - "ip": "62.182.99.42", + "ips": [ + "62.182.99.42" + ], "tcp": true, "udp": true }, @@ -65030,7 +71938,9 @@ "region": "United States", "hostname": "us5824.nordvpn.com", "number": 5824, - "ip": "62.182.99.44", + "ips": [ + "62.182.99.44" + ], "tcp": true, "udp": true }, @@ -65038,7 +71948,9 @@ "region": "United States", "hostname": "us5825.nordvpn.com", "number": 5825, - "ip": "62.182.99.46", + "ips": [ + "62.182.99.46" + ], "tcp": true, "udp": true }, @@ -65046,7 +71958,9 @@ "region": "United States", "hostname": "us5826.nordvpn.com", "number": 5826, - "ip": "62.182.99.48", + "ips": [ + "62.182.99.48" + ], "tcp": true, "udp": true }, @@ -65054,7 +71968,9 @@ "region": "United States", "hostname": "us5827.nordvpn.com", "number": 5827, - "ip": "62.182.99.50", + "ips": [ + "62.182.99.50" + ], "tcp": true, "udp": true }, @@ -65062,7 +71978,9 @@ "region": "United States", "hostname": "us5828.nordvpn.com", "number": 5828, - "ip": "62.182.99.52", + "ips": [ + "62.182.99.52" + ], "tcp": true, "udp": true }, @@ -65070,7 +71988,9 @@ "region": "United States", "hostname": "us5829.nordvpn.com", "number": 5829, - "ip": "62.182.99.54", + "ips": [ + "62.182.99.54" + ], "tcp": true, "udp": true }, @@ -65078,7 +71998,9 @@ "region": "United States", "hostname": "us5830.nordvpn.com", "number": 5830, - "ip": "62.182.99.56", + "ips": [ + "62.182.99.56" + ], "tcp": true, "udp": true }, @@ -65086,7 +72008,9 @@ "region": "United States", "hostname": "us5831.nordvpn.com", "number": 5831, - "ip": "62.182.99.58", + "ips": [ + "62.182.99.58" + ], "tcp": true, "udp": true }, @@ -65094,7 +72018,9 @@ "region": "United States", "hostname": "us5832.nordvpn.com", "number": 5832, - "ip": "62.182.99.60", + "ips": [ + "62.182.99.60" + ], "tcp": true, "udp": true }, @@ -65102,7 +72028,9 @@ "region": "United States", "hostname": "us5833.nordvpn.com", "number": 5833, - "ip": "62.182.99.62", + "ips": [ + "62.182.99.62" + ], "tcp": true, "udp": true }, @@ -65110,7 +72038,9 @@ "region": "United States", "hostname": "us5834.nordvpn.com", "number": 5834, - "ip": "62.182.99.64", + "ips": [ + "62.182.99.64" + ], "tcp": true, "udp": true }, @@ -65118,7 +72048,9 @@ "region": "United States", "hostname": "us5835.nordvpn.com", "number": 5835, - "ip": "62.182.99.66", + "ips": [ + "62.182.99.66" + ], "tcp": true, "udp": true }, @@ -65126,7 +72058,9 @@ "region": "United States", "hostname": "us5836.nordvpn.com", "number": 5836, - "ip": "62.182.99.68", + "ips": [ + "62.182.99.68" + ], "tcp": true, "udp": true }, @@ -65134,7 +72068,9 @@ "region": "United States", "hostname": "us5837.nordvpn.com", "number": 5837, - "ip": "62.182.99.70", + "ips": [ + "62.182.99.70" + ], "tcp": true, "udp": true }, @@ -65142,7 +72078,9 @@ "region": "United States", "hostname": "us5838.nordvpn.com", "number": 5838, - "ip": "62.182.99.72", + "ips": [ + "62.182.99.72" + ], "tcp": true, "udp": true }, @@ -65150,7 +72088,9 @@ "region": "United States", "hostname": "us5839.nordvpn.com", "number": 5839, - "ip": "62.182.99.74", + "ips": [ + "62.182.99.74" + ], "tcp": true, "udp": true }, @@ -65158,7 +72098,9 @@ "region": "United States", "hostname": "us5840.nordvpn.com", "number": 5840, - "ip": "62.182.99.76", + "ips": [ + "62.182.99.76" + ], "tcp": true, "udp": true }, @@ -65166,7 +72108,9 @@ "region": "United States", "hostname": "us5841.nordvpn.com", "number": 5841, - "ip": "62.182.99.78", + "ips": [ + "62.182.99.78" + ], "tcp": true, "udp": true }, @@ -65174,7 +72118,9 @@ "region": "United States", "hostname": "us5842.nordvpn.com", "number": 5842, - "ip": "62.182.99.80", + "ips": [ + "62.182.99.80" + ], "tcp": true, "udp": true }, @@ -65182,7 +72128,9 @@ "region": "United States", "hostname": "us5843.nordvpn.com", "number": 5843, - "ip": "62.182.99.82", + "ips": [ + "62.182.99.82" + ], "tcp": true, "udp": true }, @@ -65190,7 +72138,9 @@ "region": "United States", "hostname": "us5844.nordvpn.com", "number": 5844, - "ip": "62.182.99.84", + "ips": [ + "62.182.99.84" + ], "tcp": true, "udp": true }, @@ -65198,7 +72148,9 @@ "region": "United States", "hostname": "us5845.nordvpn.com", "number": 5845, - "ip": "62.182.99.86", + "ips": [ + "62.182.99.86" + ], "tcp": true, "udp": true }, @@ -65206,7 +72158,9 @@ "region": "United States", "hostname": "us5846.nordvpn.com", "number": 5846, - "ip": "62.182.99.88", + "ips": [ + "62.182.99.88" + ], "tcp": true, "udp": true }, @@ -65214,7 +72168,9 @@ "region": "United States", "hostname": "us5847.nordvpn.com", "number": 5847, - "ip": "62.182.99.90", + "ips": [ + "62.182.99.90" + ], "tcp": true, "udp": true }, @@ -65222,7 +72178,9 @@ "region": "United States", "hostname": "us5848.nordvpn.com", "number": 5848, - "ip": "152.89.204.150", + "ips": [ + "152.89.204.150" + ], "tcp": true, "udp": true }, @@ -65230,7 +72188,9 @@ "region": "United States", "hostname": "us5849.nordvpn.com", "number": 5849, - "ip": "152.89.204.152", + "ips": [ + "152.89.204.152" + ], "tcp": true, "udp": true }, @@ -65238,7 +72198,9 @@ "region": "United States", "hostname": "us5850.nordvpn.com", "number": 5850, - "ip": "152.89.204.154", + "ips": [ + "152.89.204.154" + ], "tcp": true, "udp": true }, @@ -65246,7 +72208,9 @@ "region": "United States", "hostname": "us5851.nordvpn.com", "number": 5851, - "ip": "152.89.204.156", + "ips": [ + "152.89.204.156" + ], "tcp": true, "udp": true }, @@ -65254,7 +72218,9 @@ "region": "United States", "hostname": "us5852.nordvpn.com", "number": 5852, - "ip": "152.89.204.158", + "ips": [ + "152.89.204.158" + ], "tcp": true, "udp": true }, @@ -65262,7 +72228,9 @@ "region": "United States", "hostname": "us5853.nordvpn.com", "number": 5853, - "ip": "152.89.204.160", + "ips": [ + "152.89.204.160" + ], "tcp": true, "udp": true }, @@ -65270,7 +72238,9 @@ "region": "United States", "hostname": "us5854.nordvpn.com", "number": 5854, - "ip": "152.89.204.162", + "ips": [ + "152.89.204.162" + ], "tcp": true, "udp": true }, @@ -65278,7 +72248,9 @@ "region": "United States", "hostname": "us5855.nordvpn.com", "number": 5855, - "ip": "152.89.204.164", + "ips": [ + "152.89.204.164" + ], "tcp": true, "udp": true }, @@ -65286,7 +72258,9 @@ "region": "United States", "hostname": "us5856.nordvpn.com", "number": 5856, - "ip": "152.89.204.166", + "ips": [ + "152.89.204.166" + ], "tcp": true, "udp": true }, @@ -65294,7 +72268,9 @@ "region": "United States", "hostname": "us5857.nordvpn.com", "number": 5857, - "ip": "152.89.204.168", + "ips": [ + "152.89.204.168" + ], "tcp": true, "udp": true }, @@ -65302,7 +72278,9 @@ "region": "United States", "hostname": "us5858.nordvpn.com", "number": 5858, - "ip": "152.89.204.170", + "ips": [ + "152.89.204.170" + ], "tcp": true, "udp": true }, @@ -65310,7 +72288,9 @@ "region": "United States", "hostname": "us5859.nordvpn.com", "number": 5859, - "ip": "152.89.204.172", + "ips": [ + "152.89.204.172" + ], "tcp": true, "udp": true }, @@ -65318,7 +72298,9 @@ "region": "United States", "hostname": "us5860.nordvpn.com", "number": 5860, - "ip": "152.89.204.174", + "ips": [ + "152.89.204.174" + ], "tcp": true, "udp": true }, @@ -65326,7 +72308,9 @@ "region": "United States", "hostname": "us5861.nordvpn.com", "number": 5861, - "ip": "152.89.204.176", + "ips": [ + "152.89.204.176" + ], "tcp": true, "udp": true }, @@ -65334,7 +72318,9 @@ "region": "United States", "hostname": "us5862.nordvpn.com", "number": 5862, - "ip": "152.89.204.178", + "ips": [ + "152.89.204.178" + ], "tcp": true, "udp": true }, @@ -65342,7 +72328,9 @@ "region": "United States", "hostname": "us5863.nordvpn.com", "number": 5863, - "ip": "152.89.204.180", + "ips": [ + "152.89.204.180" + ], "tcp": true, "udp": true }, @@ -65350,7 +72338,9 @@ "region": "United States", "hostname": "us5864.nordvpn.com", "number": 5864, - "ip": "152.89.204.182", + "ips": [ + "152.89.204.182" + ], "tcp": true, "udp": true }, @@ -65358,7 +72348,9 @@ "region": "United States", "hostname": "us5865.nordvpn.com", "number": 5865, - "ip": "152.89.204.184", + "ips": [ + "152.89.204.184" + ], "tcp": true, "udp": true }, @@ -65366,7 +72358,9 @@ "region": "United States", "hostname": "us5866.nordvpn.com", "number": 5866, - "ip": "152.89.204.186", + "ips": [ + "152.89.204.186" + ], "tcp": true, "udp": true }, @@ -65374,7 +72368,9 @@ "region": "United States", "hostname": "us5867.nordvpn.com", "number": 5867, - "ip": "152.89.204.188", + "ips": [ + "152.89.204.188" + ], "tcp": true, "udp": true }, @@ -65382,7 +72378,9 @@ "region": "United States", "hostname": "us5922.nordvpn.com", "number": 5922, - "ip": "185.245.87.33", + "ips": [ + "185.245.87.33" + ], "tcp": true, "udp": true }, @@ -65390,7 +72388,9 @@ "region": "United States", "hostname": "us5925.nordvpn.com", "number": 5925, - "ip": "185.236.200.120", + "ips": [ + "185.236.200.120" + ], "tcp": true, "udp": true }, @@ -65398,7 +72398,9 @@ "region": "United States", "hostname": "us5926.nordvpn.com", "number": 5926, - "ip": "185.236.200.131", + "ips": [ + "185.236.200.131" + ], "tcp": true, "udp": true }, @@ -65406,7 +72408,19 @@ "region": "United States", "hostname": "us5927.nordvpn.com", "number": 5927, - "ip": "185.236.200.136", + "ips": [ + "185.236.200.136" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us5935.nordvpn.com", + "number": 5935, + "ips": [ + "37.120.157.235" + ], "tcp": true, "udp": true }, @@ -65414,7 +72428,9 @@ "region": "United States", "hostname": "us5936.nordvpn.com", "number": 5936, - "ip": "37.120.157.203", + "ips": [ + "37.120.157.203" + ], "tcp": true, "udp": true }, @@ -65422,7 +72438,9 @@ "region": "United States", "hostname": "us5937.nordvpn.com", "number": 5937, - "ip": "185.245.86.115", + "ips": [ + "185.245.86.115" + ], "tcp": true, "udp": true }, @@ -65430,7 +72448,9 @@ "region": "United States", "hostname": "us5938.nordvpn.com", "number": 5938, - "ip": "185.245.86.120", + "ips": [ + "185.245.86.120" + ], "tcp": true, "udp": true }, @@ -65438,7 +72458,9 @@ "region": "United States", "hostname": "us5939.nordvpn.com", "number": 5939, - "ip": "185.245.86.49", + "ips": [ + "185.245.86.49" + ], "tcp": true, "udp": true }, @@ -65446,7 +72468,19 @@ "region": "United States", "hostname": "us5940.nordvpn.com", "number": 5940, - "ip": "185.245.86.54", + "ips": [ + "185.245.86.54" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us5941.nordvpn.com", + "number": 5941, + "ips": [ + "185.245.86.40" + ], "tcp": true, "udp": true }, @@ -65454,7 +72488,9 @@ "region": "United States", "hostname": "us5942.nordvpn.com", "number": 5942, - "ip": "185.245.86.35", + "ips": [ + "185.245.86.35" + ], "tcp": true, "udp": true }, @@ -65462,7 +72498,9 @@ "region": "United States", "hostname": "us5946.nordvpn.com", "number": 5946, - "ip": "185.244.215.147", + "ips": [ + "185.244.215.147" + ], "tcp": true, "udp": true }, @@ -65470,7 +72508,9 @@ "region": "United States", "hostname": "us5947.nordvpn.com", "number": 5947, - "ip": "185.244.215.155", + "ips": [ + "185.244.215.155" + ], "tcp": true, "udp": true }, @@ -65478,7 +72518,9 @@ "region": "United States", "hostname": "us5953.nordvpn.com", "number": 5953, - "ip": "91.132.137.123", + "ips": [ + "91.132.137.123" + ], "tcp": true, "udp": true }, @@ -65486,7 +72528,9 @@ "region": "United States", "hostname": "us5955.nordvpn.com", "number": 5955, - "ip": "91.132.137.99", + "ips": [ + "91.132.137.99" + ], "tcp": true, "udp": true }, @@ -65494,7 +72538,9 @@ "region": "United States", "hostname": "us5956.nordvpn.com", "number": 5956, - "ip": "91.132.137.75", + "ips": [ + "91.132.137.75" + ], "tcp": true, "udp": true }, @@ -65502,7 +72548,9 @@ "region": "United States", "hostname": "us5993.nordvpn.com", "number": 5993, - "ip": "185.245.87.110", + "ips": [ + "185.245.87.110" + ], "tcp": true, "udp": true }, @@ -65510,7 +72558,9 @@ "region": "United States", "hostname": "us5994.nordvpn.com", "number": 5994, - "ip": "185.245.87.63", + "ips": [ + "185.245.87.63" + ], "tcp": true, "udp": true }, @@ -65518,7 +72568,9 @@ "region": "United States", "hostname": "us5995.nordvpn.com", "number": 5995, - "ip": "139.28.216.235", + "ips": [ + "139.28.216.235" + ], "tcp": true, "udp": true }, @@ -65526,7 +72578,9 @@ "region": "United States", "hostname": "us5996.nordvpn.com", "number": 5996, - "ip": "139.28.216.243", + "ips": [ + "139.28.216.243" + ], "tcp": true, "udp": true }, @@ -65534,7 +72588,9 @@ "region": "United States", "hostname": "us5997.nordvpn.com", "number": 5997, - "ip": "139.28.216.251", + "ips": [ + "139.28.216.251" + ], "tcp": true, "udp": true }, @@ -65542,7 +72598,9 @@ "region": "United States", "hostname": "us5998.nordvpn.com", "number": 5998, - "ip": "139.28.216.99", + "ips": [ + "139.28.216.99" + ], "tcp": true, "udp": true }, @@ -65550,7 +72608,9 @@ "region": "United States", "hostname": "us5999.nordvpn.com", "number": 5999, - "ip": "37.120.132.115", + "ips": [ + "37.120.132.115" + ], "tcp": true, "udp": true }, @@ -65558,7 +72618,9 @@ "region": "United States", "hostname": "us6000.nordvpn.com", "number": 6000, - "ip": "45.83.89.19", + "ips": [ + "45.83.89.19" + ], "tcp": true, "udp": true }, @@ -65566,7 +72628,9 @@ "region": "United States", "hostname": "us6001.nordvpn.com", "number": 6001, - "ip": "45.83.89.27", + "ips": [ + "45.83.89.27" + ], "tcp": true, "udp": true }, @@ -65574,7 +72638,9 @@ "region": "United States", "hostname": "us6002.nordvpn.com", "number": 6002, - "ip": "45.83.89.35", + "ips": [ + "45.83.89.35" + ], "tcp": true, "udp": true }, @@ -65582,7 +72648,9 @@ "region": "United States", "hostname": "us6003.nordvpn.com", "number": 6003, - "ip": "45.83.89.43", + "ips": [ + "45.83.89.43" + ], "tcp": true, "udp": true }, @@ -65590,7 +72658,9 @@ "region": "United States", "hostname": "us6004.nordvpn.com", "number": 6004, - "ip": "45.83.89.51", + "ips": [ + "45.83.89.51" + ], "tcp": true, "udp": true }, @@ -65598,7 +72668,9 @@ "region": "United States", "hostname": "us6045.nordvpn.com", "number": 6045, - "ip": "176.113.72.235", + "ips": [ + "176.113.72.235" + ], "tcp": true, "udp": true }, @@ -65606,7 +72678,9 @@ "region": "United States", "hostname": "us6046.nordvpn.com", "number": 6046, - "ip": "217.138.206.35", + "ips": [ + "217.138.206.35" + ], "tcp": true, "udp": true }, @@ -65614,7 +72688,9 @@ "region": "United States", "hostname": "us6047.nordvpn.com", "number": 6047, - "ip": "217.138.206.43", + "ips": [ + "217.138.206.43" + ], "tcp": true, "udp": true }, @@ -65622,7 +72698,9 @@ "region": "United States", "hostname": "us6126.nordvpn.com", "number": 6126, - "ip": "185.245.86.243", + "ips": [ + "185.245.86.243" + ], "tcp": true, "udp": true }, @@ -65630,7 +72708,9 @@ "region": "United States", "hostname": "us6179.nordvpn.com", "number": 6179, - "ip": "176.113.72.219", + "ips": [ + "176.113.72.219" + ], "tcp": true, "udp": true }, @@ -65638,7 +72718,9 @@ "region": "United States", "hostname": "us6180.nordvpn.com", "number": 6180, - "ip": "185.232.22.75", + "ips": [ + "185.232.22.75" + ], "tcp": true, "udp": true }, @@ -65646,7 +72728,9 @@ "region": "United States", "hostname": "us6181.nordvpn.com", "number": 6181, - "ip": "185.244.215.99", + "ips": [ + "185.244.215.99" + ], "tcp": true, "udp": true }, @@ -65654,7 +72738,9 @@ "region": "United States", "hostname": "us6245.nordvpn.com", "number": 6245, - "ip": "156.146.43.200", + "ips": [ + "156.146.43.200" + ], "tcp": true, "udp": true }, @@ -65662,7 +72748,9 @@ "region": "United States", "hostname": "us6246.nordvpn.com", "number": 6246, - "ip": "156.146.43.197", + "ips": [ + "156.146.43.197" + ], "tcp": true, "udp": true }, @@ -65670,7 +72758,9 @@ "region": "United States", "hostname": "us6247.nordvpn.com", "number": 6247, - "ip": "156.146.43.203", + "ips": [ + "156.146.43.203" + ], "tcp": true, "udp": true }, @@ -65678,7 +72768,9 @@ "region": "United States", "hostname": "us6248.nordvpn.com", "number": 6248, - "ip": "156.146.43.206", + "ips": [ + "156.146.43.206" + ], "tcp": true, "udp": true }, @@ -65686,7 +72778,9 @@ "region": "United States", "hostname": "us6255.nordvpn.com", "number": 6255, - "ip": "64.44.42.107", + "ips": [ + "64.44.42.107" + ], "tcp": true, "udp": true }, @@ -65694,7 +72788,9 @@ "region": "United States", "hostname": "us6257.nordvpn.com", "number": 6257, - "ip": "172.93.230.99", + "ips": [ + "172.93.230.99" + ], "tcp": true, "udp": true }, @@ -65702,7 +72798,9 @@ "region": "United States", "hostname": "us6262.nordvpn.com", "number": 6262, - "ip": "107.175.40.235", + "ips": [ + "107.175.40.235" + ], "tcp": true, "udp": true }, @@ -65710,7 +72808,9 @@ "region": "United States", "hostname": "us6263.nordvpn.com", "number": 6263, - "ip": "107.175.40.219", + "ips": [ + "107.175.40.219" + ], "tcp": true, "udp": true }, @@ -65718,7 +72818,9 @@ "region": "United States", "hostname": "us6264.nordvpn.com", "number": 6264, - "ip": "107.175.105.219", + "ips": [ + "107.175.105.219" + ], "tcp": true, "udp": true }, @@ -65726,7 +72828,9 @@ "region": "United States", "hostname": "us6265.nordvpn.com", "number": 6265, - "ip": "107.175.40.211", + "ips": [ + "107.175.40.211" + ], "tcp": true, "udp": true }, @@ -65734,7 +72838,9 @@ "region": "United States", "hostname": "us6266.nordvpn.com", "number": 6266, - "ip": "107.175.105.211", + "ips": [ + "107.175.105.211" + ], "tcp": true, "udp": true }, @@ -65742,7 +72848,9 @@ "region": "United States", "hostname": "us6267.nordvpn.com", "number": 6267, - "ip": "107.175.105.187", + "ips": [ + "107.175.105.187" + ], "tcp": true, "udp": true }, @@ -65750,7 +72858,9 @@ "region": "United States", "hostname": "us6268.nordvpn.com", "number": 6268, - "ip": "107.175.105.163", + "ips": [ + "107.175.105.163" + ], "tcp": true, "udp": true }, @@ -65758,7 +72868,9 @@ "region": "United States", "hostname": "us6269.nordvpn.com", "number": 6269, - "ip": "107.175.104.251", + "ips": [ + "107.175.104.251" + ], "tcp": true, "udp": true }, @@ -65766,7 +72878,9 @@ "region": "United States", "hostname": "us6270.nordvpn.com", "number": 6270, - "ip": "107.175.105.147", + "ips": [ + "107.175.105.147" + ], "tcp": true, "udp": true }, @@ -65774,7 +72888,9 @@ "region": "United States", "hostname": "us6271.nordvpn.com", "number": 6271, - "ip": "107.175.105.171", + "ips": [ + "107.175.105.171" + ], "tcp": true, "udp": true }, @@ -65782,7 +72898,9 @@ "region": "United States", "hostname": "us6272.nordvpn.com", "number": 6272, - "ip": "107.175.105.155", + "ips": [ + "107.175.105.155" + ], "tcp": true, "udp": true }, @@ -65790,7 +72908,9 @@ "region": "United States", "hostname": "us6273.nordvpn.com", "number": 6273, - "ip": "107.175.104.243", + "ips": [ + "107.175.104.243" + ], "tcp": true, "udp": true }, @@ -65798,7 +72918,9 @@ "region": "United States", "hostname": "us6274.nordvpn.com", "number": 6274, - "ip": "107.175.104.235", + "ips": [ + "107.175.104.235" + ], "tcp": true, "udp": true }, @@ -65806,7 +72928,9 @@ "region": "United States", "hostname": "us6275.nordvpn.com", "number": 6275, - "ip": "107.175.104.227", + "ips": [ + "107.175.104.227" + ], "tcp": true, "udp": true }, @@ -65814,7 +72938,9 @@ "region": "United States", "hostname": "us6276.nordvpn.com", "number": 6276, - "ip": "107.175.104.203", + "ips": [ + "107.175.104.203" + ], "tcp": true, "udp": true }, @@ -65822,7 +72948,9 @@ "region": "United States", "hostname": "us6277.nordvpn.com", "number": 6277, - "ip": "107.175.104.195", + "ips": [ + "107.175.104.195" + ], "tcp": true, "udp": true }, @@ -65830,7 +72958,9 @@ "region": "United States", "hostname": "us6278.nordvpn.com", "number": 6278, - "ip": "107.174.17.99", + "ips": [ + "107.174.17.99" + ], "tcp": true, "udp": true }, @@ -65838,7 +72968,9 @@ "region": "United States", "hostname": "us6279.nordvpn.com", "number": 6279, - "ip": "107.174.17.83", + "ips": [ + "107.174.17.83" + ], "tcp": true, "udp": true }, @@ -65846,7 +72978,9 @@ "region": "United States", "hostname": "us6280.nordvpn.com", "number": 6280, - "ip": "107.174.17.251", + "ips": [ + "107.174.17.251" + ], "tcp": true, "udp": true }, @@ -65854,7 +72988,9 @@ "region": "United States", "hostname": "us6281.nordvpn.com", "number": 6281, - "ip": "107.174.17.243", + "ips": [ + "107.174.17.243" + ], "tcp": true, "udp": true }, @@ -65862,7 +72998,9 @@ "region": "United States", "hostname": "us6282.nordvpn.com", "number": 6282, - "ip": "107.174.17.139", + "ips": [ + "107.174.17.139" + ], "tcp": true, "udp": true }, @@ -65870,7 +73008,9 @@ "region": "United States", "hostname": "us6283.nordvpn.com", "number": 6283, - "ip": "107.174.17.131", + "ips": [ + "107.174.17.131" + ], "tcp": true, "udp": true }, @@ -65878,7 +73018,9 @@ "region": "United States", "hostname": "us6284.nordvpn.com", "number": 6284, - "ip": "107.174.17.115", + "ips": [ + "107.174.17.115" + ], "tcp": true, "udp": true }, @@ -65886,7 +73028,9 @@ "region": "United States", "hostname": "us6285.nordvpn.com", "number": 6285, - "ip": "107.174.17.3", + "ips": [ + "107.174.17.3" + ], "tcp": true, "udp": true }, @@ -65894,7 +73038,9 @@ "region": "United States", "hostname": "us6286.nordvpn.com", "number": 6286, - "ip": "107.173.69.11", + "ips": [ + "107.173.69.11" + ], "tcp": true, "udp": true }, @@ -65902,7 +73048,9 @@ "region": "United States", "hostname": "us6287.nordvpn.com", "number": 6287, - "ip": "107.173.73.43", + "ips": [ + "107.173.73.43" + ], "tcp": true, "udp": true }, @@ -65910,7 +73058,9 @@ "region": "United States", "hostname": "us6288.nordvpn.com", "number": 6288, - "ip": "107.173.73.35", + "ips": [ + "107.173.73.35" + ], "tcp": true, "udp": true }, @@ -65918,7 +73068,9 @@ "region": "United States", "hostname": "us6289.nordvpn.com", "number": 6289, - "ip": "107.173.73.27", + "ips": [ + "107.173.73.27" + ], "tcp": true, "udp": true }, @@ -65926,7 +73078,9 @@ "region": "United States", "hostname": "us6290.nordvpn.com", "number": 6290, - "ip": "107.174.17.107", + "ips": [ + "107.174.17.107" + ], "tcp": true, "udp": true }, @@ -65934,7 +73088,9 @@ "region": "United States", "hostname": "us6291.nordvpn.com", "number": 6291, - "ip": "107.173.69.195", + "ips": [ + "107.173.69.195" + ], "tcp": true, "udp": true }, @@ -65942,7 +73098,9 @@ "region": "United States", "hostname": "us6292.nordvpn.com", "number": 6292, - "ip": "107.173.69.235", + "ips": [ + "107.173.69.235" + ], "tcp": true, "udp": true }, @@ -65950,7 +73108,9 @@ "region": "United States", "hostname": "us6293.nordvpn.com", "number": 6293, - "ip": "107.173.69.227", + "ips": [ + "107.173.69.227" + ], "tcp": true, "udp": true }, @@ -65958,7 +73118,9 @@ "region": "United States", "hostname": "us6294.nordvpn.com", "number": 6294, - "ip": "107.173.69.147", + "ips": [ + "107.173.69.147" + ], "tcp": true, "udp": true }, @@ -65966,7 +73128,9 @@ "region": "United States", "hostname": "us6295.nordvpn.com", "number": 6295, - "ip": "107.173.69.203", + "ips": [ + "107.173.69.203" + ], "tcp": true, "udp": true }, @@ -65974,7 +73138,9 @@ "region": "United States", "hostname": "us6296.nordvpn.com", "number": 6296, - "ip": "107.173.73.3", + "ips": [ + "107.173.73.3" + ], "tcp": true, "udp": true }, @@ -65982,7 +73148,9 @@ "region": "United States", "hostname": "us6298.nordvpn.com", "number": 6298, - "ip": "107.173.69.155", + "ips": [ + "107.173.69.155" + ], "tcp": true, "udp": true }, @@ -65990,7 +73158,9 @@ "region": "United States", "hostname": "us6299.nordvpn.com", "number": 6299, - "ip": "107.173.59.155", + "ips": [ + "107.173.59.155" + ], "tcp": true, "udp": true }, @@ -65998,7 +73168,9 @@ "region": "United States", "hostname": "us6300.nordvpn.com", "number": 6300, - "ip": "107.173.69.219", + "ips": [ + "107.173.69.219" + ], "tcp": true, "udp": true }, @@ -66006,7 +73178,9 @@ "region": "United States", "hostname": "us6301.nordvpn.com", "number": 6301, - "ip": "172.93.177.235", + "ips": [ + "172.93.177.235" + ], "tcp": true, "udp": true }, @@ -66014,7 +73188,9 @@ "region": "United States", "hostname": "us6302.nordvpn.com", "number": 6302, - "ip": "172.93.177.203", + "ips": [ + "172.93.177.203" + ], "tcp": true, "udp": true }, @@ -66022,7 +73198,9 @@ "region": "United States", "hostname": "us6303.nordvpn.com", "number": 6303, - "ip": "172.93.177.163", + "ips": [ + "172.93.177.163" + ], "tcp": true, "udp": true }, @@ -66030,7 +73208,9 @@ "region": "United States", "hostname": "us6304.nordvpn.com", "number": 6304, - "ip": "172.93.177.179", + "ips": [ + "172.93.177.179" + ], "tcp": true, "udp": true }, @@ -66038,7 +73218,9 @@ "region": "United States", "hostname": "us6305.nordvpn.com", "number": 6305, - "ip": "172.93.177.243", + "ips": [ + "172.93.177.243" + ], "tcp": true, "udp": true }, @@ -66046,7 +73228,9 @@ "region": "United States", "hostname": "us6306.nordvpn.com", "number": 6306, - "ip": "172.93.177.227", + "ips": [ + "172.93.177.227" + ], "tcp": true, "udp": true }, @@ -66054,7 +73238,9 @@ "region": "United States", "hostname": "us6307.nordvpn.com", "number": 6307, - "ip": "172.93.177.171", + "ips": [ + "172.93.177.171" + ], "tcp": true, "udp": true }, @@ -66062,7 +73248,9 @@ "region": "United States", "hostname": "us6308.nordvpn.com", "number": 6308, - "ip": "172.93.177.211", + "ips": [ + "172.93.177.211" + ], "tcp": true, "udp": true }, @@ -66070,7 +73258,9 @@ "region": "United States", "hostname": "us6309.nordvpn.com", "number": 6309, - "ip": "172.93.177.187", + "ips": [ + "172.93.177.187" + ], "tcp": true, "udp": true }, @@ -66078,7 +73268,9 @@ "region": "United States", "hostname": "us6310.nordvpn.com", "number": 6310, - "ip": "172.93.177.139", + "ips": [ + "172.93.177.139" + ], "tcp": true, "udp": true }, @@ -66086,7 +73278,9 @@ "region": "United States", "hostname": "us6311.nordvpn.com", "number": 6311, - "ip": "172.93.177.155", + "ips": [ + "172.93.177.155" + ], "tcp": true, "udp": true }, @@ -66094,7 +73288,9 @@ "region": "United States", "hostname": "us6312.nordvpn.com", "number": 6312, - "ip": "172.93.177.147", + "ips": [ + "172.93.177.147" + ], "tcp": true, "udp": true }, @@ -66102,7 +73298,9 @@ "region": "United States", "hostname": "us6313.nordvpn.com", "number": 6313, - "ip": "172.93.177.115", + "ips": [ + "172.93.177.115" + ], "tcp": true, "udp": true }, @@ -66110,7 +73308,9 @@ "region": "United States", "hostname": "us6314.nordvpn.com", "number": 6314, - "ip": "172.93.177.107", + "ips": [ + "172.93.177.107" + ], "tcp": true, "udp": true }, @@ -66118,7 +73318,9 @@ "region": "United States", "hostname": "us6315.nordvpn.com", "number": 6315, - "ip": "172.93.177.91", + "ips": [ + "172.93.177.91" + ], "tcp": true, "udp": true }, @@ -66126,7 +73328,9 @@ "region": "United States", "hostname": "us6316.nordvpn.com", "number": 6316, - "ip": "172.93.177.83", + "ips": [ + "172.93.177.83" + ], "tcp": true, "udp": true }, @@ -66134,7 +73338,9 @@ "region": "United States", "hostname": "us6317.nordvpn.com", "number": 6317, - "ip": "172.93.177.75", + "ips": [ + "172.93.177.75" + ], "tcp": true, "udp": true }, @@ -66142,7 +73348,19 @@ "region": "United States", "hostname": "us6318.nordvpn.com", "number": 6318, - "ip": "172.93.177.59", + "ips": [ + "172.93.177.59" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us6319.nordvpn.com", + "number": 6319, + "ips": [ + "172.93.177.67" + ], "tcp": true, "udp": true }, @@ -66150,7 +73368,9 @@ "region": "United States", "hostname": "us6320.nordvpn.com", "number": 6320, - "ip": "172.93.177.51", + "ips": [ + "172.93.177.51" + ], "tcp": true, "udp": true }, @@ -66158,7 +73378,9 @@ "region": "United States", "hostname": "us6321.nordvpn.com", "number": 6321, - "ip": "172.93.177.43", + "ips": [ + "172.93.177.43" + ], "tcp": true, "udp": true }, @@ -66166,7 +73388,9 @@ "region": "United States", "hostname": "us6322.nordvpn.com", "number": 6322, - "ip": "172.93.177.35", + "ips": [ + "172.93.177.35" + ], "tcp": true, "udp": true }, @@ -66174,7 +73398,9 @@ "region": "United States", "hostname": "us6323.nordvpn.com", "number": 6323, - "ip": "172.93.177.11", + "ips": [ + "172.93.177.11" + ], "tcp": true, "udp": true }, @@ -66182,7 +73408,9 @@ "region": "United States", "hostname": "us6324.nordvpn.com", "number": 6324, - "ip": "172.93.177.3", + "ips": [ + "172.93.177.3" + ], "tcp": true, "udp": true }, @@ -66190,31 +73418,9 @@ "region": "United States", "hostname": "us6352.nordvpn.com", "number": 6352, - "ip": "91.132.137.115", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us6439.nordvpn.com", - "number": 6439, - "ip": "89.187.164.90", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us6440.nordvpn.com", - "number": 6440, - "ip": "89.187.164.92", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us6441.nordvpn.com", - "number": 6441, - "ip": "89.187.164.94", + "ips": [ + "91.132.137.115" + ], "tcp": true, "udp": true }, @@ -66222,7 +73428,9 @@ "region": "United States", "hostname": "us6458.nordvpn.com", "number": 6458, - "ip": "84.17.44.96", + "ips": [ + "84.17.44.96" + ], "tcp": true, "udp": true }, @@ -66230,7 +73438,9 @@ "region": "United States", "hostname": "us6459.nordvpn.com", "number": 6459, - "ip": "84.17.44.91", + "ips": [ + "84.17.44.91" + ], "tcp": true, "udp": true }, @@ -66238,7 +73448,9 @@ "region": "United States", "hostname": "us6460.nordvpn.com", "number": 6460, - "ip": "84.17.44.86", + "ips": [ + "84.17.44.86" + ], "tcp": true, "udp": true }, @@ -66246,7 +73458,9 @@ "region": "United States", "hostname": "us6461.nordvpn.com", "number": 6461, - "ip": "84.17.44.81", + "ips": [ + "84.17.44.81" + ], "tcp": true, "udp": true }, @@ -66254,7 +73468,9 @@ "region": "United States", "hostname": "us6462.nordvpn.com", "number": 6462, - "ip": "84.17.44.76", + "ips": [ + "84.17.44.76" + ], "tcp": true, "udp": true }, @@ -66262,7 +73478,9 @@ "region": "United States", "hostname": "us6474.nordvpn.com", "number": 6474, - "ip": "45.87.214.235", + "ips": [ + "45.87.214.235" + ], "tcp": true, "udp": true }, @@ -66270,7 +73488,9 @@ "region": "United States", "hostname": "us6480.nordvpn.com", "number": 6480, - "ip": "5.181.234.123", + "ips": [ + "5.181.234.123" + ], "tcp": true, "udp": true }, @@ -66278,7 +73498,9 @@ "region": "United States", "hostname": "us6482.nordvpn.com", "number": 6482, - "ip": "5.181.234.163", + "ips": [ + "5.181.234.163" + ], "tcp": true, "udp": true }, @@ -66286,7 +73508,9 @@ "region": "United States", "hostname": "us6483.nordvpn.com", "number": 6483, - "ip": "5.181.234.171", + "ips": [ + "5.181.234.171" + ], "tcp": true, "udp": true }, @@ -66294,7 +73518,9 @@ "region": "United States", "hostname": "us6484.nordvpn.com", "number": 6484, - "ip": "5.181.234.179", + "ips": [ + "5.181.234.179" + ], "tcp": true, "udp": true }, @@ -66302,7 +73528,9 @@ "region": "United States", "hostname": "us6485.nordvpn.com", "number": 6485, - "ip": "5.181.234.187", + "ips": [ + "5.181.234.187" + ], "tcp": true, "udp": true }, @@ -66310,7 +73538,9 @@ "region": "United States", "hostname": "us6486.nordvpn.com", "number": 6486, - "ip": "5.181.234.195", + "ips": [ + "5.181.234.195" + ], "tcp": true, "udp": true }, @@ -66318,7 +73548,9 @@ "region": "United States", "hostname": "us6487.nordvpn.com", "number": 6487, - "ip": "5.181.234.203", + "ips": [ + "5.181.234.203" + ], "tcp": true, "udp": true }, @@ -66326,7 +73558,9 @@ "region": "United States", "hostname": "us6488.nordvpn.com", "number": 6488, - "ip": "5.181.234.211", + "ips": [ + "5.181.234.211" + ], "tcp": true, "udp": true }, @@ -66334,7 +73568,9 @@ "region": "United States", "hostname": "us6489.nordvpn.com", "number": 6489, - "ip": "5.181.234.219", + "ips": [ + "5.181.234.219" + ], "tcp": true, "udp": true }, @@ -66342,7 +73578,9 @@ "region": "United States", "hostname": "us6490.nordvpn.com", "number": 6490, - "ip": "89.187.178.7", + "ips": [ + "89.187.178.7" + ], "tcp": true, "udp": true }, @@ -66350,7 +73588,9 @@ "region": "United States", "hostname": "us6491.nordvpn.com", "number": 6491, - "ip": "89.187.178.12", + "ips": [ + "89.187.178.12" + ], "tcp": true, "udp": true }, @@ -66358,7 +73598,9 @@ "region": "United States", "hostname": "us6492.nordvpn.com", "number": 6492, - "ip": "89.187.178.27", + "ips": [ + "89.187.178.27" + ], "tcp": true, "udp": true }, @@ -66366,7 +73608,9 @@ "region": "United States", "hostname": "us6493.nordvpn.com", "number": 6493, - "ip": "89.187.177.231", + "ips": [ + "89.187.177.231" + ], "tcp": true, "udp": true }, @@ -66374,7 +73618,9 @@ "region": "United States", "hostname": "us6494.nordvpn.com", "number": 6494, - "ip": "89.187.177.236", + "ips": [ + "89.187.177.236" + ], "tcp": true, "udp": true }, @@ -66382,7 +73628,9 @@ "region": "United States", "hostname": "us6495.nordvpn.com", "number": 6495, - "ip": "89.187.178.17", + "ips": [ + "89.187.178.17" + ], "tcp": true, "udp": true }, @@ -66390,7 +73638,9 @@ "region": "United States", "hostname": "us6496.nordvpn.com", "number": 6496, - "ip": "89.187.178.37", + "ips": [ + "89.187.178.37" + ], "tcp": true, "udp": true }, @@ -66398,7 +73648,9 @@ "region": "United States", "hostname": "us6497.nordvpn.com", "number": 6497, - "ip": "89.187.178.32", + "ips": [ + "89.187.178.32" + ], "tcp": true, "udp": true }, @@ -66406,7 +73658,9 @@ "region": "United States", "hostname": "us6533.nordvpn.com", "number": 6533, - "ip": "172.93.177.251", + "ips": [ + "172.93.177.251" + ], "tcp": true, "udp": true }, @@ -66414,7 +73668,9 @@ "region": "United States", "hostname": "us6534.nordvpn.com", "number": 6534, - "ip": "172.93.177.99", + "ips": [ + "172.93.177.99" + ], "tcp": true, "udp": true }, @@ -66422,7 +73678,9 @@ "region": "United States", "hostname": "us6535.nordvpn.com", "number": 6535, - "ip": "172.93.177.27", + "ips": [ + "172.93.177.27" + ], "tcp": true, "udp": true }, @@ -66430,7 +73688,9 @@ "region": "United States", "hostname": "us6536.nordvpn.com", "number": 6536, - "ip": "172.93.177.19", + "ips": [ + "172.93.177.19" + ], "tcp": true, "udp": true }, @@ -66438,7 +73698,9 @@ "region": "United States", "hostname": "us6537.nordvpn.com", "number": 6537, - "ip": "172.93.177.219", + "ips": [ + "172.93.177.219" + ], "tcp": true, "udp": true }, @@ -66446,7 +73708,9 @@ "region": "United States", "hostname": "us6538.nordvpn.com", "number": 6538, - "ip": "172.93.177.195", + "ips": [ + "172.93.177.195" + ], "tcp": true, "udp": true }, @@ -66454,7 +73718,9 @@ "region": "United States", "hostname": "us6539.nordvpn.com", "number": 6539, - "ip": "172.93.177.123", + "ips": [ + "172.93.177.123" + ], "tcp": true, "udp": true }, @@ -66462,7 +73728,9 @@ "region": "United States", "hostname": "us6540.nordvpn.com", "number": 6540, - "ip": "172.93.177.131", + "ips": [ + "172.93.177.131" + ], "tcp": true, "udp": true }, @@ -66470,7 +73738,9 @@ "region": "United States", "hostname": "us6572.nordvpn.com", "number": 6572, - "ip": "89.187.183.182", + "ips": [ + "89.187.183.182" + ], "tcp": true, "udp": true }, @@ -66478,7 +73748,9 @@ "region": "United States", "hostname": "us6573.nordvpn.com", "number": 6573, - "ip": "89.187.183.177", + "ips": [ + "89.187.183.177" + ], "tcp": true, "udp": true }, @@ -66486,7 +73758,9 @@ "region": "United States", "hostname": "us6574.nordvpn.com", "number": 6574, - "ip": "89.187.183.172", + "ips": [ + "89.187.183.172" + ], "tcp": true, "udp": true }, @@ -66494,7 +73768,9 @@ "region": "United States", "hostname": "us6575.nordvpn.com", "number": 6575, - "ip": "89.187.183.167", + "ips": [ + "89.187.183.167" + ], "tcp": true, "udp": true }, @@ -66502,39 +73778,9 @@ "region": "United States", "hostname": "us6576.nordvpn.com", "number": 6576, - "ip": "89.187.183.162", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us6577.nordvpn.com", - "number": 6577, - "ip": "89.187.175.118", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us6578.nordvpn.com", - "number": 6578, - "ip": "89.187.175.114", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us6579.nordvpn.com", - "number": 6579, - "ip": "89.187.175.109", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us6580.nordvpn.com", - "number": 6580, - "ip": "89.187.175.104", + "ips": [ + "89.187.183.162" + ], "tcp": true, "udp": true }, @@ -66542,7 +73788,9 @@ "region": "United States", "hostname": "us6587.nordvpn.com", "number": 6587, - "ip": "89.187.175.47", + "ips": [ + "89.187.175.47" + ], "tcp": true, "udp": true }, @@ -66550,7 +73798,9 @@ "region": "United States", "hostname": "us6588.nordvpn.com", "number": 6588, - "ip": "89.187.175.42", + "ips": [ + "89.187.175.42" + ], "tcp": true, "udp": true }, @@ -66558,7 +73808,9 @@ "region": "United States", "hostname": "us6589.nordvpn.com", "number": 6589, - "ip": "89.187.175.37", + "ips": [ + "89.187.175.37" + ], "tcp": true, "udp": true }, @@ -66566,7 +73818,9 @@ "region": "United States", "hostname": "us6590.nordvpn.com", "number": 6590, - "ip": "89.187.175.32", + "ips": [ + "89.187.175.32" + ], "tcp": true, "udp": true }, @@ -66574,7 +73828,9 @@ "region": "United States", "hostname": "us6591.nordvpn.com", "number": 6591, - "ip": "89.187.175.27", + "ips": [ + "89.187.175.27" + ], "tcp": true, "udp": true }, @@ -66582,7 +73838,9 @@ "region": "United States", "hostname": "us6592.nordvpn.com", "number": 6592, - "ip": "89.187.175.22", + "ips": [ + "89.187.175.22" + ], "tcp": true, "udp": true }, @@ -66590,7 +73848,9 @@ "region": "United States", "hostname": "us6593.nordvpn.com", "number": 6593, - "ip": "89.187.175.17", + "ips": [ + "89.187.175.17" + ], "tcp": true, "udp": true }, @@ -66598,7 +73858,9 @@ "region": "United States", "hostname": "us6607.nordvpn.com", "number": 6607, - "ip": "37.120.215.11", + "ips": [ + "37.120.215.11" + ], "tcp": true, "udp": true }, @@ -66606,7 +73868,9 @@ "region": "United States", "hostname": "us6608.nordvpn.com", "number": 6608, - "ip": "37.120.215.19", + "ips": [ + "37.120.215.19" + ], "tcp": true, "udp": true }, @@ -66614,7 +73878,9 @@ "region": "United States", "hostname": "us6609.nordvpn.com", "number": 6609, - "ip": "37.120.215.27", + "ips": [ + "37.120.215.27" + ], "tcp": true, "udp": true }, @@ -66622,7 +73888,19 @@ "region": "United States", "hostname": "us6610.nordvpn.com", "number": 6610, - "ip": "37.120.215.35", + "ips": [ + "37.120.215.35" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us6611.nordvpn.com", + "number": 6611, + "ips": [ + "37.120.215.43" + ], "tcp": true, "udp": true }, @@ -66630,7 +73908,9 @@ "region": "United States", "hostname": "us6612.nordvpn.com", "number": 6612, - "ip": "37.120.215.51", + "ips": [ + "37.120.215.51" + ], "tcp": true, "udp": true }, @@ -66638,7 +73918,9 @@ "region": "United States", "hostname": "us6613.nordvpn.com", "number": 6613, - "ip": "89.187.178.42", + "ips": [ + "89.187.178.42" + ], "tcp": true, "udp": true }, @@ -66646,7 +73928,9 @@ "region": "United States", "hostname": "us6614.nordvpn.com", "number": 6614, - "ip": "89.187.177.226", + "ips": [ + "89.187.177.226" + ], "tcp": true, "udp": true }, @@ -66654,7 +73938,9 @@ "region": "United States", "hostname": "us6620.nordvpn.com", "number": 6620, - "ip": "45.152.180.19", + "ips": [ + "45.152.180.19" + ], "tcp": true, "udp": true }, @@ -66662,7 +73948,9 @@ "region": "United States", "hostname": "us6657.nordvpn.com", "number": 6657, - "ip": "64.44.80.3", + "ips": [ + "64.44.80.3" + ], "tcp": true, "udp": true }, @@ -66670,7 +73958,9 @@ "region": "United States", "hostname": "us6658.nordvpn.com", "number": 6658, - "ip": "64.44.80.11", + "ips": [ + "64.44.80.11" + ], "tcp": true, "udp": true }, @@ -66678,7 +73968,9 @@ "region": "United States", "hostname": "us6659.nordvpn.com", "number": 6659, - "ip": "64.44.80.19", + "ips": [ + "64.44.80.19" + ], "tcp": true, "udp": true }, @@ -66686,7 +73978,9 @@ "region": "United States", "hostname": "us6660.nordvpn.com", "number": 6660, - "ip": "64.44.80.27", + "ips": [ + "64.44.80.27" + ], "tcp": true, "udp": true }, @@ -66694,7 +73988,9 @@ "region": "United States", "hostname": "us6661.nordvpn.com", "number": 6661, - "ip": "64.44.80.43", + "ips": [ + "64.44.80.43" + ], "tcp": true, "udp": true }, @@ -66702,7 +73998,9 @@ "region": "United States", "hostname": "us6662.nordvpn.com", "number": 6662, - "ip": "64.44.80.51", + "ips": [ + "64.44.80.51" + ], "tcp": true, "udp": true }, @@ -66710,7 +74008,9 @@ "region": "United States", "hostname": "us6663.nordvpn.com", "number": 6663, - "ip": "64.44.80.59", + "ips": [ + "64.44.80.59" + ], "tcp": true, "udp": true }, @@ -66718,7 +74018,9 @@ "region": "United States", "hostname": "us6664.nordvpn.com", "number": 6664, - "ip": "64.44.80.67", + "ips": [ + "64.44.80.67" + ], "tcp": true, "udp": true }, @@ -66726,7 +74028,9 @@ "region": "United States", "hostname": "us6665.nordvpn.com", "number": 6665, - "ip": "84.17.44.71", + "ips": [ + "84.17.44.71" + ], "tcp": true, "udp": true }, @@ -66734,7 +74038,9 @@ "region": "United States", "hostname": "us6668.nordvpn.com", "number": 6668, - "ip": "84.17.44.66", + "ips": [ + "84.17.44.66" + ], "tcp": true, "udp": true }, @@ -66742,7 +74048,9 @@ "region": "United States", "hostname": "us6670.nordvpn.com", "number": 6670, - "ip": "84.17.44.131", + "ips": [ + "84.17.44.131" + ], "tcp": true, "udp": true }, @@ -66750,7 +74058,9 @@ "region": "United States", "hostname": "us6671.nordvpn.com", "number": 6671, - "ip": "84.17.44.141", + "ips": [ + "84.17.44.141" + ], "tcp": true, "udp": true }, @@ -66758,7 +74068,9 @@ "region": "United States", "hostname": "us6672.nordvpn.com", "number": 6672, - "ip": "84.17.44.136", + "ips": [ + "84.17.44.136" + ], "tcp": true, "udp": true }, @@ -66766,7 +74078,9 @@ "region": "United States", "hostname": "us6694.nordvpn.com", "number": 6694, - "ip": "89.187.171.76", + "ips": [ + "89.187.171.76" + ], "tcp": true, "udp": true }, @@ -66774,7 +74088,9 @@ "region": "United States", "hostname": "us6695.nordvpn.com", "number": 6695, - "ip": "89.187.171.96", + "ips": [ + "89.187.171.96" + ], "tcp": true, "udp": true }, @@ -66782,7 +74098,9 @@ "region": "United States", "hostname": "us6696.nordvpn.com", "number": 6696, - "ip": "89.187.171.91", + "ips": [ + "89.187.171.91" + ], "tcp": true, "udp": true }, @@ -66790,7 +74108,9 @@ "region": "United States", "hostname": "us6697.nordvpn.com", "number": 6697, - "ip": "89.187.171.86", + "ips": [ + "89.187.171.86" + ], "tcp": true, "udp": true }, @@ -66798,7 +74118,9 @@ "region": "United States", "hostname": "us6698.nordvpn.com", "number": 6698, - "ip": "89.187.171.81", + "ips": [ + "89.187.171.81" + ], "tcp": true, "udp": true }, @@ -66806,7 +74128,9 @@ "region": "United States", "hostname": "us6699.nordvpn.com", "number": 6699, - "ip": "89.187.171.71", + "ips": [ + "89.187.171.71" + ], "tcp": true, "udp": true }, @@ -66814,7 +74138,9 @@ "region": "United States", "hostname": "us6700.nordvpn.com", "number": 6700, - "ip": "89.187.171.67", + "ips": [ + "89.187.171.67" + ], "tcp": true, "udp": true }, @@ -66822,7 +74148,9 @@ "region": "United States", "hostname": "us6709.nordvpn.com", "number": 6709, - "ip": "89.187.183.151", + "ips": [ + "89.187.183.151" + ], "tcp": true, "udp": true }, @@ -66830,7 +74158,9 @@ "region": "United States", "hostname": "us6710.nordvpn.com", "number": 6710, - "ip": "89.187.183.146", + "ips": [ + "89.187.183.146" + ], "tcp": true, "udp": true }, @@ -66838,7 +74168,9 @@ "region": "United States", "hostname": "us6721.nordvpn.com", "number": 6721, - "ip": "89.187.182.66", + "ips": [ + "89.187.182.66" + ], "tcp": true, "udp": true }, @@ -66846,7 +74178,9 @@ "region": "United States", "hostname": "us6722.nordvpn.com", "number": 6722, - "ip": "89.187.182.71", + "ips": [ + "89.187.182.71" + ], "tcp": true, "udp": true }, @@ -66854,7 +74188,9 @@ "region": "United States", "hostname": "us6723.nordvpn.com", "number": 6723, - "ip": "89.187.182.76", + "ips": [ + "89.187.182.76" + ], "tcp": true, "udp": true }, @@ -66862,7 +74198,9 @@ "region": "United States", "hostname": "us6724.nordvpn.com", "number": 6724, - "ip": "89.187.175.12", + "ips": [ + "89.187.175.12" + ], "tcp": true, "udp": true }, @@ -66870,7 +74208,9 @@ "region": "United States", "hostname": "us6725.nordvpn.com", "number": 6725, - "ip": "89.187.175.7", + "ips": [ + "89.187.175.7" + ], "tcp": true, "udp": true }, @@ -66878,7 +74218,9 @@ "region": "United States", "hostname": "us6741.nordvpn.com", "number": 6741, - "ip": "64.44.80.75", + "ips": [ + "64.44.80.75" + ], "tcp": true, "udp": true }, @@ -66886,7 +74228,9 @@ "region": "United States", "hostname": "us6742.nordvpn.com", "number": 6742, - "ip": "64.44.80.83", + "ips": [ + "64.44.80.83" + ], "tcp": true, "udp": true }, @@ -66894,7 +74238,9 @@ "region": "United States", "hostname": "us6743.nordvpn.com", "number": 6743, - "ip": "64.44.80.91", + "ips": [ + "64.44.80.91" + ], "tcp": true, "udp": true }, @@ -66902,7 +74248,9 @@ "region": "United States", "hostname": "us6744.nordvpn.com", "number": 6744, - "ip": "64.44.80.99", + "ips": [ + "64.44.80.99" + ], "tcp": true, "udp": true }, @@ -66910,7 +74258,9 @@ "region": "United States", "hostname": "us6745.nordvpn.com", "number": 6745, - "ip": "64.44.80.107", + "ips": [ + "64.44.80.107" + ], "tcp": true, "udp": true }, @@ -66918,7 +74268,9 @@ "region": "United States", "hostname": "us6746.nordvpn.com", "number": 6746, - "ip": "64.44.80.115", + "ips": [ + "64.44.80.115" + ], "tcp": true, "udp": true }, @@ -66926,7 +74278,9 @@ "region": "United States", "hostname": "us6747.nordvpn.com", "number": 6747, - "ip": "64.44.80.123", + "ips": [ + "64.44.80.123" + ], "tcp": true, "udp": true }, @@ -66934,7 +74288,9 @@ "region": "United States", "hostname": "us6748.nordvpn.com", "number": 6748, - "ip": "64.44.80.139", + "ips": [ + "64.44.80.139" + ], "tcp": true, "udp": true }, @@ -66942,7 +74298,9 @@ "region": "United States", "hostname": "us6749.nordvpn.com", "number": 6749, - "ip": "64.44.80.147", + "ips": [ + "64.44.80.147" + ], "tcp": true, "udp": true }, @@ -66950,7 +74308,9 @@ "region": "United States", "hostname": "us6750.nordvpn.com", "number": 6750, - "ip": "64.44.80.155", + "ips": [ + "64.44.80.155" + ], "tcp": true, "udp": true }, @@ -66958,7 +74318,9 @@ "region": "United States", "hostname": "us6751.nordvpn.com", "number": 6751, - "ip": "84.17.44.111", + "ips": [ + "84.17.44.111" + ], "tcp": true, "udp": true }, @@ -66966,7 +74328,9 @@ "region": "United States", "hostname": "us6752.nordvpn.com", "number": 6752, - "ip": "84.17.44.116", + "ips": [ + "84.17.44.116" + ], "tcp": true, "udp": true }, @@ -66974,7 +74338,9 @@ "region": "United States", "hostname": "us6757.nordvpn.com", "number": 6757, - "ip": "45.83.89.115", + "ips": [ + "45.83.89.115" + ], "tcp": true, "udp": true }, @@ -66982,7 +74348,9 @@ "region": "United States", "hostname": "us6758.nordvpn.com", "number": 6758, - "ip": "37.120.215.59", + "ips": [ + "37.120.215.59" + ], "tcp": true, "udp": true }, @@ -66990,7 +74358,9 @@ "region": "United States", "hostname": "us6760.nordvpn.com", "number": 6760, - "ip": "37.120.215.75", + "ips": [ + "37.120.215.75" + ], "tcp": true, "udp": true }, @@ -66998,7 +74368,9 @@ "region": "United States", "hostname": "us6761.nordvpn.com", "number": 6761, - "ip": "37.120.215.83", + "ips": [ + "37.120.215.83" + ], "tcp": true, "udp": true }, @@ -67006,7 +74378,19 @@ "region": "United States", "hostname": "us6762.nordvpn.com", "number": 6762, - "ip": "37.120.215.91", + "ips": [ + "37.120.215.91" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us6763.nordvpn.com", + "number": 6763, + "ips": [ + "37.120.215.99" + ], "tcp": true, "udp": true }, @@ -67014,7 +74398,9 @@ "region": "United States", "hostname": "us6765.nordvpn.com", "number": 6765, - "ip": "37.120.215.115", + "ips": [ + "37.120.215.115" + ], "tcp": true, "udp": true }, @@ -67022,7 +74408,9 @@ "region": "United States", "hostname": "us6766.nordvpn.com", "number": 6766, - "ip": "37.120.215.123", + "ips": [ + "37.120.215.123" + ], "tcp": true, "udp": true }, @@ -67030,7 +74418,9 @@ "region": "United States", "hostname": "us6775.nordvpn.com", "number": 6775, - "ip": "45.152.180.187", + "ips": [ + "45.152.180.187" + ], "tcp": true, "udp": true }, @@ -67038,7 +74428,9 @@ "region": "United States", "hostname": "us6776.nordvpn.com", "number": 6776, - "ip": "45.152.180.235", + "ips": [ + "45.152.180.235" + ], "tcp": true, "udp": true }, @@ -67046,7 +74438,9 @@ "region": "United States", "hostname": "us6777.nordvpn.com", "number": 6777, - "ip": "45.152.180.243", + "ips": [ + "45.152.180.243" + ], "tcp": true, "udp": true }, @@ -67054,7 +74448,9 @@ "region": "United States", "hostname": "us6778.nordvpn.com", "number": 6778, - "ip": "45.152.180.251", + "ips": [ + "45.152.180.251" + ], "tcp": true, "udp": true }, @@ -67062,7 +74458,9 @@ "region": "United States", "hostname": "us6779.nordvpn.com", "number": 6779, - "ip": "217.138.198.155", + "ips": [ + "217.138.198.155" + ], "tcp": true, "udp": true }, @@ -67070,7 +74468,9 @@ "region": "United States", "hostname": "us6780.nordvpn.com", "number": 6780, - "ip": "217.138.198.163", + "ips": [ + "217.138.198.163" + ], "tcp": true, "udp": true }, @@ -67078,7 +74478,9 @@ "region": "United States", "hostname": "us6781.nordvpn.com", "number": 6781, - "ip": "217.138.198.171", + "ips": [ + "217.138.198.171" + ], "tcp": true, "udp": true }, @@ -67086,7 +74488,9 @@ "region": "United States", "hostname": "us6782.nordvpn.com", "number": 6782, - "ip": "217.138.198.179", + "ips": [ + "217.138.198.179" + ], "tcp": true, "udp": true }, @@ -67094,7 +74498,9 @@ "region": "United States", "hostname": "us6783.nordvpn.com", "number": 6783, - "ip": "217.138.198.187", + "ips": [ + "217.138.198.187" + ], "tcp": true, "udp": true }, @@ -67102,7 +74508,9 @@ "region": "United States", "hostname": "us6784.nordvpn.com", "number": 6784, - "ip": "217.138.198.195", + "ips": [ + "217.138.198.195" + ], "tcp": true, "udp": true }, @@ -67110,7 +74518,9 @@ "region": "United States", "hostname": "us6821.nordvpn.com", "number": 6821, - "ip": "62.182.99.93", + "ips": [ + "62.182.99.93" + ], "tcp": true, "udp": true }, @@ -67118,7 +74528,9 @@ "region": "United States", "hostname": "us6822.nordvpn.com", "number": 6822, - "ip": "62.182.99.96", + "ips": [ + "62.182.99.96" + ], "tcp": true, "udp": true }, @@ -67126,7 +74538,9 @@ "region": "United States", "hostname": "us6823.nordvpn.com", "number": 6823, - "ip": "62.182.99.99", + "ips": [ + "62.182.99.99" + ], "tcp": true, "udp": true }, @@ -67134,7 +74548,9 @@ "region": "United States", "hostname": "us6824.nordvpn.com", "number": 6824, - "ip": "62.182.99.102", + "ips": [ + "62.182.99.102" + ], "tcp": true, "udp": true }, @@ -67142,7 +74558,9 @@ "region": "United States", "hostname": "us6825.nordvpn.com", "number": 6825, - "ip": "62.182.99.105", + "ips": [ + "62.182.99.105" + ], "tcp": true, "udp": true }, @@ -67150,7 +74568,9 @@ "region": "United States", "hostname": "us6826.nordvpn.com", "number": 6826, - "ip": "62.182.99.108", + "ips": [ + "62.182.99.108" + ], "tcp": true, "udp": true }, @@ -67158,7 +74578,9 @@ "region": "United States", "hostname": "us6827.nordvpn.com", "number": 6827, - "ip": "62.182.99.111", + "ips": [ + "62.182.99.111" + ], "tcp": true, "udp": true }, @@ -67166,7 +74588,9 @@ "region": "United States", "hostname": "us6828.nordvpn.com", "number": 6828, - "ip": "62.182.99.114", + "ips": [ + "62.182.99.114" + ], "tcp": true, "udp": true }, @@ -67174,7 +74598,9 @@ "region": "United States", "hostname": "us6829.nordvpn.com", "number": 6829, - "ip": "62.182.99.117", + "ips": [ + "62.182.99.117" + ], "tcp": true, "udp": true }, @@ -67182,7 +74608,9 @@ "region": "United States", "hostname": "us6830.nordvpn.com", "number": 6830, - "ip": "62.182.99.120", + "ips": [ + "62.182.99.120" + ], "tcp": true, "udp": true }, @@ -67190,7 +74618,9 @@ "region": "United States", "hostname": "us6860.nordvpn.com", "number": 6860, - "ip": "64.44.140.11", + "ips": [ + "64.44.140.11" + ], "tcp": true, "udp": true }, @@ -67198,7 +74628,9 @@ "region": "United States", "hostname": "us6861.nordvpn.com", "number": 6861, - "ip": "64.44.140.27", + "ips": [ + "64.44.140.27" + ], "tcp": true, "udp": true }, @@ -67206,7 +74638,9 @@ "region": "United States", "hostname": "us6862.nordvpn.com", "number": 6862, - "ip": "64.44.140.35", + "ips": [ + "64.44.140.35" + ], "tcp": true, "udp": true }, @@ -67214,7 +74648,9 @@ "region": "United States", "hostname": "us6863.nordvpn.com", "number": 6863, - "ip": "64.44.140.19", + "ips": [ + "64.44.140.19" + ], "tcp": true, "udp": true }, @@ -67222,7 +74658,9 @@ "region": "United States", "hostname": "us6864.nordvpn.com", "number": 6864, - "ip": "64.44.140.51", + "ips": [ + "64.44.140.51" + ], "tcp": true, "udp": true }, @@ -67230,7 +74668,9 @@ "region": "United States", "hostname": "us6865.nordvpn.com", "number": 6865, - "ip": "64.44.140.59", + "ips": [ + "64.44.140.59" + ], "tcp": true, "udp": true }, @@ -67238,7 +74678,9 @@ "region": "United States", "hostname": "us6866.nordvpn.com", "number": 6866, - "ip": "64.44.140.43", + "ips": [ + "64.44.140.43" + ], "tcp": true, "udp": true }, @@ -67246,7 +74688,9 @@ "region": "United States", "hostname": "us6867.nordvpn.com", "number": 6867, - "ip": "64.44.140.3", + "ips": [ + "64.44.140.3" + ], "tcp": true, "udp": true }, @@ -67254,7 +74698,9 @@ "region": "United States", "hostname": "us6880.nordvpn.com", "number": 6880, - "ip": "89.187.182.81", + "ips": [ + "89.187.182.81" + ], "tcp": true, "udp": true }, @@ -67262,7 +74708,9 @@ "region": "United States", "hostname": "us6881.nordvpn.com", "number": 6881, - "ip": "89.187.182.86", + "ips": [ + "89.187.182.86" + ], "tcp": true, "udp": true }, @@ -67270,7 +74718,9 @@ "region": "United States", "hostname": "us6882.nordvpn.com", "number": 6882, - "ip": "89.187.182.91", + "ips": [ + "89.187.182.91" + ], "tcp": true, "udp": true }, @@ -67278,7 +74728,9 @@ "region": "United States", "hostname": "us6883.nordvpn.com", "number": 6883, - "ip": "89.187.182.96", + "ips": [ + "89.187.182.96" + ], "tcp": true, "udp": true }, @@ -67286,7 +74738,9 @@ "region": "United States", "hostname": "us6901.nordvpn.com", "number": 6901, - "ip": "64.44.80.163", + "ips": [ + "64.44.80.163" + ], "tcp": true, "udp": true }, @@ -67294,7 +74748,9 @@ "region": "United States", "hostname": "us6902.nordvpn.com", "number": 6902, - "ip": "64.44.80.171", + "ips": [ + "64.44.80.171" + ], "tcp": true, "udp": true }, @@ -67302,7 +74758,9 @@ "region": "United States", "hostname": "us6903.nordvpn.com", "number": 6903, - "ip": "64.44.80.179", + "ips": [ + "64.44.80.179" + ], "tcp": true, "udp": true }, @@ -67310,7 +74768,9 @@ "region": "United States", "hostname": "us6904.nordvpn.com", "number": 6904, - "ip": "64.44.80.187", + "ips": [ + "64.44.80.187" + ], "tcp": true, "udp": true }, @@ -67318,7 +74778,9 @@ "region": "United States", "hostname": "us6911.nordvpn.com", "number": 6911, - "ip": "217.138.198.203", + "ips": [ + "217.138.198.203" + ], "tcp": true, "udp": true }, @@ -67326,7 +74788,9 @@ "region": "United States", "hostname": "us6912.nordvpn.com", "number": 6912, - "ip": "217.138.198.211", + "ips": [ + "217.138.198.211" + ], "tcp": true, "udp": true }, @@ -67334,7 +74798,9 @@ "region": "United States", "hostname": "us6913.nordvpn.com", "number": 6913, - "ip": "217.138.198.219", + "ips": [ + "217.138.198.219" + ], "tcp": true, "udp": true }, @@ -67342,7 +74808,9 @@ "region": "United States", "hostname": "us6914.nordvpn.com", "number": 6914, - "ip": "217.138.198.227", + "ips": [ + "217.138.198.227" + ], "tcp": true, "udp": true }, @@ -67350,7 +74818,9 @@ "region": "United States", "hostname": "us6915.nordvpn.com", "number": 6915, - "ip": "84.17.35.246", + "ips": [ + "84.17.35.246" + ], "tcp": true, "udp": true }, @@ -67358,7 +74828,9 @@ "region": "United States", "hostname": "us6916.nordvpn.com", "number": 6916, - "ip": "84.17.35.226", + "ips": [ + "84.17.35.226" + ], "tcp": true, "udp": true }, @@ -67366,7 +74838,9 @@ "region": "United States", "hostname": "us6917.nordvpn.com", "number": 6917, - "ip": "84.17.35.231", + "ips": [ + "84.17.35.231" + ], "tcp": true, "udp": true }, @@ -67374,7 +74848,9 @@ "region": "United States", "hostname": "us6918.nordvpn.com", "number": 6918, - "ip": "84.17.35.236", + "ips": [ + "84.17.35.236" + ], "tcp": true, "udp": true }, @@ -67382,7 +74858,9 @@ "region": "United States", "hostname": "us6919.nordvpn.com", "number": 6919, - "ip": "84.17.35.241", + "ips": [ + "84.17.35.241" + ], "tcp": true, "udp": true }, @@ -67390,7 +74868,9 @@ "region": "United States", "hostname": "us6944.nordvpn.com", "number": 6944, - "ip": "62.182.99.123", + "ips": [ + "62.182.99.123" + ], "tcp": true, "udp": true }, @@ -67398,7 +74878,9 @@ "region": "United States", "hostname": "us6945.nordvpn.com", "number": 6945, - "ip": "89.187.182.101", + "ips": [ + "89.187.182.101" + ], "tcp": true, "udp": true }, @@ -67406,7 +74888,9 @@ "region": "United States", "hostname": "us6946.nordvpn.com", "number": 6946, - "ip": "62.182.99.126", + "ips": [ + "62.182.99.126" + ], "tcp": true, "udp": true }, @@ -67414,7 +74898,9 @@ "region": "United States", "hostname": "us6947.nordvpn.com", "number": 6947, - "ip": "62.182.99.129", + "ips": [ + "62.182.99.129" + ], "tcp": true, "udp": true }, @@ -67422,7 +74908,9 @@ "region": "United States", "hostname": "us6948.nordvpn.com", "number": 6948, - "ip": "62.182.99.132", + "ips": [ + "62.182.99.132" + ], "tcp": true, "udp": true }, @@ -67430,7 +74918,9 @@ "region": "United States", "hostname": "us6949.nordvpn.com", "number": 6949, - "ip": "62.182.99.135", + "ips": [ + "62.182.99.135" + ], "tcp": true, "udp": true }, @@ -67438,7 +74928,9 @@ "region": "United States", "hostname": "us6950.nordvpn.com", "number": 6950, - "ip": "62.182.99.138", + "ips": [ + "62.182.99.138" + ], "tcp": true, "udp": true }, @@ -67446,7 +74938,9 @@ "region": "United States", "hostname": "us6951.nordvpn.com", "number": 6951, - "ip": "62.182.99.141", + "ips": [ + "62.182.99.141" + ], "tcp": true, "udp": true }, @@ -67454,7 +74948,9 @@ "region": "United States", "hostname": "us6952.nordvpn.com", "number": 6952, - "ip": "62.182.99.144", + "ips": [ + "62.182.99.144" + ], "tcp": true, "udp": true }, @@ -67462,7 +74958,9 @@ "region": "United States", "hostname": "us6953.nordvpn.com", "number": 6953, - "ip": "62.182.99.147", + "ips": [ + "62.182.99.147" + ], "tcp": true, "udp": true }, @@ -67470,7 +74968,9 @@ "region": "United States", "hostname": "us6954.nordvpn.com", "number": 6954, - "ip": "62.182.99.150", + "ips": [ + "62.182.99.150" + ], "tcp": true, "udp": true }, @@ -67478,7 +74978,9 @@ "region": "United States", "hostname": "us8028.nordvpn.com", "number": 8028, - "ip": "92.119.17.3", + "ips": [ + "92.119.17.3" + ], "tcp": true, "udp": true }, @@ -67486,7 +74988,9 @@ "region": "United States", "hostname": "us8029.nordvpn.com", "number": 8029, - "ip": "92.119.17.6", + "ips": [ + "92.119.17.6" + ], "tcp": true, "udp": true }, @@ -67494,7 +74998,9 @@ "region": "United States", "hostname": "us8030.nordvpn.com", "number": 8030, - "ip": "92.119.17.9", + "ips": [ + "92.119.17.9" + ], "tcp": true, "udp": true }, @@ -67502,7 +75008,9 @@ "region": "United States", "hostname": "us8031.nordvpn.com", "number": 8031, - "ip": "92.119.17.12", + "ips": [ + "92.119.17.12" + ], "tcp": true, "udp": true }, @@ -67510,7 +75018,9 @@ "region": "United States", "hostname": "us8032.nordvpn.com", "number": 8032, - "ip": "92.119.17.15", + "ips": [ + "92.119.17.15" + ], "tcp": true, "udp": true }, @@ -67518,7 +75028,9 @@ "region": "United States", "hostname": "us8033.nordvpn.com", "number": 8033, - "ip": "92.119.17.18", + "ips": [ + "92.119.17.18" + ], "tcp": true, "udp": true }, @@ -67526,7 +75038,9 @@ "region": "United States", "hostname": "us8034.nordvpn.com", "number": 8034, - "ip": "92.119.17.21", + "ips": [ + "92.119.17.21" + ], "tcp": true, "udp": true }, @@ -67534,7 +75048,9 @@ "region": "United States", "hostname": "us8035.nordvpn.com", "number": 8035, - "ip": "92.119.17.24", + "ips": [ + "92.119.17.24" + ], "tcp": true, "udp": true }, @@ -67542,7 +75058,9 @@ "region": "United States", "hostname": "us8036.nordvpn.com", "number": 8036, - "ip": "92.119.17.27", + "ips": [ + "92.119.17.27" + ], "tcp": true, "udp": true }, @@ -67550,7 +75068,9 @@ "region": "United States", "hostname": "us8037.nordvpn.com", "number": 8037, - "ip": "92.119.17.30", + "ips": [ + "92.119.17.30" + ], "tcp": true, "udp": true }, @@ -67558,7 +75078,9 @@ "region": "United States", "hostname": "us8038.nordvpn.com", "number": 8038, - "ip": "92.119.17.33", + "ips": [ + "92.119.17.33" + ], "tcp": true, "udp": true }, @@ -67566,7 +75088,9 @@ "region": "United States", "hostname": "us8039.nordvpn.com", "number": 8039, - "ip": "92.119.17.36", + "ips": [ + "92.119.17.36" + ], "tcp": true, "udp": true }, @@ -67574,7 +75098,9 @@ "region": "United States", "hostname": "us8040.nordvpn.com", "number": 8040, - "ip": "92.119.17.39", + "ips": [ + "92.119.17.39" + ], "tcp": true, "udp": true }, @@ -67582,7 +75108,9 @@ "region": "United States", "hostname": "us8041.nordvpn.com", "number": 8041, - "ip": "92.119.17.42", + "ips": [ + "92.119.17.42" + ], "tcp": true, "udp": true }, @@ -67590,7 +75118,9 @@ "region": "United States", "hostname": "us8042.nordvpn.com", "number": 8042, - "ip": "92.119.17.45", + "ips": [ + "92.119.17.45" + ], "tcp": true, "udp": true }, @@ -67598,7 +75128,9 @@ "region": "United States", "hostname": "us8043.nordvpn.com", "number": 8043, - "ip": "92.119.17.48", + "ips": [ + "92.119.17.48" + ], "tcp": true, "udp": true }, @@ -67606,7 +75138,9 @@ "region": "United States", "hostname": "us8044.nordvpn.com", "number": 8044, - "ip": "92.119.17.51", + "ips": [ + "92.119.17.51" + ], "tcp": true, "udp": true }, @@ -67614,7 +75148,9 @@ "region": "United States", "hostname": "us8045.nordvpn.com", "number": 8045, - "ip": "92.119.17.54", + "ips": [ + "92.119.17.54" + ], "tcp": true, "udp": true }, @@ -67622,7 +75158,9 @@ "region": "United States", "hostname": "us8046.nordvpn.com", "number": 8046, - "ip": "92.119.17.57", + "ips": [ + "92.119.17.57" + ], "tcp": true, "udp": true }, @@ -67630,7 +75168,9 @@ "region": "United States", "hostname": "us8047.nordvpn.com", "number": 8047, - "ip": "92.119.17.60", + "ips": [ + "92.119.17.60" + ], "tcp": true, "udp": true }, @@ -67638,7 +75178,9 @@ "region": "United States", "hostname": "us8048.nordvpn.com", "number": 8048, - "ip": "92.119.17.63", + "ips": [ + "92.119.17.63" + ], "tcp": true, "udp": true }, @@ -67646,7 +75188,9 @@ "region": "United States", "hostname": "us8049.nordvpn.com", "number": 8049, - "ip": "92.119.17.66", + "ips": [ + "92.119.17.66" + ], "tcp": true, "udp": true }, @@ -67654,7 +75198,9 @@ "region": "United States", "hostname": "us8050.nordvpn.com", "number": 8050, - "ip": "92.119.17.69", + "ips": [ + "92.119.17.69" + ], "tcp": true, "udp": true }, @@ -67662,7 +75208,9 @@ "region": "United States", "hostname": "us8051.nordvpn.com", "number": 8051, - "ip": "92.119.17.72", + "ips": [ + "92.119.17.72" + ], "tcp": true, "udp": true }, @@ -67670,7 +75218,9 @@ "region": "United States", "hostname": "us8052.nordvpn.com", "number": 8052, - "ip": "92.119.17.75", + "ips": [ + "92.119.17.75" + ], "tcp": true, "udp": true }, @@ -67678,7 +75228,9 @@ "region": "United States", "hostname": "us8053.nordvpn.com", "number": 8053, - "ip": "92.119.17.78", + "ips": [ + "92.119.17.78" + ], "tcp": true, "udp": true }, @@ -67686,7 +75238,9 @@ "region": "United States", "hostname": "us8054.nordvpn.com", "number": 8054, - "ip": "92.119.17.81", + "ips": [ + "92.119.17.81" + ], "tcp": true, "udp": true }, @@ -67694,7 +75248,9 @@ "region": "United States", "hostname": "us8055.nordvpn.com", "number": 8055, - "ip": "92.119.17.84", + "ips": [ + "92.119.17.84" + ], "tcp": true, "udp": true }, @@ -67702,7 +75258,9 @@ "region": "United States", "hostname": "us8056.nordvpn.com", "number": 8056, - "ip": "92.119.17.87", + "ips": [ + "92.119.17.87" + ], "tcp": true, "udp": true }, @@ -67710,7 +75268,9 @@ "region": "United States", "hostname": "us8057.nordvpn.com", "number": 8057, - "ip": "92.119.17.90", + "ips": [ + "92.119.17.90" + ], "tcp": true, "udp": true }, @@ -67718,7 +75278,9 @@ "region": "United States", "hostname": "us8083.nordvpn.com", "number": 8083, - "ip": "193.27.12.91", + "ips": [ + "193.27.12.91" + ], "tcp": true, "udp": true }, @@ -67726,7 +75288,9 @@ "region": "United States", "hostname": "us8095.nordvpn.com", "number": 8095, - "ip": "185.247.70.3", + "ips": [ + "185.247.70.3" + ], "tcp": true, "udp": true }, @@ -67734,7 +75298,9 @@ "region": "United States", "hostname": "us8096.nordvpn.com", "number": 8096, - "ip": "185.247.70.11", + "ips": [ + "185.247.70.11" + ], "tcp": true, "udp": true }, @@ -67742,7 +75308,9 @@ "region": "United States", "hostname": "us8097.nordvpn.com", "number": 8097, - "ip": "185.247.70.19", + "ips": [ + "185.247.70.19" + ], "tcp": true, "udp": true }, @@ -67750,7 +75318,9 @@ "region": "United States", "hostname": "us8098.nordvpn.com", "number": 8098, - "ip": "185.247.70.27", + "ips": [ + "185.247.70.27" + ], "tcp": true, "udp": true }, @@ -67758,7 +75328,9 @@ "region": "United States", "hostname": "us8099.nordvpn.com", "number": 8099, - "ip": "185.247.70.35", + "ips": [ + "185.247.70.35" + ], "tcp": true, "udp": true }, @@ -67766,7 +75338,9 @@ "region": "United States", "hostname": "us8100.nordvpn.com", "number": 8100, - "ip": "185.247.70.43", + "ips": [ + "185.247.70.43" + ], "tcp": true, "udp": true }, @@ -67774,7 +75348,9 @@ "region": "United States", "hostname": "us8101.nordvpn.com", "number": 8101, - "ip": "185.247.70.51", + "ips": [ + "185.247.70.51" + ], "tcp": true, "udp": true }, @@ -67782,7 +75358,9 @@ "region": "United States", "hostname": "us8102.nordvpn.com", "number": 8102, - "ip": "185.247.70.59", + "ips": [ + "185.247.70.59" + ], "tcp": true, "udp": true }, @@ -67790,7 +75368,9 @@ "region": "United States", "hostname": "us8103.nordvpn.com", "number": 8103, - "ip": "185.247.70.67", + "ips": [ + "185.247.70.67" + ], "tcp": true, "udp": true }, @@ -67798,7 +75378,9 @@ "region": "United States", "hostname": "us8104.nordvpn.com", "number": 8104, - "ip": "185.247.70.75", + "ips": [ + "185.247.70.75" + ], "tcp": true, "udp": true }, @@ -67806,7 +75388,9 @@ "region": "United States", "hostname": "us8105.nordvpn.com", "number": 8105, - "ip": "185.247.70.83", + "ips": [ + "185.247.70.83" + ], "tcp": true, "udp": true }, @@ -67814,7 +75398,9 @@ "region": "United States", "hostname": "us8106.nordvpn.com", "number": 8106, - "ip": "185.247.70.91", + "ips": [ + "185.247.70.91" + ], "tcp": true, "udp": true }, @@ -67822,7 +75408,9 @@ "region": "United States", "hostname": "us8107.nordvpn.com", "number": 8107, - "ip": "185.247.70.99", + "ips": [ + "185.247.70.99" + ], "tcp": true, "udp": true }, @@ -67830,7 +75418,9 @@ "region": "United States", "hostname": "us8108.nordvpn.com", "number": 8108, - "ip": "185.247.70.107", + "ips": [ + "185.247.70.107" + ], "tcp": true, "udp": true }, @@ -67838,7 +75428,9 @@ "region": "United States", "hostname": "us8109.nordvpn.com", "number": 8109, - "ip": "185.247.70.115", + "ips": [ + "185.247.70.115" + ], "tcp": true, "udp": true }, @@ -67846,7 +75438,9 @@ "region": "United States", "hostname": "us8110.nordvpn.com", "number": 8110, - "ip": "185.247.70.123", + "ips": [ + "185.247.70.123" + ], "tcp": true, "udp": true }, @@ -67854,7 +75448,19 @@ "region": "United States", "hostname": "us8111.nordvpn.com", "number": 8111, - "ip": "185.247.70.131", + "ips": [ + "185.247.70.131" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us8112.nordvpn.com", + "number": 8112, + "ips": [ + "185.247.70.139" + ], "tcp": true, "udp": true }, @@ -67862,7 +75468,9 @@ "region": "United States", "hostname": "us8113.nordvpn.com", "number": 8113, - "ip": "185.247.70.147", + "ips": [ + "185.247.70.147" + ], "tcp": true, "udp": true }, @@ -67870,7 +75478,9 @@ "region": "United States", "hostname": "us8114.nordvpn.com", "number": 8114, - "ip": "185.247.70.155", + "ips": [ + "185.247.70.155" + ], "tcp": true, "udp": true }, @@ -67878,7 +75488,9 @@ "region": "United States", "hostname": "us8115.nordvpn.com", "number": 8115, - "ip": "185.247.70.163", + "ips": [ + "185.247.70.163" + ], "tcp": true, "udp": true }, @@ -67886,7 +75498,9 @@ "region": "United States", "hostname": "us8116.nordvpn.com", "number": 8116, - "ip": "185.247.70.171", + "ips": [ + "185.247.70.171" + ], "tcp": true, "udp": true }, @@ -67894,7 +75508,9 @@ "region": "United States", "hostname": "us8117.nordvpn.com", "number": 8117, - "ip": "185.247.70.179", + "ips": [ + "185.247.70.179" + ], "tcp": true, "udp": true }, @@ -67902,7 +75518,9 @@ "region": "United States", "hostname": "us8118.nordvpn.com", "number": 8118, - "ip": "185.247.70.187", + "ips": [ + "185.247.70.187" + ], "tcp": true, "udp": true }, @@ -67910,7 +75528,9 @@ "region": "United States", "hostname": "us8119.nordvpn.com", "number": 8119, - "ip": "185.247.70.195", + "ips": [ + "185.247.70.195" + ], "tcp": true, "udp": true }, @@ -67918,7 +75538,9 @@ "region": "United States", "hostname": "us8120.nordvpn.com", "number": 8120, - "ip": "185.247.70.203", + "ips": [ + "185.247.70.203" + ], "tcp": true, "udp": true }, @@ -67926,7 +75548,9 @@ "region": "United States", "hostname": "us8121.nordvpn.com", "number": 8121, - "ip": "185.247.70.211", + "ips": [ + "185.247.70.211" + ], "tcp": true, "udp": true }, @@ -67934,7 +75558,9 @@ "region": "United States", "hostname": "us8122.nordvpn.com", "number": 8122, - "ip": "185.247.70.219", + "ips": [ + "185.247.70.219" + ], "tcp": true, "udp": true }, @@ -67942,7 +75568,9 @@ "region": "United States", "hostname": "us8123.nordvpn.com", "number": 8123, - "ip": "185.247.70.227", + "ips": [ + "185.247.70.227" + ], "tcp": true, "udp": true }, @@ -67950,7 +75578,9 @@ "region": "United States", "hostname": "us8124.nordvpn.com", "number": 8124, - "ip": "185.247.70.235", + "ips": [ + "185.247.70.235" + ], "tcp": true, "udp": true }, @@ -67958,7 +75588,9 @@ "region": "United States", "hostname": "us8125.nordvpn.com", "number": 8125, - "ip": "185.247.70.243", + "ips": [ + "185.247.70.243" + ], "tcp": true, "udp": true }, @@ -67966,7 +75598,9 @@ "region": "United States", "hostname": "us8126.nordvpn.com", "number": 8126, - "ip": "185.247.70.251", + "ips": [ + "185.247.70.251" + ], "tcp": true, "udp": true }, @@ -67974,7 +75608,9 @@ "region": "United States", "hostname": "us8127.nordvpn.com", "number": 8127, - "ip": "194.110.112.131", + "ips": [ + "194.110.112.131" + ], "tcp": true, "udp": true }, @@ -67982,7 +75618,9 @@ "region": "United States", "hostname": "us8128.nordvpn.com", "number": 8128, - "ip": "194.110.112.139", + "ips": [ + "194.110.112.139" + ], "tcp": true, "udp": true }, @@ -67990,7 +75628,9 @@ "region": "United States", "hostname": "us8129.nordvpn.com", "number": 8129, - "ip": "194.110.112.147", + "ips": [ + "194.110.112.147" + ], "tcp": true, "udp": true }, @@ -67998,7 +75638,9 @@ "region": "United States", "hostname": "us8130.nordvpn.com", "number": 8130, - "ip": "194.110.112.155", + "ips": [ + "194.110.112.155" + ], "tcp": true, "udp": true }, @@ -68006,7 +75648,9 @@ "region": "United States", "hostname": "us8131.nordvpn.com", "number": 8131, - "ip": "194.110.112.163", + "ips": [ + "194.110.112.163" + ], "tcp": true, "udp": true }, @@ -68014,7 +75658,9 @@ "region": "United States", "hostname": "us8132.nordvpn.com", "number": 8132, - "ip": "194.110.112.171", + "ips": [ + "194.110.112.171" + ], "tcp": true, "udp": true }, @@ -68022,7 +75668,9 @@ "region": "United States", "hostname": "us8133.nordvpn.com", "number": 8133, - "ip": "194.110.112.179", + "ips": [ + "194.110.112.179" + ], "tcp": true, "udp": true }, @@ -68030,7 +75678,9 @@ "region": "United States", "hostname": "us8134.nordvpn.com", "number": 8134, - "ip": "194.110.112.187", + "ips": [ + "194.110.112.187" + ], "tcp": true, "udp": true }, @@ -68038,7 +75688,9 @@ "region": "United States", "hostname": "us8192.nordvpn.com", "number": 8192, - "ip": "185.93.0.116", + "ips": [ + "185.93.0.116" + ], "tcp": true, "udp": true }, @@ -68046,7 +75698,9 @@ "region": "United States", "hostname": "us8193.nordvpn.com", "number": 8193, - "ip": "185.93.0.119", + "ips": [ + "185.93.0.119" + ], "tcp": true, "udp": true }, @@ -68054,7 +75708,9 @@ "region": "United States", "hostname": "us8194.nordvpn.com", "number": 8194, - "ip": "185.93.0.113", + "ips": [ + "185.93.0.113" + ], "tcp": true, "udp": true }, @@ -68062,7 +75718,9 @@ "region": "United States", "hostname": "us8195.nordvpn.com", "number": 8195, - "ip": "92.119.17.93", + "ips": [ + "92.119.17.93" + ], "tcp": true, "udp": true }, @@ -68070,7 +75728,9 @@ "region": "United States", "hostname": "us8196.nordvpn.com", "number": 8196, - "ip": "92.119.17.96", + "ips": [ + "92.119.17.96" + ], "tcp": true, "udp": true }, @@ -68078,7 +75738,9 @@ "region": "United States", "hostname": "us8197.nordvpn.com", "number": 8197, - "ip": "92.119.17.99", + "ips": [ + "92.119.17.99" + ], "tcp": true, "udp": true }, @@ -68086,7 +75748,9 @@ "region": "United States", "hostname": "us8198.nordvpn.com", "number": 8198, - "ip": "92.119.17.102", + "ips": [ + "92.119.17.102" + ], "tcp": true, "udp": true }, @@ -68094,7 +75758,9 @@ "region": "United States", "hostname": "us8199.nordvpn.com", "number": 8199, - "ip": "92.119.17.105", + "ips": [ + "92.119.17.105" + ], "tcp": true, "udp": true }, @@ -68102,7 +75768,9 @@ "region": "United States", "hostname": "us8200.nordvpn.com", "number": 8200, - "ip": "92.119.17.108", + "ips": [ + "92.119.17.108" + ], "tcp": true, "udp": true }, @@ -68110,7 +75778,9 @@ "region": "United States", "hostname": "us8201.nordvpn.com", "number": 8201, - "ip": "92.119.17.111", + "ips": [ + "92.119.17.111" + ], "tcp": true, "udp": true }, @@ -68118,7 +75788,9 @@ "region": "United States", "hostname": "us8202.nordvpn.com", "number": 8202, - "ip": "92.119.17.114", + "ips": [ + "92.119.17.114" + ], "tcp": true, "udp": true }, @@ -68126,7 +75798,9 @@ "region": "United States", "hostname": "us8203.nordvpn.com", "number": 8203, - "ip": "92.119.17.117", + "ips": [ + "92.119.17.117" + ], "tcp": true, "udp": true }, @@ -68134,7 +75808,9 @@ "region": "United States", "hostname": "us8204.nordvpn.com", "number": 8204, - "ip": "92.119.17.120", + "ips": [ + "92.119.17.120" + ], "tcp": true, "udp": true }, @@ -68142,7 +75818,9 @@ "region": "United States", "hostname": "us8205.nordvpn.com", "number": 8205, - "ip": "92.119.17.123", + "ips": [ + "92.119.17.123" + ], "tcp": true, "udp": true }, @@ -68150,7 +75828,9 @@ "region": "United States", "hostname": "us8206.nordvpn.com", "number": 8206, - "ip": "92.119.17.126", + "ips": [ + "92.119.17.126" + ], "tcp": true, "udp": true }, @@ -68158,7 +75838,9 @@ "region": "United States", "hostname": "us8207.nordvpn.com", "number": 8207, - "ip": "92.119.17.129", + "ips": [ + "92.119.17.129" + ], "tcp": true, "udp": true }, @@ -68166,7 +75848,9 @@ "region": "United States", "hostname": "us8208.nordvpn.com", "number": 8208, - "ip": "92.119.17.132", + "ips": [ + "92.119.17.132" + ], "tcp": true, "udp": true }, @@ -68174,7 +75858,9 @@ "region": "United States", "hostname": "us8209.nordvpn.com", "number": 8209, - "ip": "92.119.17.135", + "ips": [ + "92.119.17.135" + ], "tcp": true, "udp": true }, @@ -68182,7 +75868,9 @@ "region": "United States", "hostname": "us8210.nordvpn.com", "number": 8210, - "ip": "92.119.17.138", + "ips": [ + "92.119.17.138" + ], "tcp": true, "udp": true }, @@ -68190,7 +75878,9 @@ "region": "United States", "hostname": "us8211.nordvpn.com", "number": 8211, - "ip": "92.119.17.141", + "ips": [ + "92.119.17.141" + ], "tcp": true, "udp": true }, @@ -68198,7 +75888,9 @@ "region": "United States", "hostname": "us8212.nordvpn.com", "number": 8212, - "ip": "92.119.17.144", + "ips": [ + "92.119.17.144" + ], "tcp": true, "udp": true }, @@ -68206,7 +75898,9 @@ "region": "United States", "hostname": "us8213.nordvpn.com", "number": 8213, - "ip": "92.119.17.147", + "ips": [ + "92.119.17.147" + ], "tcp": true, "udp": true }, @@ -68214,7 +75908,9 @@ "region": "United States", "hostname": "us8214.nordvpn.com", "number": 8214, - "ip": "92.119.17.150", + "ips": [ + "92.119.17.150" + ], "tcp": true, "udp": true }, @@ -68222,7 +75918,9 @@ "region": "United States", "hostname": "us8215.nordvpn.com", "number": 8215, - "ip": "92.119.17.153", + "ips": [ + "92.119.17.153" + ], "tcp": true, "udp": true }, @@ -68230,7 +75928,9 @@ "region": "United States", "hostname": "us8216.nordvpn.com", "number": 8216, - "ip": "92.119.17.156", + "ips": [ + "92.119.17.156" + ], "tcp": true, "udp": true }, @@ -68238,7 +75938,9 @@ "region": "United States", "hostname": "us8217.nordvpn.com", "number": 8217, - "ip": "92.119.17.159", + "ips": [ + "92.119.17.159" + ], "tcp": true, "udp": true }, @@ -68246,7 +75948,9 @@ "region": "United States", "hostname": "us8218.nordvpn.com", "number": 8218, - "ip": "92.119.17.162", + "ips": [ + "92.119.17.162" + ], "tcp": true, "udp": true }, @@ -68254,7 +75958,9 @@ "region": "United States", "hostname": "us8219.nordvpn.com", "number": 8219, - "ip": "92.119.17.165", + "ips": [ + "92.119.17.165" + ], "tcp": true, "udp": true }, @@ -68262,7 +75968,9 @@ "region": "United States", "hostname": "us8220.nordvpn.com", "number": 8220, - "ip": "92.119.17.168", + "ips": [ + "92.119.17.168" + ], "tcp": true, "udp": true }, @@ -68270,7 +75978,9 @@ "region": "United States", "hostname": "us8221.nordvpn.com", "number": 8221, - "ip": "92.119.17.171", + "ips": [ + "92.119.17.171" + ], "tcp": true, "udp": true }, @@ -68278,7 +75988,9 @@ "region": "United States", "hostname": "us8222.nordvpn.com", "number": 8222, - "ip": "92.119.17.174", + "ips": [ + "92.119.17.174" + ], "tcp": true, "udp": true }, @@ -68286,7 +75998,9 @@ "region": "United States", "hostname": "us8223.nordvpn.com", "number": 8223, - "ip": "92.119.17.177", + "ips": [ + "92.119.17.177" + ], "tcp": true, "udp": true }, @@ -68294,7 +76008,9 @@ "region": "United States", "hostname": "us8224.nordvpn.com", "number": 8224, - "ip": "92.119.17.180", + "ips": [ + "92.119.17.180" + ], "tcp": true, "udp": true }, @@ -68302,7 +76018,9 @@ "region": "United States", "hostname": "us8225.nordvpn.com", "number": 8225, - "ip": "92.119.17.183", + "ips": [ + "92.119.17.183" + ], "tcp": true, "udp": true }, @@ -68310,7 +76028,9 @@ "region": "United States", "hostname": "us8226.nordvpn.com", "number": 8226, - "ip": "92.119.17.186", + "ips": [ + "92.119.17.186" + ], "tcp": true, "udp": true }, @@ -68318,7 +76038,9 @@ "region": "United States", "hostname": "us8227.nordvpn.com", "number": 8227, - "ip": "212.102.45.102", + "ips": [ + "212.102.45.102" + ], "tcp": true, "udp": true }, @@ -68326,7 +76048,9 @@ "region": "United States", "hostname": "us8228.nordvpn.com", "number": 8228, - "ip": "212.102.45.105", + "ips": [ + "212.102.45.105" + ], "tcp": true, "udp": true }, @@ -68334,7 +76058,9 @@ "region": "United States", "hostname": "us8229.nordvpn.com", "number": 8229, - "ip": "212.102.45.108", + "ips": [ + "212.102.45.108" + ], "tcp": true, "udp": true }, @@ -68342,7 +76068,9 @@ "region": "United States", "hostname": "us8230.nordvpn.com", "number": 8230, - "ip": "212.102.45.120", + "ips": [ + "212.102.45.120" + ], "tcp": true, "udp": true }, @@ -68350,7 +76078,9 @@ "region": "United States", "hostname": "us8231.nordvpn.com", "number": 8231, - "ip": "212.102.44.38", + "ips": [ + "212.102.44.38" + ], "tcp": true, "udp": true }, @@ -68358,7 +76088,19 @@ "region": "United States", "hostname": "us8232.nordvpn.com", "number": 8232, - "ip": "212.102.45.122", + "ips": [ + "212.102.45.122" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us8233.nordvpn.com", + "number": 8233, + "ips": [ + "212.102.44.35" + ], "tcp": true, "udp": true }, @@ -68366,7 +76108,9 @@ "region": "United States", "hostname": "us8234.nordvpn.com", "number": 8234, - "ip": "212.102.45.111", + "ips": [ + "212.102.45.111" + ], "tcp": true, "udp": true }, @@ -68374,7 +76118,9 @@ "region": "United States", "hostname": "us8235.nordvpn.com", "number": 8235, - "ip": "212.102.45.114", + "ips": [ + "212.102.45.114" + ], "tcp": true, "udp": true }, @@ -68382,7 +76128,9 @@ "region": "United States", "hostname": "us8236.nordvpn.com", "number": 8236, - "ip": "212.102.45.117", + "ips": [ + "212.102.45.117" + ], "tcp": true, "udp": true }, @@ -68390,7 +76138,9 @@ "region": "United States", "hostname": "us8237.nordvpn.com", "number": 8237, - "ip": "212.102.47.2", + "ips": [ + "212.102.47.2" + ], "tcp": true, "udp": true }, @@ -68398,7 +76148,9 @@ "region": "United States", "hostname": "us8238.nordvpn.com", "number": 8238, - "ip": "212.102.47.5", + "ips": [ + "212.102.47.5" + ], "tcp": true, "udp": true }, @@ -68406,7 +76158,9 @@ "region": "United States", "hostname": "us8239.nordvpn.com", "number": 8239, - "ip": "212.102.47.8", + "ips": [ + "212.102.47.8" + ], "tcp": true, "udp": true }, @@ -68414,7 +76168,9 @@ "region": "United States", "hostname": "us8240.nordvpn.com", "number": 8240, - "ip": "212.102.47.11", + "ips": [ + "212.102.47.11" + ], "tcp": true, "udp": true }, @@ -68422,7 +76178,9 @@ "region": "United States", "hostname": "us8241.nordvpn.com", "number": 8241, - "ip": "212.102.47.14", + "ips": [ + "212.102.47.14" + ], "tcp": true, "udp": true }, @@ -68430,7 +76188,9 @@ "region": "United States", "hostname": "us8242.nordvpn.com", "number": 8242, - "ip": "212.102.47.17", + "ips": [ + "212.102.47.17" + ], "tcp": true, "udp": true }, @@ -68438,7 +76198,9 @@ "region": "United States", "hostname": "us8243.nordvpn.com", "number": 8243, - "ip": "212.102.47.20", + "ips": [ + "212.102.47.20" + ], "tcp": true, "udp": true }, @@ -68446,7 +76208,9 @@ "region": "United States", "hostname": "us8244.nordvpn.com", "number": 8244, - "ip": "212.102.47.23", + "ips": [ + "212.102.47.23" + ], "tcp": true, "udp": true }, @@ -68454,7 +76218,9 @@ "region": "United States", "hostname": "us8245.nordvpn.com", "number": 8245, - "ip": "212.102.47.26", + "ips": [ + "212.102.47.26" + ], "tcp": true, "udp": true }, @@ -68462,7 +76228,9 @@ "region": "United States", "hostname": "us8246.nordvpn.com", "number": 8246, - "ip": "212.102.47.29", + "ips": [ + "212.102.47.29" + ], "tcp": true, "udp": true }, @@ -68470,7 +76238,9 @@ "region": "United States", "hostname": "us8247.nordvpn.com", "number": 8247, - "ip": "212.102.47.32", + "ips": [ + "212.102.47.32" + ], "tcp": true, "udp": true }, @@ -68478,7 +76248,9 @@ "region": "United States", "hostname": "us8248.nordvpn.com", "number": 8248, - "ip": "212.102.47.35", + "ips": [ + "212.102.47.35" + ], "tcp": true, "udp": true }, @@ -68486,7 +76258,9 @@ "region": "United States", "hostname": "us8249.nordvpn.com", "number": 8249, - "ip": "212.102.47.38", + "ips": [ + "212.102.47.38" + ], "tcp": true, "udp": true }, @@ -68494,7 +76268,9 @@ "region": "United States", "hostname": "us8250.nordvpn.com", "number": 8250, - "ip": "212.102.47.41", + "ips": [ + "212.102.47.41" + ], "tcp": true, "udp": true }, @@ -68502,7 +76278,9 @@ "region": "United States", "hostname": "us8251.nordvpn.com", "number": 8251, - "ip": "212.102.47.44", + "ips": [ + "212.102.47.44" + ], "tcp": true, "udp": true }, @@ -68510,7 +76288,9 @@ "region": "United States", "hostname": "us8252.nordvpn.com", "number": 8252, - "ip": "212.102.47.47", + "ips": [ + "212.102.47.47" + ], "tcp": true, "udp": true }, @@ -68518,7 +76298,9 @@ "region": "United States", "hostname": "us8253.nordvpn.com", "number": 8253, - "ip": "212.102.47.50", + "ips": [ + "212.102.47.50" + ], "tcp": true, "udp": true }, @@ -68526,7 +76308,9 @@ "region": "United States", "hostname": "us8254.nordvpn.com", "number": 8254, - "ip": "212.102.47.53", + "ips": [ + "212.102.47.53" + ], "tcp": true, "udp": true }, @@ -68534,7 +76318,9 @@ "region": "United States", "hostname": "us8255.nordvpn.com", "number": 8255, - "ip": "212.102.47.56", + "ips": [ + "212.102.47.56" + ], "tcp": true, "udp": true }, @@ -68542,7 +76328,9 @@ "region": "United States", "hostname": "us8256.nordvpn.com", "number": 8256, - "ip": "212.102.47.59", + "ips": [ + "212.102.47.59" + ], "tcp": true, "udp": true }, @@ -68550,7 +76338,9 @@ "region": "United States", "hostname": "us8257.nordvpn.com", "number": 8257, - "ip": "212.102.47.62", + "ips": [ + "212.102.47.62" + ], "tcp": true, "udp": true }, @@ -68558,7 +76348,9 @@ "region": "United States", "hostname": "us8258.nordvpn.com", "number": 8258, - "ip": "212.102.47.65", + "ips": [ + "212.102.47.65" + ], "tcp": true, "udp": true }, @@ -68566,7 +76358,9 @@ "region": "United States", "hostname": "us8259.nordvpn.com", "number": 8259, - "ip": "212.102.47.68", + "ips": [ + "212.102.47.68" + ], "tcp": true, "udp": true }, @@ -68574,7 +76368,9 @@ "region": "United States", "hostname": "us8260.nordvpn.com", "number": 8260, - "ip": "212.102.47.71", + "ips": [ + "212.102.47.71" + ], "tcp": true, "udp": true }, @@ -68582,7 +76378,9 @@ "region": "United States", "hostname": "us8261.nordvpn.com", "number": 8261, - "ip": "212.102.47.74", + "ips": [ + "212.102.47.74" + ], "tcp": true, "udp": true }, @@ -68590,7 +76388,9 @@ "region": "United States", "hostname": "us8262.nordvpn.com", "number": 8262, - "ip": "212.102.47.77", + "ips": [ + "212.102.47.77" + ], "tcp": true, "udp": true }, @@ -68598,7 +76398,9 @@ "region": "United States", "hostname": "us8263.nordvpn.com", "number": 8263, - "ip": "212.102.47.80", + "ips": [ + "212.102.47.80" + ], "tcp": true, "udp": true }, @@ -68606,7 +76408,9 @@ "region": "United States", "hostname": "us8264.nordvpn.com", "number": 8264, - "ip": "212.102.47.83", + "ips": [ + "212.102.47.83" + ], "tcp": true, "udp": true }, @@ -68614,7 +76418,9 @@ "region": "United States", "hostname": "us8265.nordvpn.com", "number": 8265, - "ip": "212.102.47.86", + "ips": [ + "212.102.47.86" + ], "tcp": true, "udp": true }, @@ -68622,7 +76428,9 @@ "region": "United States", "hostname": "us8266.nordvpn.com", "number": 8266, - "ip": "212.102.47.89", + "ips": [ + "212.102.47.89" + ], "tcp": true, "udp": true }, @@ -68630,7 +76438,9 @@ "region": "United States", "hostname": "us8267.nordvpn.com", "number": 8267, - "ip": "212.102.47.92", + "ips": [ + "212.102.47.92" + ], "tcp": true, "udp": true }, @@ -68638,7 +76448,9 @@ "region": "United States", "hostname": "us8268.nordvpn.com", "number": 8268, - "ip": "212.102.47.95", + "ips": [ + "212.102.47.95" + ], "tcp": true, "udp": true }, @@ -68646,7 +76458,9 @@ "region": "United States", "hostname": "us8269.nordvpn.com", "number": 8269, - "ip": "212.102.47.98", + "ips": [ + "212.102.47.98" + ], "tcp": true, "udp": true }, @@ -68654,7 +76468,9 @@ "region": "United States", "hostname": "us8270.nordvpn.com", "number": 8270, - "ip": "212.102.47.101", + "ips": [ + "212.102.47.101" + ], "tcp": true, "udp": true }, @@ -68662,7 +76478,9 @@ "region": "United States", "hostname": "us8271.nordvpn.com", "number": 8271, - "ip": "212.102.47.104", + "ips": [ + "212.102.47.104" + ], "tcp": true, "udp": true }, @@ -68670,7 +76488,9 @@ "region": "United States", "hostname": "us8272.nordvpn.com", "number": 8272, - "ip": "212.102.47.107", + "ips": [ + "212.102.47.107" + ], "tcp": true, "udp": true }, @@ -68678,7 +76498,9 @@ "region": "United States", "hostname": "us8273.nordvpn.com", "number": 8273, - "ip": "212.102.47.110", + "ips": [ + "212.102.47.110" + ], "tcp": true, "udp": true }, @@ -68686,7 +76508,9 @@ "region": "United States", "hostname": "us8274.nordvpn.com", "number": 8274, - "ip": "212.102.47.113", + "ips": [ + "212.102.47.113" + ], "tcp": true, "udp": true }, @@ -68694,7 +76518,9 @@ "region": "United States", "hostname": "us8275.nordvpn.com", "number": 8275, - "ip": "212.102.47.116", + "ips": [ + "212.102.47.116" + ], "tcp": true, "udp": true }, @@ -68702,7 +76528,9 @@ "region": "United States", "hostname": "us8276.nordvpn.com", "number": 8276, - "ip": "212.102.47.119", + "ips": [ + "212.102.47.119" + ], "tcp": true, "udp": true }, @@ -68710,7 +76538,9 @@ "region": "United States", "hostname": "us8277.nordvpn.com", "number": 8277, - "ip": "212.102.47.122", + "ips": [ + "212.102.47.122" + ], "tcp": true, "udp": true }, @@ -68718,7 +76548,9 @@ "region": "United States", "hostname": "us8278.nordvpn.com", "number": 8278, - "ip": "212.102.46.18", + "ips": [ + "212.102.46.18" + ], "tcp": true, "udp": true }, @@ -68726,7 +76558,9 @@ "region": "United States", "hostname": "us8279.nordvpn.com", "number": 8279, - "ip": "212.102.46.21", + "ips": [ + "212.102.46.21" + ], "tcp": true, "udp": true }, @@ -68734,7 +76568,9 @@ "region": "United States", "hostname": "us8280.nordvpn.com", "number": 8280, - "ip": "212.102.46.24", + "ips": [ + "212.102.46.24" + ], "tcp": true, "udp": true }, @@ -68742,7 +76578,9 @@ "region": "United States", "hostname": "us8281.nordvpn.com", "number": 8281, - "ip": "212.102.46.26", + "ips": [ + "212.102.46.26" + ], "tcp": true, "udp": true }, @@ -68750,7 +76588,9 @@ "region": "United States", "hostname": "us8282.nordvpn.com", "number": 8282, - "ip": "212.102.44.58", + "ips": [ + "212.102.44.58" + ], "tcp": true, "udp": true }, @@ -68758,7 +76598,9 @@ "region": "United States", "hostname": "us8283.nordvpn.com", "number": 8283, - "ip": "212.102.44.56", + "ips": [ + "212.102.44.56" + ], "tcp": true, "udp": true }, @@ -68766,7 +76608,9 @@ "region": "United States", "hostname": "us8284.nordvpn.com", "number": 8284, - "ip": "212.102.44.54", + "ips": [ + "212.102.44.54" + ], "tcp": true, "udp": true }, @@ -68774,7 +76618,9 @@ "region": "United States", "hostname": "us8285.nordvpn.com", "number": 8285, - "ip": "212.102.44.52", + "ips": [ + "212.102.44.52" + ], "tcp": true, "udp": true }, @@ -68782,7 +76628,9 @@ "region": "United States", "hostname": "us8286.nordvpn.com", "number": 8286, - "ip": "212.102.44.50", + "ips": [ + "212.102.44.50" + ], "tcp": true, "udp": true }, @@ -68790,7 +76638,9 @@ "region": "United States", "hostname": "us8287.nordvpn.com", "number": 8287, - "ip": "212.102.44.137", + "ips": [ + "212.102.44.137" + ], "tcp": true, "udp": true }, @@ -68798,7 +76648,9 @@ "region": "United States", "hostname": "us8288.nordvpn.com", "number": 8288, - "ip": "212.102.44.135", + "ips": [ + "212.102.44.135" + ], "tcp": true, "udp": true }, @@ -68806,7 +76658,9 @@ "region": "United States", "hostname": "us8289.nordvpn.com", "number": 8289, - "ip": "212.102.44.133", + "ips": [ + "212.102.44.133" + ], "tcp": true, "udp": true }, @@ -68814,7 +76668,9 @@ "region": "United States", "hostname": "us8290.nordvpn.com", "number": 8290, - "ip": "212.102.44.131", + "ips": [ + "212.102.44.131" + ], "tcp": true, "udp": true }, @@ -68822,7 +76678,39 @@ "region": "United States", "hostname": "us8291.nordvpn.com", "number": 8291, - "ip": "212.102.44.129", + "ips": [ + "212.102.44.129" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us8342.nordvpn.com", + "number": 8342, + "ips": [ + "138.199.52.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us8343.nordvpn.com", + "number": 8343, + "ips": [ + "138.199.52.5" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us8344.nordvpn.com", + "number": 8344, + "ips": [ + "138.199.52.8" + ], "tcp": true, "udp": true }, @@ -68830,7 +76718,9 @@ "region": "United States", "hostname": "us8345.nordvpn.com", "number": 8345, - "ip": "138.199.52.14", + "ips": [ + "138.199.52.14" + ], "tcp": true, "udp": true }, @@ -68838,7 +76728,9 @@ "region": "United States", "hostname": "us8346.nordvpn.com", "number": 8346, - "ip": "138.199.52.17", + "ips": [ + "138.199.52.17" + ], "tcp": true, "udp": true }, @@ -68846,7 +76738,9 @@ "region": "United States", "hostname": "us8347.nordvpn.com", "number": 8347, - "ip": "138.199.52.20", + "ips": [ + "138.199.52.20" + ], "tcp": true, "udp": true }, @@ -68854,7 +76748,9 @@ "region": "United States", "hostname": "us8348.nordvpn.com", "number": 8348, - "ip": "138.199.52.11", + "ips": [ + "138.199.52.11" + ], "tcp": true, "udp": true }, @@ -68862,7 +76758,9 @@ "region": "United States", "hostname": "us8349.nordvpn.com", "number": 8349, - "ip": "138.199.52.26", + "ips": [ + "138.199.52.26" + ], "tcp": true, "udp": true }, @@ -68870,7 +76768,9 @@ "region": "United States", "hostname": "us8350.nordvpn.com", "number": 8350, - "ip": "138.199.52.29", + "ips": [ + "138.199.52.29" + ], "tcp": true, "udp": true }, @@ -68878,7 +76778,9 @@ "region": "United States", "hostname": "us8351.nordvpn.com", "number": 8351, - "ip": "138.199.52.32", + "ips": [ + "138.199.52.32" + ], "tcp": true, "udp": true }, @@ -68886,7 +76788,9 @@ "region": "United States", "hostname": "us8352.nordvpn.com", "number": 8352, - "ip": "138.199.52.35", + "ips": [ + "138.199.52.35" + ], "tcp": true, "udp": true }, @@ -68894,7 +76798,9 @@ "region": "United States", "hostname": "us8353.nordvpn.com", "number": 8353, - "ip": "138.199.52.38", + "ips": [ + "138.199.52.38" + ], "tcp": true, "udp": true }, @@ -68902,7 +76808,9 @@ "region": "United States", "hostname": "us8355.nordvpn.com", "number": 8355, - "ip": "138.199.52.44", + "ips": [ + "138.199.52.44" + ], "tcp": true, "udp": true }, @@ -68910,7 +76818,9 @@ "region": "United States", "hostname": "us8356.nordvpn.com", "number": 8356, - "ip": "138.199.52.47", + "ips": [ + "138.199.52.47" + ], "tcp": true, "udp": true }, @@ -68918,7 +76828,9 @@ "region": "United States", "hostname": "us8357.nordvpn.com", "number": 8357, - "ip": "138.199.52.74", + "ips": [ + "138.199.52.74" + ], "tcp": true, "udp": true }, @@ -68926,7 +76838,9 @@ "region": "United States", "hostname": "us8358.nordvpn.com", "number": 8358, - "ip": "138.199.52.77", + "ips": [ + "138.199.52.77" + ], "tcp": true, "udp": true }, @@ -68934,7 +76848,9 @@ "region": "United States", "hostname": "us8359.nordvpn.com", "number": 8359, - "ip": "138.199.52.80", + "ips": [ + "138.199.52.80" + ], "tcp": true, "udp": true }, @@ -68942,7 +76858,9 @@ "region": "United States", "hostname": "us8360.nordvpn.com", "number": 8360, - "ip": "138.199.52.83", + "ips": [ + "138.199.52.83" + ], "tcp": true, "udp": true }, @@ -68950,7 +76868,9 @@ "region": "United States", "hostname": "us8361.nordvpn.com", "number": 8361, - "ip": "138.199.52.86", + "ips": [ + "138.199.52.86" + ], "tcp": true, "udp": true }, @@ -68958,7 +76878,9 @@ "region": "United States", "hostname": "us8362.nordvpn.com", "number": 8362, - "ip": "138.199.52.89", + "ips": [ + "138.199.52.89" + ], "tcp": true, "udp": true }, @@ -68966,7 +76888,9 @@ "region": "United States", "hostname": "us8363.nordvpn.com", "number": 8363, - "ip": "138.199.52.92", + "ips": [ + "138.199.52.92" + ], "tcp": true, "udp": true }, @@ -68974,7 +76898,9 @@ "region": "United States", "hostname": "us8364.nordvpn.com", "number": 8364, - "ip": "138.199.52.95", + "ips": [ + "138.199.52.95" + ], "tcp": true, "udp": true }, @@ -68982,7 +76908,9 @@ "region": "United States", "hostname": "us8365.nordvpn.com", "number": 8365, - "ip": "138.199.52.98", + "ips": [ + "138.199.52.98" + ], "tcp": true, "udp": true }, @@ -68990,7 +76918,9 @@ "region": "United States", "hostname": "us8366.nordvpn.com", "number": 8366, - "ip": "138.199.52.101", + "ips": [ + "138.199.52.101" + ], "tcp": true, "udp": true }, @@ -68998,7 +76928,9 @@ "region": "United States", "hostname": "us8367.nordvpn.com", "number": 8367, - "ip": "138.199.52.104", + "ips": [ + "138.199.52.104" + ], "tcp": true, "udp": true }, @@ -69006,7 +76938,9 @@ "region": "United States", "hostname": "us8368.nordvpn.com", "number": 8368, - "ip": "138.199.52.107", + "ips": [ + "138.199.52.107" + ], "tcp": true, "udp": true }, @@ -69014,7 +76948,9 @@ "region": "United States", "hostname": "us8369.nordvpn.com", "number": 8369, - "ip": "138.199.52.110", + "ips": [ + "138.199.52.110" + ], "tcp": true, "udp": true }, @@ -69022,7 +76958,9 @@ "region": "United States", "hostname": "us8370.nordvpn.com", "number": 8370, - "ip": "138.199.52.113", + "ips": [ + "138.199.52.113" + ], "tcp": true, "udp": true }, @@ -69030,7 +76968,9 @@ "region": "United States", "hostname": "us8371.nordvpn.com", "number": 8371, - "ip": "138.199.52.116", + "ips": [ + "138.199.52.116" + ], "tcp": true, "udp": true }, @@ -69038,7 +76978,9 @@ "region": "United States", "hostname": "us8372.nordvpn.com", "number": 8372, - "ip": "138.199.52.119", + "ips": [ + "138.199.52.119" + ], "tcp": true, "udp": true }, @@ -69046,7 +76988,9 @@ "region": "United States", "hostname": "us8373.nordvpn.com", "number": 8373, - "ip": "138.199.52.50", + "ips": [ + "138.199.52.50" + ], "tcp": true, "udp": true }, @@ -69054,7 +76998,9 @@ "region": "United States", "hostname": "us8374.nordvpn.com", "number": 8374, - "ip": "138.199.52.53", + "ips": [ + "138.199.52.53" + ], "tcp": true, "udp": true }, @@ -69062,7 +77008,9 @@ "region": "United States", "hostname": "us8375.nordvpn.com", "number": 8375, - "ip": "138.199.52.56", + "ips": [ + "138.199.52.56" + ], "tcp": true, "udp": true }, @@ -69070,7 +77018,9 @@ "region": "United States", "hostname": "us8376.nordvpn.com", "number": 8376, - "ip": "138.199.52.59", + "ips": [ + "138.199.52.59" + ], "tcp": true, "udp": true }, @@ -69078,7 +77028,9 @@ "region": "United States", "hostname": "us8377.nordvpn.com", "number": 8377, - "ip": "138.199.52.62", + "ips": [ + "138.199.52.62" + ], "tcp": true, "udp": true }, @@ -69086,7 +77038,9 @@ "region": "United States", "hostname": "us8378.nordvpn.com", "number": 8378, - "ip": "138.199.52.65", + "ips": [ + "138.199.52.65" + ], "tcp": true, "udp": true }, @@ -69094,7 +77048,9 @@ "region": "United States", "hostname": "us8379.nordvpn.com", "number": 8379, - "ip": "138.199.52.68", + "ips": [ + "138.199.52.68" + ], "tcp": true, "udp": true }, @@ -69102,7 +77058,9 @@ "region": "United States", "hostname": "us8380.nordvpn.com", "number": 8380, - "ip": "138.199.52.71", + "ips": [ + "138.199.52.71" + ], "tcp": true, "udp": true }, @@ -69110,7 +77068,9 @@ "region": "United States", "hostname": "us8381.nordvpn.com", "number": 8381, - "ip": "138.199.52.23", + "ips": [ + "138.199.52.23" + ], "tcp": true, "udp": true }, @@ -69118,7 +77078,9 @@ "region": "United States", "hostname": "us8382.nordvpn.com", "number": 8382, - "ip": "89.187.182.121", + "ips": [ + "89.187.182.121" + ], "tcp": true, "udp": true }, @@ -69126,7 +77088,9 @@ "region": "United States", "hostname": "us8383.nordvpn.com", "number": 8383, - "ip": "89.187.183.186", + "ips": [ + "89.187.183.186" + ], "tcp": true, "udp": true }, @@ -69134,7 +77098,9 @@ "region": "United States", "hostname": "us8384.nordvpn.com", "number": 8384, - "ip": "143.244.61.226", + "ips": [ + "143.244.61.226" + ], "tcp": true, "udp": true }, @@ -69142,7 +77108,9 @@ "region": "United States", "hostname": "us8385.nordvpn.com", "number": 8385, - "ip": "89.187.183.135", + "ips": [ + "89.187.183.135" + ], "tcp": true, "udp": true }, @@ -69150,7 +77118,9 @@ "region": "United States", "hostname": "us8386.nordvpn.com", "number": 8386, - "ip": "89.187.183.138", + "ips": [ + "89.187.183.138" + ], "tcp": true, "udp": true }, @@ -69158,7 +77128,9 @@ "region": "United States", "hostname": "us8387.nordvpn.com", "number": 8387, - "ip": "143.244.61.229", + "ips": [ + "143.244.61.229" + ], "tcp": true, "udp": true }, @@ -69166,7 +77138,9 @@ "region": "United States", "hostname": "us8388.nordvpn.com", "number": 8388, - "ip": "143.244.61.232", + "ips": [ + "143.244.61.232" + ], "tcp": true, "udp": true }, @@ -69174,7 +77148,9 @@ "region": "United States", "hostname": "us8389.nordvpn.com", "number": 8389, - "ip": "143.244.61.235", + "ips": [ + "143.244.61.235" + ], "tcp": true, "udp": true }, @@ -69182,7 +77158,9 @@ "region": "United States", "hostname": "us8390.nordvpn.com", "number": 8390, - "ip": "143.244.61.238", + "ips": [ + "143.244.61.238" + ], "tcp": true, "udp": true }, @@ -69190,7 +77168,9 @@ "region": "United States", "hostname": "us8391.nordvpn.com", "number": 8391, - "ip": "143.244.61.241", + "ips": [ + "143.244.61.241" + ], "tcp": true, "udp": true }, @@ -69198,7 +77178,9 @@ "region": "United States", "hostname": "us8392.nordvpn.com", "number": 8392, - "ip": "192.145.116.100", + "ips": [ + "192.145.116.100" + ], "tcp": true, "udp": true }, @@ -69206,7 +77188,9 @@ "region": "United States", "hostname": "us8393.nordvpn.com", "number": 8393, - "ip": "192.145.116.102", + "ips": [ + "192.145.116.102" + ], "tcp": true, "udp": true }, @@ -69214,7 +77198,9 @@ "region": "United States", "hostname": "us8394.nordvpn.com", "number": 8394, - "ip": "192.145.116.104", + "ips": [ + "192.145.116.104" + ], "tcp": true, "udp": true }, @@ -69222,7 +77208,9 @@ "region": "United States", "hostname": "us8395.nordvpn.com", "number": 8395, - "ip": "192.145.116.106", + "ips": [ + "192.145.116.106" + ], "tcp": true, "udp": true }, @@ -69230,7 +77218,9 @@ "region": "United States", "hostname": "us8396.nordvpn.com", "number": 8396, - "ip": "192.145.116.108", + "ips": [ + "192.145.116.108" + ], "tcp": true, "udp": true }, @@ -69238,7 +77228,9 @@ "region": "United States", "hostname": "us8397.nordvpn.com", "number": 8397, - "ip": "192.145.116.110", + "ips": [ + "192.145.116.110" + ], "tcp": true, "udp": true }, @@ -69246,7 +77238,9 @@ "region": "United States", "hostname": "us8398.nordvpn.com", "number": 8398, - "ip": "192.145.116.112", + "ips": [ + "192.145.116.112" + ], "tcp": true, "udp": true }, @@ -69254,7 +77248,9 @@ "region": "United States", "hostname": "us8399.nordvpn.com", "number": 8399, - "ip": "192.145.116.114", + "ips": [ + "192.145.116.114" + ], "tcp": true, "udp": true }, @@ -69262,7 +77258,9 @@ "region": "United States", "hostname": "us8400.nordvpn.com", "number": 8400, - "ip": "192.145.116.116", + "ips": [ + "192.145.116.116" + ], "tcp": true, "udp": true }, @@ -69270,7 +77268,9 @@ "region": "United States", "hostname": "us8401.nordvpn.com", "number": 8401, - "ip": "192.145.116.118", + "ips": [ + "192.145.116.118" + ], "tcp": true, "udp": true }, @@ -69278,7 +77278,9 @@ "region": "United States", "hostname": "us8402.nordvpn.com", "number": 8402, - "ip": "192.145.116.120", + "ips": [ + "192.145.116.120" + ], "tcp": true, "udp": true }, @@ -69286,7 +77288,9 @@ "region": "United States", "hostname": "us8403.nordvpn.com", "number": 8403, - "ip": "192.145.116.122", + "ips": [ + "192.145.116.122" + ], "tcp": true, "udp": true }, @@ -69294,7 +77298,9 @@ "region": "United States", "hostname": "us8404.nordvpn.com", "number": 8404, - "ip": "192.145.116.124", + "ips": [ + "192.145.116.124" + ], "tcp": true, "udp": true }, @@ -69302,7 +77308,9 @@ "region": "United States", "hostname": "us8405.nordvpn.com", "number": 8405, - "ip": "192.145.116.126", + "ips": [ + "192.145.116.126" + ], "tcp": true, "udp": true }, @@ -69310,7 +77318,9 @@ "region": "United States", "hostname": "us8406.nordvpn.com", "number": 8406, - "ip": "192.145.116.128", + "ips": [ + "192.145.116.128" + ], "tcp": true, "udp": true }, @@ -69318,7 +77328,9 @@ "region": "United States", "hostname": "us8407.nordvpn.com", "number": 8407, - "ip": "192.145.116.130", + "ips": [ + "192.145.116.130" + ], "tcp": true, "udp": true }, @@ -69326,7 +77338,9 @@ "region": "United States", "hostname": "us8408.nordvpn.com", "number": 8408, - "ip": "192.145.116.132", + "ips": [ + "192.145.116.132" + ], "tcp": true, "udp": true }, @@ -69334,7 +77348,9 @@ "region": "United States", "hostname": "us8409.nordvpn.com", "number": 8409, - "ip": "192.145.116.134", + "ips": [ + "192.145.116.134" + ], "tcp": true, "udp": true }, @@ -69342,7 +77358,9 @@ "region": "United States", "hostname": "us8410.nordvpn.com", "number": 8410, - "ip": "192.145.116.136", + "ips": [ + "192.145.116.136" + ], "tcp": true, "udp": true }, @@ -69350,7 +77368,9 @@ "region": "United States", "hostname": "us8411.nordvpn.com", "number": 8411, - "ip": "192.145.116.138", + "ips": [ + "192.145.116.138" + ], "tcp": true, "udp": true }, @@ -69358,7 +77378,9 @@ "region": "United States", "hostname": "us8412.nordvpn.com", "number": 8412, - "ip": "192.145.116.140", + "ips": [ + "192.145.116.140" + ], "tcp": true, "udp": true }, @@ -69366,7 +77388,9 @@ "region": "United States", "hostname": "us8413.nordvpn.com", "number": 8413, - "ip": "192.145.116.142", + "ips": [ + "192.145.116.142" + ], "tcp": true, "udp": true }, @@ -69374,7 +77398,9 @@ "region": "United States", "hostname": "us8414.nordvpn.com", "number": 8414, - "ip": "192.145.116.144", + "ips": [ + "192.145.116.144" + ], "tcp": true, "udp": true }, @@ -69382,7 +77408,9 @@ "region": "United States", "hostname": "us8415.nordvpn.com", "number": 8415, - "ip": "192.145.116.146", + "ips": [ + "192.145.116.146" + ], "tcp": true, "udp": true }, @@ -69390,7 +77418,9 @@ "region": "United States", "hostname": "us8416.nordvpn.com", "number": 8416, - "ip": "192.145.116.148", + "ips": [ + "192.145.116.148" + ], "tcp": true, "udp": true }, @@ -69398,7 +77428,9 @@ "region": "United States", "hostname": "us8417.nordvpn.com", "number": 8417, - "ip": "192.145.116.150", + "ips": [ + "192.145.116.150" + ], "tcp": true, "udp": true }, @@ -69406,7 +77438,9 @@ "region": "United States", "hostname": "us8418.nordvpn.com", "number": 8418, - "ip": "192.145.116.152", + "ips": [ + "192.145.116.152" + ], "tcp": true, "udp": true }, @@ -69414,7 +77448,9 @@ "region": "United States", "hostname": "us8419.nordvpn.com", "number": 8419, - "ip": "192.145.116.154", + "ips": [ + "192.145.116.154" + ], "tcp": true, "udp": true }, @@ -69422,7 +77458,9 @@ "region": "United States", "hostname": "us8420.nordvpn.com", "number": 8420, - "ip": "192.145.116.156", + "ips": [ + "192.145.116.156" + ], "tcp": true, "udp": true }, @@ -69430,7 +77468,9 @@ "region": "United States", "hostname": "us8421.nordvpn.com", "number": 8421, - "ip": "192.145.116.158", + "ips": [ + "192.145.116.158" + ], "tcp": true, "udp": true }, @@ -69438,7 +77478,9 @@ "region": "United States", "hostname": "us8422.nordvpn.com", "number": 8422, - "ip": "192.145.116.160", + "ips": [ + "192.145.116.160" + ], "tcp": true, "udp": true }, @@ -69446,7 +77488,9 @@ "region": "United States", "hostname": "us8423.nordvpn.com", "number": 8423, - "ip": "192.145.116.162", + "ips": [ + "192.145.116.162" + ], "tcp": true, "udp": true }, @@ -69454,7 +77498,9 @@ "region": "United States", "hostname": "us8424.nordvpn.com", "number": 8424, - "ip": "185.240.244.3", + "ips": [ + "185.240.244.3" + ], "tcp": true, "udp": true }, @@ -69462,7 +77508,9 @@ "region": "United States", "hostname": "us8425.nordvpn.com", "number": 8425, - "ip": "185.240.244.11", + "ips": [ + "185.240.244.11" + ], "tcp": true, "udp": true }, @@ -69470,7 +77518,9 @@ "region": "United States", "hostname": "us8426.nordvpn.com", "number": 8426, - "ip": "185.240.244.19", + "ips": [ + "185.240.244.19" + ], "tcp": true, "udp": true }, @@ -69478,7 +77528,9 @@ "region": "United States", "hostname": "us8427.nordvpn.com", "number": 8427, - "ip": "185.240.244.27", + "ips": [ + "185.240.244.27" + ], "tcp": true, "udp": true }, @@ -69486,7 +77538,9 @@ "region": "United States", "hostname": "us8428.nordvpn.com", "number": 8428, - "ip": "185.240.244.43", + "ips": [ + "185.240.244.43" + ], "tcp": true, "udp": true }, @@ -69494,7 +77548,9 @@ "region": "United States", "hostname": "us8429.nordvpn.com", "number": 8429, - "ip": "185.240.244.51", + "ips": [ + "185.240.244.51" + ], "tcp": true, "udp": true }, @@ -69502,7 +77558,9 @@ "region": "United States", "hostname": "us8430.nordvpn.com", "number": 8430, - "ip": "185.240.244.59", + "ips": [ + "185.240.244.59" + ], "tcp": true, "udp": true }, @@ -69510,7 +77568,9 @@ "region": "United States", "hostname": "us8432.nordvpn.com", "number": 8432, - "ip": "185.240.244.75", + "ips": [ + "185.240.244.75" + ], "tcp": true, "udp": true }, @@ -69518,7 +77578,9 @@ "region": "United States", "hostname": "us8433.nordvpn.com", "number": 8433, - "ip": "185.240.244.83", + "ips": [ + "185.240.244.83" + ], "tcp": true, "udp": true }, @@ -69526,7 +77588,9 @@ "region": "United States", "hostname": "us8434.nordvpn.com", "number": 8434, - "ip": "185.240.244.91", + "ips": [ + "185.240.244.91" + ], "tcp": true, "udp": true }, @@ -69534,7 +77598,9 @@ "region": "United States", "hostname": "us8435.nordvpn.com", "number": 8435, - "ip": "185.240.244.99", + "ips": [ + "185.240.244.99" + ], "tcp": true, "udp": true }, @@ -69542,7 +77608,9 @@ "region": "United States", "hostname": "us8436.nordvpn.com", "number": 8436, - "ip": "185.240.244.107", + "ips": [ + "185.240.244.107" + ], "tcp": true, "udp": true }, @@ -69550,7 +77618,9 @@ "region": "United States", "hostname": "us8437.nordvpn.com", "number": 8437, - "ip": "185.240.244.115", + "ips": [ + "185.240.244.115" + ], "tcp": true, "udp": true }, @@ -69558,7 +77628,9 @@ "region": "United States", "hostname": "us8438.nordvpn.com", "number": 8438, - "ip": "185.240.244.123", + "ips": [ + "185.240.244.123" + ], "tcp": true, "udp": true }, @@ -69566,7 +77638,9 @@ "region": "United States", "hostname": "us8439.nordvpn.com", "number": 8439, - "ip": "185.240.244.131", + "ips": [ + "185.240.244.131" + ], "tcp": true, "udp": true }, @@ -69574,7 +77648,9 @@ "region": "United States", "hostname": "us8440.nordvpn.com", "number": 8440, - "ip": "185.240.244.139", + "ips": [ + "185.240.244.139" + ], "tcp": true, "udp": true }, @@ -69582,7 +77658,9 @@ "region": "United States", "hostname": "us8441.nordvpn.com", "number": 8441, - "ip": "185.240.244.147", + "ips": [ + "185.240.244.147" + ], "tcp": true, "udp": true }, @@ -69590,7 +77668,9 @@ "region": "United States", "hostname": "us8442.nordvpn.com", "number": 8442, - "ip": "185.240.244.155", + "ips": [ + "185.240.244.155" + ], "tcp": true, "udp": true }, @@ -69598,7 +77678,9 @@ "region": "United States", "hostname": "us8443.nordvpn.com", "number": 8443, - "ip": "185.240.244.171", + "ips": [ + "185.240.244.171" + ], "tcp": true, "udp": true }, @@ -69606,7 +77688,9 @@ "region": "United States", "hostname": "us8444.nordvpn.com", "number": 8444, - "ip": "185.240.244.179", + "ips": [ + "185.240.244.179" + ], "tcp": true, "udp": true }, @@ -69614,7 +77698,9 @@ "region": "United States", "hostname": "us8445.nordvpn.com", "number": 8445, - "ip": "185.240.244.187", + "ips": [ + "185.240.244.187" + ], "tcp": true, "udp": true }, @@ -69622,7 +77708,9 @@ "region": "United States", "hostname": "us8446.nordvpn.com", "number": 8446, - "ip": "185.240.244.195", + "ips": [ + "185.240.244.195" + ], "tcp": true, "udp": true }, @@ -69630,7 +77718,9 @@ "region": "United States", "hostname": "us8447.nordvpn.com", "number": 8447, - "ip": "185.240.244.203", + "ips": [ + "185.240.244.203" + ], "tcp": true, "udp": true }, @@ -69638,7 +77728,9 @@ "region": "United States", "hostname": "us8448.nordvpn.com", "number": 8448, - "ip": "185.240.244.211", + "ips": [ + "185.240.244.211" + ], "tcp": true, "udp": true }, @@ -69646,7 +77738,9 @@ "region": "United States", "hostname": "us8449.nordvpn.com", "number": 8449, - "ip": "185.240.244.219", + "ips": [ + "185.240.244.219" + ], "tcp": true, "udp": true }, @@ -69654,7 +77748,9 @@ "region": "United States", "hostname": "us8450.nordvpn.com", "number": 8450, - "ip": "185.240.244.227", + "ips": [ + "185.240.244.227" + ], "tcp": true, "udp": true }, @@ -69662,7 +77758,9 @@ "region": "United States", "hostname": "us8451.nordvpn.com", "number": 8451, - "ip": "185.240.244.235", + "ips": [ + "185.240.244.235" + ], "tcp": true, "udp": true }, @@ -69670,7 +77768,9 @@ "region": "United States", "hostname": "us8452.nordvpn.com", "number": 8452, - "ip": "185.240.244.243", + "ips": [ + "185.240.244.243" + ], "tcp": true, "udp": true }, @@ -69678,7 +77778,9 @@ "region": "United States", "hostname": "us8453.nordvpn.com", "number": 8453, - "ip": "185.240.244.251", + "ips": [ + "185.240.244.251" + ], "tcp": true, "udp": true }, @@ -69686,7 +77788,9 @@ "region": "United States", "hostname": "us8454.nordvpn.com", "number": 8454, - "ip": "185.226.144.3", + "ips": [ + "185.226.144.3" + ], "tcp": true, "udp": true }, @@ -69694,7 +77798,9 @@ "region": "United States", "hostname": "us8455.nordvpn.com", "number": 8455, - "ip": "185.226.144.11", + "ips": [ + "185.226.144.11" + ], "tcp": true, "udp": true }, @@ -69702,7 +77808,9 @@ "region": "United States", "hostname": "us8456.nordvpn.com", "number": 8456, - "ip": "185.226.144.19", + "ips": [ + "185.226.144.19" + ], "tcp": true, "udp": true }, @@ -69710,7 +77818,9 @@ "region": "United States", "hostname": "us8457.nordvpn.com", "number": 8457, - "ip": "185.226.144.27", + "ips": [ + "185.226.144.27" + ], "tcp": true, "udp": true }, @@ -69718,7 +77828,9 @@ "region": "United States", "hostname": "us8458.nordvpn.com", "number": 8458, - "ip": "185.226.144.99", + "ips": [ + "185.226.144.99" + ], "tcp": true, "udp": true }, @@ -69726,7 +77838,9 @@ "region": "United States", "hostname": "us8459.nordvpn.com", "number": 8459, - "ip": "185.226.144.123", + "ips": [ + "185.226.144.123" + ], "tcp": true, "udp": true }, @@ -69734,7 +77848,9 @@ "region": "United States", "hostname": "us8460.nordvpn.com", "number": 8460, - "ip": "185.226.144.131", + "ips": [ + "185.226.144.131" + ], "tcp": true, "udp": true }, @@ -69742,7 +77858,9 @@ "region": "United States", "hostname": "us8461.nordvpn.com", "number": 8461, - "ip": "185.226.144.139", + "ips": [ + "185.226.144.139" + ], "tcp": true, "udp": true }, @@ -69750,7 +77868,9 @@ "region": "United States", "hostname": "us8462.nordvpn.com", "number": 8462, - "ip": "185.226.144.35", + "ips": [ + "185.226.144.35" + ], "tcp": true, "udp": true }, @@ -69758,7 +77878,9 @@ "region": "United States", "hostname": "us8463.nordvpn.com", "number": 8463, - "ip": "185.226.144.43", + "ips": [ + "185.226.144.43" + ], "tcp": true, "udp": true }, @@ -69766,7 +77888,9 @@ "region": "United States", "hostname": "us8464.nordvpn.com", "number": 8464, - "ip": "185.226.144.51", + "ips": [ + "185.226.144.51" + ], "tcp": true, "udp": true }, @@ -69774,7 +77898,9 @@ "region": "United States", "hostname": "us8465.nordvpn.com", "number": 8465, - "ip": "185.226.144.59", + "ips": [ + "185.226.144.59" + ], "tcp": true, "udp": true }, @@ -69782,7 +77908,9 @@ "region": "United States", "hostname": "us8466.nordvpn.com", "number": 8466, - "ip": "185.226.144.67", + "ips": [ + "185.226.144.67" + ], "tcp": true, "udp": true }, @@ -69790,7 +77918,9 @@ "region": "United States", "hostname": "us8467.nordvpn.com", "number": 8467, - "ip": "185.226.144.75", + "ips": [ + "185.226.144.75" + ], "tcp": true, "udp": true }, @@ -69798,7 +77928,9 @@ "region": "United States", "hostname": "us8468.nordvpn.com", "number": 8468, - "ip": "185.226.144.83", + "ips": [ + "185.226.144.83" + ], "tcp": true, "udp": true }, @@ -69806,7 +77938,9 @@ "region": "United States", "hostname": "us8469.nordvpn.com", "number": 8469, - "ip": "185.226.144.107", + "ips": [ + "185.226.144.107" + ], "tcp": true, "udp": true }, @@ -69814,7 +77948,9 @@ "region": "United States", "hostname": "us8470.nordvpn.com", "number": 8470, - "ip": "185.226.144.115", + "ips": [ + "185.226.144.115" + ], "tcp": true, "udp": true }, @@ -69822,7 +77958,9 @@ "region": "United States", "hostname": "us8471.nordvpn.com", "number": 8471, - "ip": "185.240.244.163", + "ips": [ + "185.240.244.163" + ], "tcp": true, "udp": true }, @@ -69830,7 +77968,9 @@ "region": "United States", "hostname": "us8472.nordvpn.com", "number": 8472, - "ip": "185.226.144.91", + "ips": [ + "185.226.144.91" + ], "tcp": true, "udp": true }, @@ -69838,7 +77978,9 @@ "region": "United States", "hostname": "us8473.nordvpn.com", "number": 8473, - "ip": "185.240.244.35", + "ips": [ + "185.240.244.35" + ], "tcp": true, "udp": true }, @@ -69846,7 +77988,9 @@ "region": "United States", "hostname": "us8474.nordvpn.com", "number": 8474, - "ip": "192.145.117.100", + "ips": [ + "192.145.117.100" + ], "tcp": true, "udp": true }, @@ -69854,7 +77998,9 @@ "region": "United States", "hostname": "us8475.nordvpn.com", "number": 8475, - "ip": "192.145.117.102", + "ips": [ + "192.145.117.102" + ], "tcp": true, "udp": true }, @@ -69862,7 +78008,9 @@ "region": "United States", "hostname": "us8476.nordvpn.com", "number": 8476, - "ip": "192.145.117.104", + "ips": [ + "192.145.117.104" + ], "tcp": true, "udp": true }, @@ -69870,7 +78018,9 @@ "region": "United States", "hostname": "us8477.nordvpn.com", "number": 8477, - "ip": "192.145.117.106", + "ips": [ + "192.145.117.106" + ], "tcp": true, "udp": true }, @@ -69878,7 +78028,9 @@ "region": "United States", "hostname": "us8478.nordvpn.com", "number": 8478, - "ip": "192.145.117.108", + "ips": [ + "192.145.117.108" + ], "tcp": true, "udp": true }, @@ -69886,7 +78038,9 @@ "region": "United States", "hostname": "us8479.nordvpn.com", "number": 8479, - "ip": "192.145.117.110", + "ips": [ + "192.145.117.110" + ], "tcp": true, "udp": true }, @@ -69894,7 +78048,9 @@ "region": "United States", "hostname": "us8480.nordvpn.com", "number": 8480, - "ip": "192.145.117.112", + "ips": [ + "192.145.117.112" + ], "tcp": true, "udp": true }, @@ -69902,7 +78058,9 @@ "region": "United States", "hostname": "us8481.nordvpn.com", "number": 8481, - "ip": "192.145.117.114", + "ips": [ + "192.145.117.114" + ], "tcp": true, "udp": true }, @@ -69910,7 +78068,9 @@ "region": "United States", "hostname": "us8482.nordvpn.com", "number": 8482, - "ip": "192.145.117.116", + "ips": [ + "192.145.117.116" + ], "tcp": true, "udp": true }, @@ -69918,7 +78078,9 @@ "region": "United States", "hostname": "us8483.nordvpn.com", "number": 8483, - "ip": "192.145.117.118", + "ips": [ + "192.145.117.118" + ], "tcp": true, "udp": true }, @@ -69926,7 +78088,9 @@ "region": "United States", "hostname": "us8484.nordvpn.com", "number": 8484, - "ip": "192.145.117.120", + "ips": [ + "192.145.117.120" + ], "tcp": true, "udp": true }, @@ -69934,7 +78098,9 @@ "region": "United States", "hostname": "us8485.nordvpn.com", "number": 8485, - "ip": "192.145.117.122", + "ips": [ + "192.145.117.122" + ], "tcp": true, "udp": true }, @@ -69942,7 +78108,9 @@ "region": "United States", "hostname": "us8486.nordvpn.com", "number": 8486, - "ip": "192.145.117.124", + "ips": [ + "192.145.117.124" + ], "tcp": true, "udp": true }, @@ -69950,7 +78118,9 @@ "region": "United States", "hostname": "us8487.nordvpn.com", "number": 8487, - "ip": "192.145.117.126", + "ips": [ + "192.145.117.126" + ], "tcp": true, "udp": true }, @@ -69958,7 +78128,9 @@ "region": "United States", "hostname": "us8488.nordvpn.com", "number": 8488, - "ip": "192.145.117.128", + "ips": [ + "192.145.117.128" + ], "tcp": true, "udp": true }, @@ -69966,7 +78138,9 @@ "region": "United States", "hostname": "us8489.nordvpn.com", "number": 8489, - "ip": "192.145.117.130", + "ips": [ + "192.145.117.130" + ], "tcp": true, "udp": true }, @@ -69974,7 +78148,9 @@ "region": "United States", "hostname": "us8490.nordvpn.com", "number": 8490, - "ip": "192.145.117.132", + "ips": [ + "192.145.117.132" + ], "tcp": true, "udp": true }, @@ -69982,7 +78158,9 @@ "region": "United States", "hostname": "us8491.nordvpn.com", "number": 8491, - "ip": "192.145.117.134", + "ips": [ + "192.145.117.134" + ], "tcp": true, "udp": true }, @@ -69990,7 +78168,9 @@ "region": "United States", "hostname": "us8492.nordvpn.com", "number": 8492, - "ip": "192.145.117.136", + "ips": [ + "192.145.117.136" + ], "tcp": true, "udp": true }, @@ -69998,7 +78178,9 @@ "region": "United States", "hostname": "us8493.nordvpn.com", "number": 8493, - "ip": "192.145.117.138", + "ips": [ + "192.145.117.138" + ], "tcp": true, "udp": true }, @@ -70006,7 +78188,9 @@ "region": "United States", "hostname": "us8494.nordvpn.com", "number": 8494, - "ip": "192.145.117.140", + "ips": [ + "192.145.117.140" + ], "tcp": true, "udp": true }, @@ -70014,7 +78198,9 @@ "region": "United States", "hostname": "us8495.nordvpn.com", "number": 8495, - "ip": "192.145.117.142", + "ips": [ + "192.145.117.142" + ], "tcp": true, "udp": true }, @@ -70022,7 +78208,9 @@ "region": "United States", "hostname": "us8496.nordvpn.com", "number": 8496, - "ip": "192.145.117.144", + "ips": [ + "192.145.117.144" + ], "tcp": true, "udp": true }, @@ -70030,7 +78218,9 @@ "region": "United States", "hostname": "us8497.nordvpn.com", "number": 8497, - "ip": "192.145.117.146", + "ips": [ + "192.145.117.146" + ], "tcp": true, "udp": true }, @@ -70038,7 +78228,9 @@ "region": "United States", "hostname": "us8498.nordvpn.com", "number": 8498, - "ip": "62.182.99.156", + "ips": [ + "62.182.99.156" + ], "tcp": true, "udp": true }, @@ -70046,7 +78238,9 @@ "region": "United States", "hostname": "us8499.nordvpn.com", "number": 8499, - "ip": "62.182.99.158", + "ips": [ + "62.182.99.158" + ], "tcp": true, "udp": true }, @@ -70054,7 +78248,9 @@ "region": "United States", "hostname": "us8500.nordvpn.com", "number": 8500, - "ip": "62.182.99.160", + "ips": [ + "62.182.99.160" + ], "tcp": true, "udp": true }, @@ -70062,7 +78258,9 @@ "region": "United States", "hostname": "us8501.nordvpn.com", "number": 8501, - "ip": "62.182.99.162", + "ips": [ + "62.182.99.162" + ], "tcp": true, "udp": true }, @@ -70070,7 +78268,9 @@ "region": "United States", "hostname": "us8502.nordvpn.com", "number": 8502, - "ip": "152.89.204.194", + "ips": [ + "152.89.204.194" + ], "tcp": true, "udp": true }, @@ -70078,7 +78278,9 @@ "region": "United States", "hostname": "us8506.nordvpn.com", "number": 8506, - "ip": "152.89.204.199", + "ips": [ + "152.89.204.199" + ], "tcp": true, "udp": true }, @@ -70086,7 +78288,9 @@ "region": "United States", "hostname": "us8507.nordvpn.com", "number": 8507, - "ip": "152.89.204.201", + "ips": [ + "152.89.204.201" + ], "tcp": true, "udp": true }, @@ -70094,7 +78298,9 @@ "region": "United States", "hostname": "us8508.nordvpn.com", "number": 8508, - "ip": "152.89.204.203", + "ips": [ + "152.89.204.203" + ], "tcp": true, "udp": true }, @@ -70102,7 +78308,9 @@ "region": "United States", "hostname": "us8509.nordvpn.com", "number": 8509, - "ip": "212.102.33.107", + "ips": [ + "212.102.33.107" + ], "tcp": true, "udp": true }, @@ -70110,7 +78318,9 @@ "region": "United States", "hostname": "us8510.nordvpn.com", "number": 8510, - "ip": "192.145.118.100", + "ips": [ + "192.145.118.100" + ], "tcp": true, "udp": true }, @@ -70118,7 +78328,9 @@ "region": "United States", "hostname": "us8511.nordvpn.com", "number": 8511, - "ip": "192.145.118.102", + "ips": [ + "192.145.118.102" + ], "tcp": true, "udp": true }, @@ -70126,7 +78338,9 @@ "region": "United States", "hostname": "us8512.nordvpn.com", "number": 8512, - "ip": "192.145.118.104", + "ips": [ + "192.145.118.104" + ], "tcp": true, "udp": true }, @@ -70134,7 +78348,9 @@ "region": "United States", "hostname": "us8513.nordvpn.com", "number": 8513, - "ip": "192.145.118.106", + "ips": [ + "192.145.118.106" + ], "tcp": true, "udp": true }, @@ -70142,7 +78358,9 @@ "region": "United States", "hostname": "us8514.nordvpn.com", "number": 8514, - "ip": "192.145.118.108", + "ips": [ + "192.145.118.108" + ], "tcp": true, "udp": true }, @@ -70150,7 +78368,9 @@ "region": "United States", "hostname": "us8515.nordvpn.com", "number": 8515, - "ip": "192.145.118.110", + "ips": [ + "192.145.118.110" + ], "tcp": true, "udp": true }, @@ -70158,7 +78378,9 @@ "region": "United States", "hostname": "us8516.nordvpn.com", "number": 8516, - "ip": "192.145.118.112", + "ips": [ + "192.145.118.112" + ], "tcp": true, "udp": true }, @@ -70166,7 +78388,9 @@ "region": "United States", "hostname": "us8517.nordvpn.com", "number": 8517, - "ip": "192.145.118.114", + "ips": [ + "192.145.118.114" + ], "tcp": true, "udp": true }, @@ -70174,7 +78398,9 @@ "region": "United States", "hostname": "us8518.nordvpn.com", "number": 8518, - "ip": "192.145.118.116", + "ips": [ + "192.145.118.116" + ], "tcp": true, "udp": true }, @@ -70182,7 +78408,9 @@ "region": "United States", "hostname": "us8519.nordvpn.com", "number": 8519, - "ip": "192.145.118.118", + "ips": [ + "192.145.118.118" + ], "tcp": true, "udp": true }, @@ -70190,7 +78418,9 @@ "region": "United States", "hostname": "us8520.nordvpn.com", "number": 8520, - "ip": "192.145.118.120", + "ips": [ + "192.145.118.120" + ], "tcp": true, "udp": true }, @@ -70198,7 +78428,9 @@ "region": "United States", "hostname": "us8521.nordvpn.com", "number": 8521, - "ip": "192.145.118.122", + "ips": [ + "192.145.118.122" + ], "tcp": true, "udp": true }, @@ -70206,7 +78438,9 @@ "region": "United States", "hostname": "us8522.nordvpn.com", "number": 8522, - "ip": "192.145.118.124", + "ips": [ + "192.145.118.124" + ], "tcp": true, "udp": true }, @@ -70214,7 +78448,9 @@ "region": "United States", "hostname": "us8523.nordvpn.com", "number": 8523, - "ip": "192.145.118.126", + "ips": [ + "192.145.118.126" + ], "tcp": true, "udp": true }, @@ -70222,7 +78458,9 @@ "region": "United States", "hostname": "us8524.nordvpn.com", "number": 8524, - "ip": "192.145.118.128", + "ips": [ + "192.145.118.128" + ], "tcp": true, "udp": true }, @@ -70230,7 +78468,9 @@ "region": "United States", "hostname": "us8525.nordvpn.com", "number": 8525, - "ip": "192.145.118.130", + "ips": [ + "192.145.118.130" + ], "tcp": true, "udp": true }, @@ -70238,7 +78478,9 @@ "region": "United States", "hostname": "us8526.nordvpn.com", "number": 8526, - "ip": "192.145.118.132", + "ips": [ + "192.145.118.132" + ], "tcp": true, "udp": true }, @@ -70246,7 +78488,9 @@ "region": "United States", "hostname": "us8527.nordvpn.com", "number": 8527, - "ip": "192.145.118.134", + "ips": [ + "192.145.118.134" + ], "tcp": true, "udp": true }, @@ -70254,7 +78498,9 @@ "region": "United States", "hostname": "us8528.nordvpn.com", "number": 8528, - "ip": "192.145.118.136", + "ips": [ + "192.145.118.136" + ], "tcp": true, "udp": true }, @@ -70262,7 +78508,9 @@ "region": "United States", "hostname": "us8529.nordvpn.com", "number": 8529, - "ip": "192.145.118.138", + "ips": [ + "192.145.118.138" + ], "tcp": true, "udp": true }, @@ -70270,7 +78518,9 @@ "region": "United States", "hostname": "us8530.nordvpn.com", "number": 8530, - "ip": "192.145.118.140", + "ips": [ + "192.145.118.140" + ], "tcp": true, "udp": true }, @@ -70278,7 +78528,9 @@ "region": "United States", "hostname": "us8531.nordvpn.com", "number": 8531, - "ip": "192.145.118.142", + "ips": [ + "192.145.118.142" + ], "tcp": true, "udp": true }, @@ -70286,7 +78538,9 @@ "region": "United States", "hostname": "us8532.nordvpn.com", "number": 8532, - "ip": "192.145.118.144", + "ips": [ + "192.145.118.144" + ], "tcp": true, "udp": true }, @@ -70294,7 +78548,9 @@ "region": "United States", "hostname": "us8533.nordvpn.com", "number": 8533, - "ip": "192.145.118.146", + "ips": [ + "192.145.118.146" + ], "tcp": true, "udp": true }, @@ -70302,7 +78558,9 @@ "region": "United States", "hostname": "us8534.nordvpn.com", "number": 8534, - "ip": "192.145.118.148", + "ips": [ + "192.145.118.148" + ], "tcp": true, "udp": true }, @@ -70310,7 +78568,9 @@ "region": "United States", "hostname": "us8535.nordvpn.com", "number": 8535, - "ip": "192.145.118.150", + "ips": [ + "192.145.118.150" + ], "tcp": true, "udp": true }, @@ -70318,7 +78578,9 @@ "region": "United States", "hostname": "us8536.nordvpn.com", "number": 8536, - "ip": "192.145.118.152", + "ips": [ + "192.145.118.152" + ], "tcp": true, "udp": true }, @@ -70326,7 +78588,9 @@ "region": "United States", "hostname": "us8537.nordvpn.com", "number": 8537, - "ip": "192.145.118.154", + "ips": [ + "192.145.118.154" + ], "tcp": true, "udp": true }, @@ -70334,7 +78598,9 @@ "region": "United States", "hostname": "us8538.nordvpn.com", "number": 8538, - "ip": "192.145.118.156", + "ips": [ + "192.145.118.156" + ], "tcp": true, "udp": true }, @@ -70342,7 +78608,9 @@ "region": "United States", "hostname": "us8539.nordvpn.com", "number": 8539, - "ip": "192.145.118.158", + "ips": [ + "192.145.118.158" + ], "tcp": true, "udp": true }, @@ -70350,7 +78618,9 @@ "region": "United States", "hostname": "us8540.nordvpn.com", "number": 8540, - "ip": "192.145.118.160", + "ips": [ + "192.145.118.160" + ], "tcp": true, "udp": true }, @@ -70358,7 +78628,9 @@ "region": "United States", "hostname": "us8541.nordvpn.com", "number": 8541, - "ip": "192.145.118.162", + "ips": [ + "192.145.118.162" + ], "tcp": true, "udp": true }, @@ -70366,7 +78638,9 @@ "region": "United States", "hostname": "us8557.nordvpn.com", "number": 8557, - "ip": "152.89.204.245", + "ips": [ + "152.89.204.245" + ], "tcp": true, "udp": true }, @@ -70374,7 +78648,9 @@ "region": "United States", "hostname": "us8558.nordvpn.com", "number": 8558, - "ip": "152.89.204.247", + "ips": [ + "152.89.204.247" + ], "tcp": true, "udp": true }, @@ -70382,7 +78658,9 @@ "region": "United States", "hostname": "us8559.nordvpn.com", "number": 8559, - "ip": "152.89.204.249", + "ips": [ + "152.89.204.249" + ], "tcp": true, "udp": true }, @@ -70390,7 +78668,9 @@ "region": "United States", "hostname": "us8560.nordvpn.com", "number": 8560, - "ip": "152.89.204.251", + "ips": [ + "152.89.204.251" + ], "tcp": true, "udp": true }, @@ -70398,7 +78678,9 @@ "region": "United States", "hostname": "us8561.nordvpn.com", "number": 8561, - "ip": "152.89.204.253", + "ips": [ + "152.89.204.253" + ], "tcp": true, "udp": true }, @@ -70406,7 +78688,9 @@ "region": "United States", "hostname": "us8562.nordvpn.com", "number": 8562, - "ip": "91.196.220.2", + "ips": [ + "91.196.220.2" + ], "tcp": true, "udp": true }, @@ -70414,7 +78698,9 @@ "region": "United States", "hostname": "us8563.nordvpn.com", "number": 8563, - "ip": "91.196.220.4", + "ips": [ + "91.196.220.4" + ], "tcp": true, "udp": true }, @@ -70422,7 +78708,9 @@ "region": "United States", "hostname": "us8564.nordvpn.com", "number": 8564, - "ip": "91.196.220.6", + "ips": [ + "91.196.220.6" + ], "tcp": true, "udp": true }, @@ -70430,7 +78718,9 @@ "region": "United States", "hostname": "us8565.nordvpn.com", "number": 8565, - "ip": "91.196.220.8", + "ips": [ + "91.196.220.8" + ], "tcp": true, "udp": true }, @@ -70438,7 +78728,9 @@ "region": "United States", "hostname": "us8566.nordvpn.com", "number": 8566, - "ip": "91.196.220.10", + "ips": [ + "91.196.220.10" + ], "tcp": true, "udp": true }, @@ -70446,7 +78738,9 @@ "region": "United States", "hostname": "us8567.nordvpn.com", "number": 8567, - "ip": "91.196.220.12", + "ips": [ + "91.196.220.12" + ], "tcp": true, "udp": true }, @@ -70454,7 +78748,9 @@ "region": "United States", "hostname": "us8568.nordvpn.com", "number": 8568, - "ip": "91.196.220.14", + "ips": [ + "91.196.220.14" + ], "tcp": true, "udp": true }, @@ -70462,7 +78758,9 @@ "region": "United States", "hostname": "us8569.nordvpn.com", "number": 8569, - "ip": "91.196.220.16", + "ips": [ + "91.196.220.16" + ], "tcp": true, "udp": true }, @@ -70470,7 +78768,9 @@ "region": "United States", "hostname": "us8570.nordvpn.com", "number": 8570, - "ip": "91.196.220.18", + "ips": [ + "91.196.220.18" + ], "tcp": true, "udp": true }, @@ -70478,7 +78778,9 @@ "region": "United States", "hostname": "us8571.nordvpn.com", "number": 8571, - "ip": "91.196.220.20", + "ips": [ + "91.196.220.20" + ], "tcp": true, "udp": true }, @@ -70486,7 +78788,9 @@ "region": "United States", "hostname": "us8572.nordvpn.com", "number": 8572, - "ip": "91.196.220.22", + "ips": [ + "91.196.220.22" + ], "tcp": true, "udp": true }, @@ -70494,7 +78798,9 @@ "region": "United States", "hostname": "us8573.nordvpn.com", "number": 8573, - "ip": "91.196.220.24", + "ips": [ + "91.196.220.24" + ], "tcp": true, "udp": true }, @@ -70502,7 +78808,9 @@ "region": "United States", "hostname": "us8574.nordvpn.com", "number": 8574, - "ip": "91.196.220.26", + "ips": [ + "91.196.220.26" + ], "tcp": true, "udp": true }, @@ -70510,7 +78818,9 @@ "region": "United States", "hostname": "us8575.nordvpn.com", "number": 8575, - "ip": "91.196.220.28", + "ips": [ + "91.196.220.28" + ], "tcp": true, "udp": true }, @@ -70518,7 +78828,9 @@ "region": "United States", "hostname": "us8576.nordvpn.com", "number": 8576, - "ip": "91.196.220.30", + "ips": [ + "91.196.220.30" + ], "tcp": true, "udp": true }, @@ -70526,7 +78838,9 @@ "region": "United States", "hostname": "us8577.nordvpn.com", "number": 8577, - "ip": "91.196.220.32", + "ips": [ + "91.196.220.32" + ], "tcp": true, "udp": true }, @@ -70534,7 +78848,9 @@ "region": "United States", "hostname": "us8578.nordvpn.com", "number": 8578, - "ip": "91.196.220.34", + "ips": [ + "91.196.220.34" + ], "tcp": true, "udp": true }, @@ -70542,7 +78858,9 @@ "region": "United States", "hostname": "us8579.nordvpn.com", "number": 8579, - "ip": "91.196.220.36", + "ips": [ + "91.196.220.36" + ], "tcp": true, "udp": true }, @@ -70550,7 +78868,9 @@ "region": "United States", "hostname": "us8580.nordvpn.com", "number": 8580, - "ip": "91.196.220.38", + "ips": [ + "91.196.220.38" + ], "tcp": true, "udp": true }, @@ -70558,7 +78878,9 @@ "region": "United States", "hostname": "us8581.nordvpn.com", "number": 8581, - "ip": "91.196.220.40", + "ips": [ + "91.196.220.40" + ], "tcp": true, "udp": true }, @@ -70566,7 +78888,9 @@ "region": "United States", "hostname": "us8582.nordvpn.com", "number": 8582, - "ip": "91.196.220.42", + "ips": [ + "91.196.220.42" + ], "tcp": true, "udp": true }, @@ -70574,7 +78898,9 @@ "region": "United States", "hostname": "us8583.nordvpn.com", "number": 8583, - "ip": "91.196.220.44", + "ips": [ + "91.196.220.44" + ], "tcp": true, "udp": true }, @@ -70582,7 +78908,9 @@ "region": "United States", "hostname": "us8584.nordvpn.com", "number": 8584, - "ip": "91.196.220.46", + "ips": [ + "91.196.220.46" + ], "tcp": true, "udp": true }, @@ -70590,7 +78918,9 @@ "region": "United States", "hostname": "us8585.nordvpn.com", "number": 8585, - "ip": "91.196.220.48", + "ips": [ + "91.196.220.48" + ], "tcp": true, "udp": true }, @@ -70598,7 +78928,9 @@ "region": "United States", "hostname": "us8586.nordvpn.com", "number": 8586, - "ip": "91.196.220.50", + "ips": [ + "91.196.220.50" + ], "tcp": true, "udp": true }, @@ -70606,7 +78938,9 @@ "region": "United States", "hostname": "us8587.nordvpn.com", "number": 8587, - "ip": "91.196.220.52", + "ips": [ + "91.196.220.52" + ], "tcp": true, "udp": true }, @@ -70614,7 +78948,9 @@ "region": "United States", "hostname": "us8588.nordvpn.com", "number": 8588, - "ip": "91.196.220.54", + "ips": [ + "91.196.220.54" + ], "tcp": true, "udp": true }, @@ -70622,7 +78958,9 @@ "region": "United States", "hostname": "us8589.nordvpn.com", "number": 8589, - "ip": "91.196.220.56", + "ips": [ + "91.196.220.56" + ], "tcp": true, "udp": true }, @@ -70630,7 +78968,9 @@ "region": "United States", "hostname": "us8590.nordvpn.com", "number": 8590, - "ip": "91.196.220.58", + "ips": [ + "91.196.220.58" + ], "tcp": true, "udp": true }, @@ -70638,7 +78978,9 @@ "region": "United States", "hostname": "us8591.nordvpn.com", "number": 8591, - "ip": "91.196.220.60", + "ips": [ + "91.196.220.60" + ], "tcp": true, "udp": true }, @@ -70646,7 +78988,9 @@ "region": "United States", "hostname": "us8592.nordvpn.com", "number": 8592, - "ip": "91.196.220.62", + "ips": [ + "91.196.220.62" + ], "tcp": true, "udp": true }, @@ -70654,7 +78998,9 @@ "region": "United States", "hostname": "us8593.nordvpn.com", "number": 8593, - "ip": "193.160.245.3", + "ips": [ + "193.160.245.3" + ], "tcp": true, "udp": true }, @@ -70662,7 +79008,9 @@ "region": "United States", "hostname": "us8594.nordvpn.com", "number": 8594, - "ip": "193.160.245.11", + "ips": [ + "193.160.245.11" + ], "tcp": true, "udp": true }, @@ -70670,7 +79018,9 @@ "region": "United States", "hostname": "us8595.nordvpn.com", "number": 8595, - "ip": "193.160.245.19", + "ips": [ + "193.160.245.19" + ], "tcp": true, "udp": true }, @@ -70678,7 +79028,9 @@ "region": "United States", "hostname": "us8596.nordvpn.com", "number": 8596, - "ip": "193.160.245.27", + "ips": [ + "193.160.245.27" + ], "tcp": true, "udp": true }, @@ -70686,7 +79038,9 @@ "region": "United States", "hostname": "us8597.nordvpn.com", "number": 8597, - "ip": "193.160.245.35", + "ips": [ + "193.160.245.35" + ], "tcp": true, "udp": true }, @@ -70694,7 +79048,9 @@ "region": "United States", "hostname": "us8598.nordvpn.com", "number": 8598, - "ip": "193.160.245.43", + "ips": [ + "193.160.245.43" + ], "tcp": true, "udp": true }, @@ -70702,7 +79058,9 @@ "region": "United States", "hostname": "us8599.nordvpn.com", "number": 8599, - "ip": "193.160.245.51", + "ips": [ + "193.160.245.51" + ], "tcp": true, "udp": true }, @@ -70710,7 +79068,9 @@ "region": "United States", "hostname": "us8600.nordvpn.com", "number": 8600, - "ip": "193.160.245.59", + "ips": [ + "193.160.245.59" + ], "tcp": true, "udp": true }, @@ -70718,7 +79078,9 @@ "region": "United States", "hostname": "us8601.nordvpn.com", "number": 8601, - "ip": "193.160.245.67", + "ips": [ + "193.160.245.67" + ], "tcp": true, "udp": true }, @@ -70726,7 +79088,9 @@ "region": "United States", "hostname": "us8602.nordvpn.com", "number": 8602, - "ip": "193.160.245.75", + "ips": [ + "193.160.245.75" + ], "tcp": true, "udp": true }, @@ -70734,7 +79098,9 @@ "region": "United States", "hostname": "us8603.nordvpn.com", "number": 8603, - "ip": "193.160.245.83", + "ips": [ + "193.160.245.83" + ], "tcp": true, "udp": true }, @@ -70742,7 +79108,9 @@ "region": "United States", "hostname": "us8604.nordvpn.com", "number": 8604, - "ip": "193.160.245.91", + "ips": [ + "193.160.245.91" + ], "tcp": true, "udp": true }, @@ -70750,7 +79118,9 @@ "region": "United States", "hostname": "us8605.nordvpn.com", "number": 8605, - "ip": "193.160.245.99", + "ips": [ + "193.160.245.99" + ], "tcp": true, "udp": true }, @@ -70758,7 +79128,9 @@ "region": "United States", "hostname": "us8606.nordvpn.com", "number": 8606, - "ip": "193.160.245.107", + "ips": [ + "193.160.245.107" + ], "tcp": true, "udp": true }, @@ -70766,7 +79138,9 @@ "region": "United States", "hostname": "us8607.nordvpn.com", "number": 8607, - "ip": "193.160.245.115", + "ips": [ + "193.160.245.115" + ], "tcp": true, "udp": true }, @@ -70774,7 +79148,9 @@ "region": "United States", "hostname": "us8608.nordvpn.com", "number": 8608, - "ip": "193.160.245.131", + "ips": [ + "193.160.245.131" + ], "tcp": true, "udp": true }, @@ -70782,7 +79158,9 @@ "region": "United States", "hostname": "us8609.nordvpn.com", "number": 8609, - "ip": "193.160.245.139", + "ips": [ + "193.160.245.139" + ], "tcp": true, "udp": true }, @@ -70790,7 +79168,9 @@ "region": "United States", "hostname": "us8610.nordvpn.com", "number": 8610, - "ip": "193.160.245.147", + "ips": [ + "193.160.245.147" + ], "tcp": true, "udp": true }, @@ -70798,7 +79178,9 @@ "region": "United States", "hostname": "us8611.nordvpn.com", "number": 8611, - "ip": "193.160.245.155", + "ips": [ + "193.160.245.155" + ], "tcp": true, "udp": true }, @@ -70806,15 +79188,9 @@ "region": "United States", "hostname": "us8612.nordvpn.com", "number": 8612, - "ip": "193.160.245.163", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us8613.nordvpn.com", - "number": 8613, - "ip": "193.160.245.171", + "ips": [ + "193.160.245.163" + ], "tcp": true, "udp": true }, @@ -70822,7 +79198,9 @@ "region": "United States", "hostname": "us8614.nordvpn.com", "number": 8614, - "ip": "193.160.245.179", + "ips": [ + "193.160.245.179" + ], "tcp": true, "udp": true }, @@ -70830,7 +79208,9 @@ "region": "United States", "hostname": "us8615.nordvpn.com", "number": 8615, - "ip": "193.160.245.187", + "ips": [ + "193.160.245.187" + ], "tcp": true, "udp": true }, @@ -70838,7 +79218,9 @@ "region": "United States", "hostname": "us8616.nordvpn.com", "number": 8616, - "ip": "193.160.245.195", + "ips": [ + "193.160.245.195" + ], "tcp": true, "udp": true }, @@ -70846,7 +79228,9 @@ "region": "United States", "hostname": "us8617.nordvpn.com", "number": 8617, - "ip": "193.160.245.203", + "ips": [ + "193.160.245.203" + ], "tcp": true, "udp": true }, @@ -70854,7 +79238,9 @@ "region": "United States", "hostname": "us8618.nordvpn.com", "number": 8618, - "ip": "193.160.245.211", + "ips": [ + "193.160.245.211" + ], "tcp": true, "udp": true }, @@ -70862,7 +79248,9 @@ "region": "United States", "hostname": "us8619.nordvpn.com", "number": 8619, - "ip": "193.160.245.219", + "ips": [ + "193.160.245.219" + ], "tcp": true, "udp": true }, @@ -70870,7 +79258,9 @@ "region": "United States", "hostname": "us8620.nordvpn.com", "number": 8620, - "ip": "193.160.245.227", + "ips": [ + "193.160.245.227" + ], "tcp": true, "udp": true }, @@ -70878,7 +79268,9 @@ "region": "United States", "hostname": "us8621.nordvpn.com", "number": 8621, - "ip": "193.160.245.235", + "ips": [ + "193.160.245.235" + ], "tcp": true, "udp": true }, @@ -70886,7 +79278,9 @@ "region": "United States", "hostname": "us8622.nordvpn.com", "number": 8622, - "ip": "193.160.245.243", + "ips": [ + "193.160.245.243" + ], "tcp": true, "udp": true }, @@ -70894,7 +79288,9 @@ "region": "United States", "hostname": "us8623.nordvpn.com", "number": 8623, - "ip": "193.160.245.251", + "ips": [ + "193.160.245.251" + ], "tcp": true, "udp": true }, @@ -70902,7 +79298,9 @@ "region": "United States", "hostname": "us8624.nordvpn.com", "number": 8624, - "ip": "192.145.80.3", + "ips": [ + "192.145.80.3" + ], "tcp": true, "udp": true }, @@ -70910,7 +79308,9 @@ "region": "United States", "hostname": "us8625.nordvpn.com", "number": 8625, - "ip": "192.145.80.11", + "ips": [ + "192.145.80.11" + ], "tcp": true, "udp": true }, @@ -70918,7 +79318,9 @@ "region": "United States", "hostname": "us8626.nordvpn.com", "number": 8626, - "ip": "192.145.80.19", + "ips": [ + "192.145.80.19" + ], "tcp": true, "udp": true }, @@ -70926,7 +79328,9 @@ "region": "United States", "hostname": "us8627.nordvpn.com", "number": 8627, - "ip": "192.145.80.27", + "ips": [ + "192.145.80.27" + ], "tcp": true, "udp": true }, @@ -70934,7 +79338,9 @@ "region": "United States", "hostname": "us8628.nordvpn.com", "number": 8628, - "ip": "192.145.80.35", + "ips": [ + "192.145.80.35" + ], "tcp": true, "udp": true }, @@ -70942,7 +79348,9 @@ "region": "United States", "hostname": "us8629.nordvpn.com", "number": 8629, - "ip": "192.145.80.43", + "ips": [ + "192.145.80.43" + ], "tcp": true, "udp": true }, @@ -70950,7 +79358,9 @@ "region": "United States", "hostname": "us8630.nordvpn.com", "number": 8630, - "ip": "192.145.80.51", + "ips": [ + "192.145.80.51" + ], "tcp": true, "udp": true }, @@ -70958,7 +79368,9 @@ "region": "United States", "hostname": "us8631.nordvpn.com", "number": 8631, - "ip": "192.145.80.59", + "ips": [ + "192.145.80.59" + ], "tcp": true, "udp": true }, @@ -70966,7 +79378,9 @@ "region": "United States", "hostname": "us8632.nordvpn.com", "number": 8632, - "ip": "192.145.80.67", + "ips": [ + "192.145.80.67" + ], "tcp": true, "udp": true }, @@ -70974,7 +79388,9 @@ "region": "United States", "hostname": "us8633.nordvpn.com", "number": 8633, - "ip": "192.145.80.75", + "ips": [ + "192.145.80.75" + ], "tcp": true, "udp": true }, @@ -70982,7 +79398,9 @@ "region": "United States", "hostname": "us8634.nordvpn.com", "number": 8634, - "ip": "192.145.80.83", + "ips": [ + "192.145.80.83" + ], "tcp": true, "udp": true }, @@ -70990,7 +79408,9 @@ "region": "United States", "hostname": "us8635.nordvpn.com", "number": 8635, - "ip": "192.145.80.91", + "ips": [ + "192.145.80.91" + ], "tcp": true, "udp": true }, @@ -70998,7 +79418,9 @@ "region": "United States", "hostname": "us8636.nordvpn.com", "number": 8636, - "ip": "192.145.80.99", + "ips": [ + "192.145.80.99" + ], "tcp": true, "udp": true }, @@ -71006,7 +79428,9 @@ "region": "United States", "hostname": "us8637.nordvpn.com", "number": 8637, - "ip": "192.145.80.107", + "ips": [ + "192.145.80.107" + ], "tcp": true, "udp": true }, @@ -71014,7 +79438,9 @@ "region": "United States", "hostname": "us8638.nordvpn.com", "number": 8638, - "ip": "192.145.80.115", + "ips": [ + "192.145.80.115" + ], "tcp": true, "udp": true }, @@ -71022,7 +79448,9 @@ "region": "United States", "hostname": "us8639.nordvpn.com", "number": 8639, - "ip": "192.145.80.123", + "ips": [ + "192.145.80.123" + ], "tcp": true, "udp": true }, @@ -71030,7 +79458,9 @@ "region": "United States", "hostname": "us8640.nordvpn.com", "number": 8640, - "ip": "192.145.80.131", + "ips": [ + "192.145.80.131" + ], "tcp": true, "udp": true }, @@ -71038,7 +79468,9 @@ "region": "United States", "hostname": "us8641.nordvpn.com", "number": 8641, - "ip": "37.19.199.68", + "ips": [ + "37.19.199.68" + ], "tcp": true, "udp": true }, @@ -71046,7 +79478,9 @@ "region": "United States", "hostname": "us8642.nordvpn.com", "number": 8642, - "ip": "37.19.199.72", + "ips": [ + "37.19.199.72" + ], "tcp": true, "udp": true }, @@ -71054,7 +79488,9 @@ "region": "United States", "hostname": "us8643.nordvpn.com", "number": 8643, - "ip": "37.19.199.76", + "ips": [ + "37.19.199.76" + ], "tcp": true, "udp": true }, @@ -71062,7 +79498,9 @@ "region": "United States", "hostname": "us8644.nordvpn.com", "number": 8644, - "ip": "37.19.199.80", + "ips": [ + "37.19.199.80" + ], "tcp": true, "udp": true }, @@ -71070,7 +79508,9 @@ "region": "United States", "hostname": "us8645.nordvpn.com", "number": 8645, - "ip": "37.19.199.84", + "ips": [ + "37.19.199.84" + ], "tcp": true, "udp": true }, @@ -71078,7 +79518,9 @@ "region": "United States", "hostname": "us8646.nordvpn.com", "number": 8646, - "ip": "37.19.199.34", + "ips": [ + "37.19.199.34" + ], "tcp": true, "udp": true }, @@ -71086,7 +79528,9 @@ "region": "United States", "hostname": "us8647.nordvpn.com", "number": 8647, - "ip": "37.19.199.39", + "ips": [ + "37.19.199.39" + ], "tcp": true, "udp": true }, @@ -71094,7 +79538,9 @@ "region": "United States", "hostname": "us8648.nordvpn.com", "number": 8648, - "ip": "37.19.199.44", + "ips": [ + "37.19.199.44" + ], "tcp": true, "udp": true }, @@ -71102,7 +79548,9 @@ "region": "United States", "hostname": "us8649.nordvpn.com", "number": 8649, - "ip": "62.182.99.218", + "ips": [ + "62.182.99.218" + ], "tcp": true, "udp": true }, @@ -71110,7 +79558,9 @@ "region": "United States", "hostname": "us8650.nordvpn.com", "number": 8650, - "ip": "62.182.99.220", + "ips": [ + "62.182.99.220" + ], "tcp": true, "udp": true }, @@ -71118,7 +79568,9 @@ "region": "United States", "hostname": "us8651.nordvpn.com", "number": 8651, - "ip": "62.182.99.222", + "ips": [ + "62.182.99.222" + ], "tcp": true, "udp": true }, @@ -71126,7 +79578,9 @@ "region": "United States", "hostname": "us8652.nordvpn.com", "number": 8652, - "ip": "62.182.99.224", + "ips": [ + "62.182.99.224" + ], "tcp": true, "udp": true }, @@ -71134,7 +79588,9 @@ "region": "United States", "hostname": "us8653.nordvpn.com", "number": 8653, - "ip": "62.182.99.226", + "ips": [ + "62.182.99.226" + ], "tcp": true, "udp": true }, @@ -71142,7 +79598,9 @@ "region": "United States", "hostname": "us8654.nordvpn.com", "number": 8654, - "ip": "62.182.99.228", + "ips": [ + "62.182.99.228" + ], "tcp": true, "udp": true }, @@ -71150,7 +79608,9 @@ "region": "United States", "hostname": "us8655.nordvpn.com", "number": 8655, - "ip": "62.182.99.230", + "ips": [ + "62.182.99.230" + ], "tcp": true, "udp": true }, @@ -71158,7 +79618,9 @@ "region": "United States", "hostname": "us8656.nordvpn.com", "number": 8656, - "ip": "62.182.99.232", + "ips": [ + "62.182.99.232" + ], "tcp": true, "udp": true }, @@ -71166,7 +79628,9 @@ "region": "United States", "hostname": "us8657.nordvpn.com", "number": 8657, - "ip": "62.182.99.234", + "ips": [ + "62.182.99.234" + ], "tcp": true, "udp": true }, @@ -71174,7 +79638,9 @@ "region": "United States", "hostname": "us8658.nordvpn.com", "number": 8658, - "ip": "62.182.99.236", + "ips": [ + "62.182.99.236" + ], "tcp": true, "udp": true }, @@ -71182,7 +79648,9 @@ "region": "United States", "hostname": "us8659.nordvpn.com", "number": 8659, - "ip": "62.182.99.238", + "ips": [ + "62.182.99.238" + ], "tcp": true, "udp": true }, @@ -71190,7 +79658,9 @@ "region": "United States", "hostname": "us8660.nordvpn.com", "number": 8660, - "ip": "62.182.99.240", + "ips": [ + "62.182.99.240" + ], "tcp": true, "udp": true }, @@ -71198,7 +79668,9 @@ "region": "United States", "hostname": "us8661.nordvpn.com", "number": 8661, - "ip": "62.182.99.242", + "ips": [ + "62.182.99.242" + ], "tcp": true, "udp": true }, @@ -71206,7 +79678,9 @@ "region": "United States", "hostname": "us8662.nordvpn.com", "number": 8662, - "ip": "62.182.99.244", + "ips": [ + "62.182.99.244" + ], "tcp": true, "udp": true }, @@ -71214,7 +79688,9 @@ "region": "United States", "hostname": "us8663.nordvpn.com", "number": 8663, - "ip": "62.182.99.246", + "ips": [ + "62.182.99.246" + ], "tcp": true, "udp": true }, @@ -71222,7 +79698,9 @@ "region": "United States", "hostname": "us8664.nordvpn.com", "number": 8664, - "ip": "62.182.99.248", + "ips": [ + "62.182.99.248" + ], "tcp": true, "udp": true }, @@ -71230,7 +79708,9 @@ "region": "United States", "hostname": "us8665.nordvpn.com", "number": 8665, - "ip": "62.182.99.250", + "ips": [ + "62.182.99.250" + ], "tcp": true, "udp": true }, @@ -71238,7 +79718,9 @@ "region": "United States", "hostname": "us8666.nordvpn.com", "number": 8666, - "ip": "62.182.99.252", + "ips": [ + "62.182.99.252" + ], "tcp": true, "udp": true }, @@ -71246,7 +79728,9 @@ "region": "United States", "hostname": "us8667.nordvpn.com", "number": 8667, - "ip": "62.182.99.254", + "ips": [ + "62.182.99.254" + ], "tcp": true, "udp": true }, @@ -71254,7 +79738,9 @@ "region": "United States", "hostname": "us8668.nordvpn.com", "number": 8668, - "ip": "185.187.243.3", + "ips": [ + "185.187.243.3" + ], "tcp": true, "udp": true }, @@ -71262,7 +79748,9 @@ "region": "United States", "hostname": "us8669.nordvpn.com", "number": 8669, - "ip": "185.187.243.5", + "ips": [ + "185.187.243.5" + ], "tcp": true, "udp": true }, @@ -71270,7 +79758,9 @@ "region": "United States", "hostname": "us8670.nordvpn.com", "number": 8670, - "ip": "185.187.243.7", + "ips": [ + "185.187.243.7" + ], "tcp": true, "udp": true }, @@ -71278,7 +79768,9 @@ "region": "United States", "hostname": "us8671.nordvpn.com", "number": 8671, - "ip": "185.187.243.9", + "ips": [ + "185.187.243.9" + ], "tcp": true, "udp": true }, @@ -71286,7 +79778,9 @@ "region": "United States", "hostname": "us8672.nordvpn.com", "number": 8672, - "ip": "185.187.243.11", + "ips": [ + "185.187.243.11" + ], "tcp": true, "udp": true }, @@ -71294,7 +79788,9 @@ "region": "United States", "hostname": "us8673.nordvpn.com", "number": 8673, - "ip": "185.187.243.13", + "ips": [ + "185.187.243.13" + ], "tcp": true, "udp": true }, @@ -71302,7 +79798,9 @@ "region": "United States", "hostname": "us8674.nordvpn.com", "number": 8674, - "ip": "185.187.243.15", + "ips": [ + "185.187.243.15" + ], "tcp": true, "udp": true }, @@ -71310,7 +79808,9 @@ "region": "United States", "hostname": "us8675.nordvpn.com", "number": 8675, - "ip": "185.187.243.17", + "ips": [ + "185.187.243.17" + ], "tcp": true, "udp": true }, @@ -71318,7 +79818,9 @@ "region": "United States", "hostname": "us8676.nordvpn.com", "number": 8676, - "ip": "185.187.243.19", + "ips": [ + "185.187.243.19" + ], "tcp": true, "udp": true }, @@ -71326,7 +79828,9 @@ "region": "United States", "hostname": "us8677.nordvpn.com", "number": 8677, - "ip": "185.187.243.21", + "ips": [ + "185.187.243.21" + ], "tcp": true, "udp": true }, @@ -71334,7 +79838,9 @@ "region": "United States", "hostname": "us8678.nordvpn.com", "number": 8678, - "ip": "185.187.243.23", + "ips": [ + "185.187.243.23" + ], "tcp": true, "udp": true }, @@ -71342,7 +79848,9 @@ "region": "United States", "hostname": "us8679.nordvpn.com", "number": 8679, - "ip": "185.187.243.25", + "ips": [ + "185.187.243.25" + ], "tcp": true, "udp": true }, @@ -71350,7 +79858,9 @@ "region": "United States", "hostname": "us8680.nordvpn.com", "number": 8680, - "ip": "185.187.243.27", + "ips": [ + "185.187.243.27" + ], "tcp": true, "udp": true }, @@ -71358,7 +79868,9 @@ "region": "United States", "hostname": "us8681.nordvpn.com", "number": 8681, - "ip": "185.187.243.29", + "ips": [ + "185.187.243.29" + ], "tcp": true, "udp": true }, @@ -71366,7 +79878,9 @@ "region": "United States", "hostname": "us8682.nordvpn.com", "number": 8682, - "ip": "185.187.243.31", + "ips": [ + "185.187.243.31" + ], "tcp": true, "udp": true }, @@ -71374,7 +79888,9 @@ "region": "United States", "hostname": "us8683.nordvpn.com", "number": 8683, - "ip": "185.187.243.33", + "ips": [ + "185.187.243.33" + ], "tcp": true, "udp": true }, @@ -71382,7 +79898,9 @@ "region": "United States", "hostname": "us8684.nordvpn.com", "number": 8684, - "ip": "185.187.243.35", + "ips": [ + "185.187.243.35" + ], "tcp": true, "udp": true }, @@ -71390,7 +79908,9 @@ "region": "United States", "hostname": "us8685.nordvpn.com", "number": 8685, - "ip": "185.187.243.37", + "ips": [ + "185.187.243.37" + ], "tcp": true, "udp": true }, @@ -71398,7 +79918,9 @@ "region": "United States", "hostname": "us8686.nordvpn.com", "number": 8686, - "ip": "185.187.243.39", + "ips": [ + "185.187.243.39" + ], "tcp": true, "udp": true }, @@ -71406,7 +79928,9 @@ "region": "United States", "hostname": "us8687.nordvpn.com", "number": 8687, - "ip": "185.187.243.41", + "ips": [ + "185.187.243.41" + ], "tcp": true, "udp": true }, @@ -71414,7 +79938,9 @@ "region": "United States", "hostname": "us8688.nordvpn.com", "number": 8688, - "ip": "185.187.243.43", + "ips": [ + "185.187.243.43" + ], "tcp": true, "udp": true }, @@ -71422,7 +79948,9 @@ "region": "United States", "hostname": "us8689.nordvpn.com", "number": 8689, - "ip": "185.187.243.45", + "ips": [ + "185.187.243.45" + ], "tcp": true, "udp": true }, @@ -71430,7 +79958,9 @@ "region": "United States", "hostname": "us8690.nordvpn.com", "number": 8690, - "ip": "185.187.243.47", + "ips": [ + "185.187.243.47" + ], "tcp": true, "udp": true }, @@ -71438,7 +79968,9 @@ "region": "United States", "hostname": "us8691.nordvpn.com", "number": 8691, - "ip": "185.187.243.49", + "ips": [ + "185.187.243.49" + ], "tcp": true, "udp": true }, @@ -71446,7 +79978,9 @@ "region": "United States", "hostname": "us8692.nordvpn.com", "number": 8692, - "ip": "185.187.243.51", + "ips": [ + "185.187.243.51" + ], "tcp": true, "udp": true }, @@ -71454,7 +79988,9 @@ "region": "United States", "hostname": "us8693.nordvpn.com", "number": 8693, - "ip": "185.187.243.53", + "ips": [ + "185.187.243.53" + ], "tcp": true, "udp": true }, @@ -71462,7 +79998,9 @@ "region": "United States", "hostname": "us8694.nordvpn.com", "number": 8694, - "ip": "185.187.243.55", + "ips": [ + "185.187.243.55" + ], "tcp": true, "udp": true }, @@ -71470,7 +80008,9 @@ "region": "United States", "hostname": "us8695.nordvpn.com", "number": 8695, - "ip": "185.187.243.57", + "ips": [ + "185.187.243.57" + ], "tcp": true, "udp": true }, @@ -71478,7 +80018,9 @@ "region": "United States", "hostname": "us8696.nordvpn.com", "number": 8696, - "ip": "185.187.243.59", + "ips": [ + "185.187.243.59" + ], "tcp": true, "udp": true }, @@ -71486,7 +80028,9 @@ "region": "United States", "hostname": "us8697.nordvpn.com", "number": 8697, - "ip": "195.206.104.91", + "ips": [ + "195.206.104.91" + ], "tcp": true, "udp": true }, @@ -71494,7 +80038,9 @@ "region": "United States", "hostname": "us8698.nordvpn.com", "number": 8698, - "ip": "192.145.119.100", + "ips": [ + "192.145.119.100" + ], "tcp": true, "udp": true }, @@ -71502,7 +80048,9 @@ "region": "United States", "hostname": "us8699.nordvpn.com", "number": 8699, - "ip": "192.145.119.102", + "ips": [ + "192.145.119.102" + ], "tcp": true, "udp": true }, @@ -71510,7 +80058,9 @@ "region": "United States", "hostname": "us8700.nordvpn.com", "number": 8700, - "ip": "192.145.119.104", + "ips": [ + "192.145.119.104" + ], "tcp": true, "udp": true }, @@ -71518,7 +80068,9 @@ "region": "United States", "hostname": "us8701.nordvpn.com", "number": 8701, - "ip": "192.145.119.106", + "ips": [ + "192.145.119.106" + ], "tcp": true, "udp": true }, @@ -71526,7 +80078,9 @@ "region": "United States", "hostname": "us8702.nordvpn.com", "number": 8702, - "ip": "192.145.119.108", + "ips": [ + "192.145.119.108" + ], "tcp": true, "udp": true }, @@ -71534,7 +80088,9 @@ "region": "United States", "hostname": "us8703.nordvpn.com", "number": 8703, - "ip": "192.145.119.110", + "ips": [ + "192.145.119.110" + ], "tcp": true, "udp": true }, @@ -71542,7 +80098,9 @@ "region": "United States", "hostname": "us8704.nordvpn.com", "number": 8704, - "ip": "192.145.119.112", + "ips": [ + "192.145.119.112" + ], "tcp": true, "udp": true }, @@ -71550,7 +80108,9 @@ "region": "United States", "hostname": "us8705.nordvpn.com", "number": 8705, - "ip": "192.145.119.114", + "ips": [ + "192.145.119.114" + ], "tcp": true, "udp": true }, @@ -71558,7 +80118,9 @@ "region": "United States", "hostname": "us8706.nordvpn.com", "number": 8706, - "ip": "192.145.119.116", + "ips": [ + "192.145.119.116" + ], "tcp": true, "udp": true }, @@ -71566,7 +80128,9 @@ "region": "United States", "hostname": "us8707.nordvpn.com", "number": 8707, - "ip": "192.145.119.118", + "ips": [ + "192.145.119.118" + ], "tcp": true, "udp": true }, @@ -71574,7 +80138,9 @@ "region": "United States", "hostname": "us8708.nordvpn.com", "number": 8708, - "ip": "192.145.119.120", + "ips": [ + "192.145.119.120" + ], "tcp": true, "udp": true }, @@ -71582,7 +80148,9 @@ "region": "United States", "hostname": "us8709.nordvpn.com", "number": 8709, - "ip": "192.145.119.122", + "ips": [ + "192.145.119.122" + ], "tcp": true, "udp": true }, @@ -71590,7 +80158,9 @@ "region": "United States", "hostname": "us8710.nordvpn.com", "number": 8710, - "ip": "192.145.119.124", + "ips": [ + "192.145.119.124" + ], "tcp": true, "udp": true }, @@ -71598,7 +80168,9 @@ "region": "United States", "hostname": "us8711.nordvpn.com", "number": 8711, - "ip": "192.145.119.126", + "ips": [ + "192.145.119.126" + ], "tcp": true, "udp": true }, @@ -71606,7 +80178,9 @@ "region": "United States", "hostname": "us8712.nordvpn.com", "number": 8712, - "ip": "192.145.119.128", + "ips": [ + "192.145.119.128" + ], "tcp": true, "udp": true }, @@ -71614,7 +80188,9 @@ "region": "United States", "hostname": "us8713.nordvpn.com", "number": 8713, - "ip": "192.145.119.130", + "ips": [ + "192.145.119.130" + ], "tcp": true, "udp": true }, @@ -71622,7 +80198,9 @@ "region": "United States", "hostname": "us8714.nordvpn.com", "number": 8714, - "ip": "192.145.119.132", + "ips": [ + "192.145.119.132" + ], "tcp": true, "udp": true }, @@ -71630,7 +80208,9 @@ "region": "United States", "hostname": "us8715.nordvpn.com", "number": 8715, - "ip": "192.145.119.134", + "ips": [ + "192.145.119.134" + ], "tcp": true, "udp": true }, @@ -71638,7 +80218,9 @@ "region": "United States", "hostname": "us8716.nordvpn.com", "number": 8716, - "ip": "192.145.119.136", + "ips": [ + "192.145.119.136" + ], "tcp": true, "udp": true }, @@ -71646,7 +80228,9 @@ "region": "United States", "hostname": "us8717.nordvpn.com", "number": 8717, - "ip": "192.145.119.138", + "ips": [ + "192.145.119.138" + ], "tcp": true, "udp": true }, @@ -71654,7 +80238,9 @@ "region": "United States", "hostname": "us8718.nordvpn.com", "number": 8718, - "ip": "192.145.119.140", + "ips": [ + "192.145.119.140" + ], "tcp": true, "udp": true }, @@ -71662,7 +80248,9 @@ "region": "United States", "hostname": "us8719.nordvpn.com", "number": 8719, - "ip": "192.145.119.142", + "ips": [ + "192.145.119.142" + ], "tcp": true, "udp": true }, @@ -71670,7 +80258,19 @@ "region": "United States", "hostname": "us8720.nordvpn.com", "number": 8720, - "ip": "207.244.78.87", + "ips": [ + "207.244.78.87" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us8721.nordvpn.com", + "number": 8721, + "ips": [ + "207.244.74.141" + ], "tcp": true, "udp": true }, @@ -71678,7 +80278,9 @@ "region": "United States", "hostname": "us8722.nordvpn.com", "number": 8722, - "ip": "207.244.78.66", + "ips": [ + "207.244.78.66" + ], "tcp": true, "udp": true }, @@ -71686,7 +80288,9 @@ "region": "United States", "hostname": "us8724.nordvpn.com", "number": 8724, - "ip": "207.244.124.196", + "ips": [ + "207.244.124.196" + ], "tcp": true, "udp": true }, @@ -71694,7 +80298,9 @@ "region": "United States", "hostname": "us8725.nordvpn.com", "number": 8725, - "ip": "23.105.173.209", + "ips": [ + "23.105.173.209" + ], "tcp": true, "udp": true }, @@ -71702,7 +80308,9 @@ "region": "United States", "hostname": "us8726.nordvpn.com", "number": 8726, - "ip": "23.105.173.226", + "ips": [ + "23.105.173.226" + ], "tcp": true, "udp": true }, @@ -71710,7 +80318,9 @@ "region": "United States", "hostname": "us8727.nordvpn.com", "number": 8727, - "ip": "23.105.173.223", + "ips": [ + "23.105.173.223" + ], "tcp": true, "udp": true }, @@ -71718,7 +80328,9 @@ "region": "United States", "hostname": "us8728.nordvpn.com", "number": 8728, - "ip": "207.244.71.195", + "ips": [ + "207.244.71.195" + ], "tcp": true, "udp": true }, @@ -71726,7 +80338,9 @@ "region": "United States", "hostname": "us8729.nordvpn.com", "number": 8729, - "ip": "23.105.36.133", + "ips": [ + "23.105.36.133" + ], "tcp": true, "udp": true }, @@ -71734,7 +80348,9 @@ "region": "United States", "hostname": "us8730.nordvpn.com", "number": 8730, - "ip": "23.105.36.153", + "ips": [ + "23.105.36.153" + ], "tcp": true, "udp": true }, @@ -71742,7 +80358,9 @@ "region": "United States", "hostname": "us8731.nordvpn.com", "number": 8731, - "ip": "23.105.173.179", + "ips": [ + "23.105.173.179" + ], "tcp": true, "udp": true }, @@ -71750,7 +80368,9 @@ "region": "United States", "hostname": "us8732.nordvpn.com", "number": 8732, - "ip": "23.105.173.175", + "ips": [ + "23.105.173.175" + ], "tcp": true, "udp": true }, @@ -71758,7 +80378,9 @@ "region": "United States", "hostname": "us8733.nordvpn.com", "number": 8733, - "ip": "207.244.78.65", + "ips": [ + "207.244.78.65" + ], "tcp": true, "udp": true }, @@ -71766,7 +80388,9 @@ "region": "United States", "hostname": "us8734.nordvpn.com", "number": 8734, - "ip": "207.244.124.195", + "ips": [ + "207.244.124.195" + ], "tcp": true, "udp": true }, @@ -71774,7 +80398,9 @@ "region": "United States", "hostname": "us8735.nordvpn.com", "number": 8735, - "ip": "23.105.174.4", + "ips": [ + "23.105.174.4" + ], "tcp": true, "udp": true }, @@ -71782,7 +80408,9 @@ "region": "United States", "hostname": "us8736.nordvpn.com", "number": 8736, - "ip": "23.105.174.14", + "ips": [ + "23.105.174.14" + ], "tcp": true, "udp": true }, @@ -71790,7 +80418,9 @@ "region": "United States", "hostname": "us8737.nordvpn.com", "number": 8737, - "ip": "23.105.174.20", + "ips": [ + "23.105.174.20" + ], "tcp": true, "udp": true }, @@ -71798,7 +80428,9 @@ "region": "United States", "hostname": "us8738.nordvpn.com", "number": 8738, - "ip": "23.105.36.213", + "ips": [ + "23.105.36.213" + ], "tcp": true, "udp": true }, @@ -71806,7 +80438,9 @@ "region": "United States", "hostname": "us8739.nordvpn.com", "number": 8739, - "ip": "207.244.124.231", + "ips": [ + "207.244.124.231" + ], "tcp": true, "udp": true }, @@ -71814,7 +80448,9 @@ "region": "United States", "hostname": "us8740.nordvpn.com", "number": 8740, - "ip": "23.105.174.6", + "ips": [ + "23.105.174.6" + ], "tcp": true, "udp": true }, @@ -71822,7 +80458,9 @@ "region": "United States", "hostname": "us8741.nordvpn.com", "number": 8741, - "ip": "192.96.202.16", + "ips": [ + "192.96.202.16" + ], "tcp": true, "udp": true }, @@ -71830,7 +80468,9 @@ "region": "United States", "hostname": "us8742.nordvpn.com", "number": 8742, - "ip": "207.244.71.209", + "ips": [ + "207.244.71.209" + ], "tcp": true, "udp": true }, @@ -71838,7 +80478,9 @@ "region": "United States", "hostname": "us8743.nordvpn.com", "number": 8743, - "ip": "207.244.71.207", + "ips": [ + "207.244.71.207" + ], "tcp": true, "udp": true }, @@ -71846,7 +80488,9 @@ "region": "United States", "hostname": "us8744.nordvpn.com", "number": 8744, - "ip": "23.105.165.19", + "ips": [ + "23.105.165.19" + ], "tcp": true, "udp": true }, @@ -71854,7 +80498,9 @@ "region": "United States", "hostname": "us8745.nordvpn.com", "number": 8745, - "ip": "23.105.165.44", + "ips": [ + "23.105.165.44" + ], "tcp": true, "udp": true }, @@ -71862,7 +80508,9 @@ "region": "United States", "hostname": "us8746.nordvpn.com", "number": 8746, - "ip": "23.105.165.33", + "ips": [ + "23.105.165.33" + ], "tcp": true, "udp": true }, @@ -71870,7 +80518,9 @@ "region": "United States", "hostname": "us8747.nordvpn.com", "number": 8747, - "ip": "23.105.177.135", + "ips": [ + "23.105.177.135" + ], "tcp": true, "udp": true }, @@ -71878,7 +80528,9 @@ "region": "United States", "hostname": "us8748.nordvpn.com", "number": 8748, - "ip": "23.105.177.141", + "ips": [ + "23.105.177.141" + ], "tcp": true, "udp": true }, @@ -71886,7 +80538,9 @@ "region": "United States", "hostname": "us8749.nordvpn.com", "number": 8749, - "ip": "23.105.177.129", + "ips": [ + "23.105.177.129" + ], "tcp": true, "udp": true }, @@ -71894,7 +80548,9 @@ "region": "United States", "hostname": "us8750.nordvpn.com", "number": 8750, - "ip": "23.105.36.172", + "ips": [ + "23.105.36.172" + ], "tcp": true, "udp": true }, @@ -71902,7 +80558,9 @@ "region": "United States", "hostname": "us8751.nordvpn.com", "number": 8751, - "ip": "23.105.36.131", + "ips": [ + "23.105.36.131" + ], "tcp": true, "udp": true }, @@ -71910,7 +80568,9 @@ "region": "United States", "hostname": "us8752.nordvpn.com", "number": 8752, - "ip": "23.105.36.165", + "ips": [ + "23.105.36.165" + ], "tcp": true, "udp": true }, @@ -71918,7 +80578,9 @@ "region": "United States", "hostname": "us8753.nordvpn.com", "number": 8753, - "ip": "23.105.173.198", + "ips": [ + "23.105.173.198" + ], "tcp": true, "udp": true }, @@ -71926,15 +80588,9 @@ "region": "United States", "hostname": "us8754.nordvpn.com", "number": 8754, - "ip": "192.96.202.5", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us8755.nordvpn.com", - "number": 8755, - "ip": "23.105.173.162", + "ips": [ + "192.96.202.5" + ], "tcp": true, "udp": true }, @@ -71942,7 +80598,9 @@ "region": "United States", "hostname": "us8756.nordvpn.com", "number": 8756, - "ip": "23.105.177.149", + "ips": [ + "23.105.177.149" + ], "tcp": true, "udp": true }, @@ -71950,7 +80608,9 @@ "region": "United States", "hostname": "us8757.nordvpn.com", "number": 8757, - "ip": "23.105.177.132", + "ips": [ + "23.105.177.132" + ], "tcp": true, "udp": true }, @@ -71958,7 +80618,9 @@ "region": "United States", "hostname": "us8758.nordvpn.com", "number": 8758, - "ip": "23.105.173.170", + "ips": [ + "23.105.173.170" + ], "tcp": true, "udp": true }, @@ -71966,7 +80628,9 @@ "region": "United States", "hostname": "us8759.nordvpn.com", "number": 8759, - "ip": "23.105.173.166", + "ips": [ + "23.105.173.166" + ], "tcp": true, "udp": true }, @@ -71974,7 +80638,9 @@ "region": "United States", "hostname": "us8760.nordvpn.com", "number": 8760, - "ip": "23.105.173.158", + "ips": [ + "23.105.173.158" + ], "tcp": true, "udp": true }, @@ -71982,7 +80648,9 @@ "region": "United States", "hostname": "us8761.nordvpn.com", "number": 8761, - "ip": "23.105.173.131", + "ips": [ + "23.105.173.131" + ], "tcp": true, "udp": true }, @@ -71990,7 +80658,9 @@ "region": "United States", "hostname": "us8762.nordvpn.com", "number": 8762, - "ip": "207.244.85.20", + "ips": [ + "207.244.85.20" + ], "tcp": true, "udp": true }, @@ -71998,7 +80668,9 @@ "region": "United States", "hostname": "us8763.nordvpn.com", "number": 8763, - "ip": "207.244.71.204", + "ips": [ + "207.244.71.204" + ], "tcp": true, "udp": true }, @@ -72006,7 +80678,9 @@ "region": "United States", "hostname": "us8764.nordvpn.com", "number": 8764, - "ip": "23.82.8.197", + "ips": [ + "23.82.8.197" + ], "tcp": true, "udp": true }, @@ -72014,7 +80688,9 @@ "region": "United States", "hostname": "us8765.nordvpn.com", "number": 8765, - "ip": "23.82.8.202", + "ips": [ + "23.82.8.202" + ], "tcp": true, "udp": true }, @@ -72022,7 +80698,9 @@ "region": "United States", "hostname": "us8766.nordvpn.com", "number": 8766, - "ip": "23.105.177.142", + "ips": [ + "23.105.177.142" + ], "tcp": true, "udp": true }, @@ -72030,7 +80708,9 @@ "region": "United States", "hostname": "us8767.nordvpn.com", "number": 8767, - "ip": "23.105.174.3", + "ips": [ + "23.105.174.3" + ], "tcp": true, "udp": true }, @@ -72038,7 +80718,9 @@ "region": "United States", "hostname": "us8768.nordvpn.com", "number": 8768, - "ip": "23.105.173.149", + "ips": [ + "23.105.173.149" + ], "tcp": true, "udp": true }, @@ -72046,7 +80728,9 @@ "region": "United States", "hostname": "us8769.nordvpn.com", "number": 8769, - "ip": "207.244.78.68", + "ips": [ + "207.244.78.68" + ], "tcp": true, "udp": true }, @@ -72054,7 +80738,9 @@ "region": "United States", "hostname": "us8770.nordvpn.com", "number": 8770, - "ip": "207.244.124.229", + "ips": [ + "207.244.124.229" + ], "tcp": true, "udp": true }, @@ -72062,7 +80748,9 @@ "region": "United States", "hostname": "us8771.nordvpn.com", "number": 8771, - "ip": "192.96.202.10", + "ips": [ + "192.96.202.10" + ], "tcp": true, "udp": true }, @@ -72070,7 +80758,9 @@ "region": "United States", "hostname": "us8772.nordvpn.com", "number": 8772, - "ip": "192.96.202.11", + "ips": [ + "192.96.202.11" + ], "tcp": true, "udp": true }, @@ -72078,7 +80768,9 @@ "region": "United States", "hostname": "us8773.nordvpn.com", "number": 8773, - "ip": "207.244.78.67", + "ips": [ + "207.244.78.67" + ], "tcp": true, "udp": true }, @@ -72086,7 +80778,9 @@ "region": "United States", "hostname": "us8775.nordvpn.com", "number": 8775, - "ip": "23.105.173.193", + "ips": [ + "23.105.173.193" + ], "tcp": true, "udp": true }, @@ -72094,7 +80788,9 @@ "region": "United States", "hostname": "us8776.nordvpn.com", "number": 8776, - "ip": "207.244.71.199", + "ips": [ + "207.244.71.199" + ], "tcp": true, "udp": true }, @@ -72102,7 +80798,9 @@ "region": "United States", "hostname": "us8777.nordvpn.com", "number": 8777, - "ip": "23.82.8.238", + "ips": [ + "23.82.8.238" + ], "tcp": true, "udp": true }, @@ -72110,7 +80808,9 @@ "region": "United States", "hostname": "us8778.nordvpn.com", "number": 8778, - "ip": "207.244.85.2", + "ips": [ + "207.244.85.2" + ], "tcp": true, "udp": true }, @@ -72118,7 +80818,9 @@ "region": "United States", "hostname": "us8779.nordvpn.com", "number": 8779, - "ip": "23.105.173.196", + "ips": [ + "23.105.173.196" + ], "tcp": true, "udp": true }, @@ -72126,7 +80828,9 @@ "region": "United States", "hostname": "us8780.nordvpn.com", "number": 8780, - "ip": "143.244.61.65", + "ips": [ + "143.244.61.65" + ], "tcp": true, "udp": true }, @@ -72134,7 +80838,9 @@ "region": "United States", "hostname": "us8781.nordvpn.com", "number": 8781, - "ip": "143.244.61.67", + "ips": [ + "143.244.61.67" + ], "tcp": true, "udp": true }, @@ -72142,7 +80848,9 @@ "region": "United States", "hostname": "us8782.nordvpn.com", "number": 8782, - "ip": "143.244.61.249", + "ips": [ + "143.244.61.249" + ], "tcp": true, "udp": true }, @@ -72150,7 +80858,9 @@ "region": "United States", "hostname": "us8783.nordvpn.com", "number": 8783, - "ip": "143.244.61.70", + "ips": [ + "143.244.61.70" + ], "tcp": true, "udp": true }, @@ -72158,7 +80868,9 @@ "region": "United States", "hostname": "us8784.nordvpn.com", "number": 8784, - "ip": "143.244.61.71", + "ips": [ + "143.244.61.71" + ], "tcp": true, "udp": true }, @@ -72166,7 +80878,9 @@ "region": "United States", "hostname": "us8785.nordvpn.com", "number": 8785, - "ip": "143.244.61.73", + "ips": [ + "143.244.61.73" + ], "tcp": true, "udp": true }, @@ -72174,7 +80888,9 @@ "region": "United States", "hostname": "us8786.nordvpn.com", "number": 8786, - "ip": "138.199.50.2", + "ips": [ + "138.199.50.2" + ], "tcp": true, "udp": true }, @@ -72182,7 +80898,9 @@ "region": "United States", "hostname": "us8787.nordvpn.com", "number": 8787, - "ip": "138.199.50.7", + "ips": [ + "138.199.50.7" + ], "tcp": true, "udp": true }, @@ -72190,7 +80908,9 @@ "region": "United States", "hostname": "us8788.nordvpn.com", "number": 8788, - "ip": "138.199.50.12", + "ips": [ + "138.199.50.12" + ], "tcp": true, "udp": true }, @@ -72198,7 +80918,9 @@ "region": "United States", "hostname": "us8789.nordvpn.com", "number": 8789, - "ip": "138.199.50.17", + "ips": [ + "138.199.50.17" + ], "tcp": true, "udp": true }, @@ -72206,7 +80928,9 @@ "region": "United States", "hostname": "us8790.nordvpn.com", "number": 8790, - "ip": "138.199.50.22", + "ips": [ + "138.199.50.22" + ], "tcp": true, "udp": true }, @@ -72214,7 +80938,9 @@ "region": "United States", "hostname": "us8791.nordvpn.com", "number": 8791, - "ip": "37.19.196.54", + "ips": [ + "37.19.196.54" + ], "tcp": true, "udp": true }, @@ -72222,7 +80948,9 @@ "region": "United States", "hostname": "us8792.nordvpn.com", "number": 8792, - "ip": "138.199.42.226", + "ips": [ + "138.199.42.226" + ], "tcp": true, "udp": true }, @@ -72230,7 +80958,9 @@ "region": "United States", "hostname": "us8793.nordvpn.com", "number": 8793, - "ip": "138.199.42.231", + "ips": [ + "138.199.42.231" + ], "tcp": true, "udp": true }, @@ -72238,7 +80968,9 @@ "region": "United States", "hostname": "us8794.nordvpn.com", "number": 8794, - "ip": "138.199.42.236", + "ips": [ + "138.199.42.236" + ], "tcp": true, "udp": true }, @@ -72246,7 +80978,9 @@ "region": "United States", "hostname": "us8795.nordvpn.com", "number": 8795, - "ip": "138.199.42.241", + "ips": [ + "138.199.42.241" + ], "tcp": true, "udp": true }, @@ -72254,7 +80988,9 @@ "region": "United States", "hostname": "us8796.nordvpn.com", "number": 8796, - "ip": "138.199.42.246", + "ips": [ + "138.199.42.246" + ], "tcp": true, "udp": true }, @@ -72262,7 +80998,9 @@ "region": "United States", "hostname": "us8797.nordvpn.com", "number": 8797, - "ip": "138.199.42.251", + "ips": [ + "138.199.42.251" + ], "tcp": true, "udp": true }, @@ -72270,7 +81008,9 @@ "region": "United States", "hostname": "us8798.nordvpn.com", "number": 8798, - "ip": "143.244.61.80", + "ips": [ + "143.244.61.80" + ], "tcp": true, "udp": true }, @@ -72278,7 +81018,9 @@ "region": "United States", "hostname": "us8799.nordvpn.com", "number": 8799, - "ip": "23.105.173.195", + "ips": [ + "23.105.173.195" + ], "tcp": true, "udp": true }, @@ -72286,7 +81028,9 @@ "region": "United States", "hostname": "us8802.nordvpn.com", "number": 8802, - "ip": "23.81.207.43", + "ips": [ + "23.81.207.43" + ], "tcp": true, "udp": true }, @@ -72294,7 +81038,9 @@ "region": "United States", "hostname": "us8803.nordvpn.com", "number": 8803, - "ip": "23.81.207.69", + "ips": [ + "23.81.207.69" + ], "tcp": true, "udp": true }, @@ -72302,7 +81048,9 @@ "region": "United States", "hostname": "us8804.nordvpn.com", "number": 8804, - "ip": "23.81.207.31", + "ips": [ + "23.81.207.31" + ], "tcp": true, "udp": true }, @@ -72310,7 +81058,9 @@ "region": "United States", "hostname": "us8805.nordvpn.com", "number": 8805, - "ip": "23.81.207.27", + "ips": [ + "23.81.207.27" + ], "tcp": true, "udp": true }, @@ -72318,7 +81068,9 @@ "region": "United States", "hostname": "us8806.nordvpn.com", "number": 8806, - "ip": "23.81.207.73", + "ips": [ + "23.81.207.73" + ], "tcp": true, "udp": true }, @@ -72326,7 +81078,9 @@ "region": "United States", "hostname": "us8807.nordvpn.com", "number": 8807, - "ip": "23.81.207.35", + "ips": [ + "23.81.207.35" + ], "tcp": true, "udp": true }, @@ -72334,7 +81088,9 @@ "region": "United States", "hostname": "us8808.nordvpn.com", "number": 8808, - "ip": "23.81.207.39", + "ips": [ + "23.81.207.39" + ], "tcp": true, "udp": true }, @@ -72342,7 +81098,9 @@ "region": "United States", "hostname": "us8809.nordvpn.com", "number": 8809, - "ip": "23.81.207.65", + "ips": [ + "23.81.207.65" + ], "tcp": true, "udp": true }, @@ -72350,7 +81108,9 @@ "region": "United States", "hostname": "us8810.nordvpn.com", "number": 8810, - "ip": "23.81.207.51", + "ips": [ + "23.81.207.51" + ], "tcp": true, "udp": true }, @@ -72358,7 +81118,9 @@ "region": "United States", "hostname": "us8811.nordvpn.com", "number": 8811, - "ip": "23.81.207.55", + "ips": [ + "23.81.207.55" + ], "tcp": true, "udp": true }, @@ -72366,7 +81128,9 @@ "region": "United States", "hostname": "us8812.nordvpn.com", "number": 8812, - "ip": "23.81.207.23", + "ips": [ + "23.81.207.23" + ], "tcp": true, "udp": true }, @@ -72374,7 +81138,9 @@ "region": "United States", "hostname": "us8813.nordvpn.com", "number": 8813, - "ip": "23.81.207.15", + "ips": [ + "23.81.207.15" + ], "tcp": true, "udp": true }, @@ -72382,7 +81148,9 @@ "region": "United States", "hostname": "us8814.nordvpn.com", "number": 8814, - "ip": "23.81.207.47", + "ips": [ + "23.81.207.47" + ], "tcp": true, "udp": true }, @@ -72390,7 +81158,9 @@ "region": "United States", "hostname": "us8815.nordvpn.com", "number": 8815, - "ip": "23.81.207.19", + "ips": [ + "23.81.207.19" + ], "tcp": true, "udp": true }, @@ -72398,7 +81168,9 @@ "region": "United States", "hostname": "us8816.nordvpn.com", "number": 8816, - "ip": "23.81.207.91", + "ips": [ + "23.81.207.91" + ], "tcp": true, "udp": true }, @@ -72406,7 +81178,9 @@ "region": "United States", "hostname": "us8817.nordvpn.com", "number": 8817, - "ip": "23.81.207.87", + "ips": [ + "23.81.207.87" + ], "tcp": true, "udp": true }, @@ -72414,7 +81188,9 @@ "region": "United States", "hostname": "us8818.nordvpn.com", "number": 8818, - "ip": "23.81.207.103", + "ips": [ + "23.81.207.103" + ], "tcp": true, "udp": true }, @@ -72422,7 +81198,9 @@ "region": "United States", "hostname": "us8819.nordvpn.com", "number": 8819, - "ip": "23.81.207.95", + "ips": [ + "23.81.207.95" + ], "tcp": true, "udp": true }, @@ -72430,7 +81208,9 @@ "region": "United States", "hostname": "us8820.nordvpn.com", "number": 8820, - "ip": "23.81.207.83", + "ips": [ + "23.81.207.83" + ], "tcp": true, "udp": true }, @@ -72438,7 +81218,9 @@ "region": "United States", "hostname": "us8821.nordvpn.com", "number": 8821, - "ip": "23.81.207.99", + "ips": [ + "23.81.207.99" + ], "tcp": true, "udp": true }, @@ -72446,7 +81228,9 @@ "region": "United States", "hostname": "us8822.nordvpn.com", "number": 8822, - "ip": "23.81.176.151", + "ips": [ + "23.81.176.151" + ], "tcp": true, "udp": true }, @@ -72454,7 +81238,9 @@ "region": "United States", "hostname": "us8823.nordvpn.com", "number": 8823, - "ip": "23.81.176.167", + "ips": [ + "23.81.176.167" + ], "tcp": true, "udp": true }, @@ -72462,7 +81248,9 @@ "region": "United States", "hostname": "us8824.nordvpn.com", "number": 8824, - "ip": "23.81.176.147", + "ips": [ + "23.81.176.147" + ], "tcp": true, "udp": true }, @@ -72470,7 +81258,9 @@ "region": "United States", "hostname": "us8825.nordvpn.com", "number": 8825, - "ip": "23.81.176.155", + "ips": [ + "23.81.176.155" + ], "tcp": true, "udp": true }, @@ -72478,7 +81268,9 @@ "region": "United States", "hostname": "us8826.nordvpn.com", "number": 8826, - "ip": "23.81.176.159", + "ips": [ + "23.81.176.159" + ], "tcp": true, "udp": true }, @@ -72486,7 +81278,9 @@ "region": "United States", "hostname": "us8827.nordvpn.com", "number": 8827, - "ip": "23.81.176.163", + "ips": [ + "23.81.176.163" + ], "tcp": true, "udp": true }, @@ -72494,7 +81288,9 @@ "region": "United States", "hostname": "us8828.nordvpn.com", "number": 8828, - "ip": "23.81.113.193", + "ips": [ + "23.81.113.193" + ], "tcp": true, "udp": true }, @@ -72502,7 +81298,9 @@ "region": "United States", "hostname": "us8829.nordvpn.com", "number": 8829, - "ip": "23.81.176.171", + "ips": [ + "23.81.176.171" + ], "tcp": true, "udp": true }, @@ -72510,7 +81308,9 @@ "region": "United States", "hostname": "us8830.nordvpn.com", "number": 8830, - "ip": "23.81.176.183", + "ips": [ + "23.81.176.183" + ], "tcp": true, "udp": true }, @@ -72518,7 +81318,9 @@ "region": "United States", "hostname": "us8831.nordvpn.com", "number": 8831, - "ip": "23.81.176.175", + "ips": [ + "23.81.176.175" + ], "tcp": true, "udp": true }, @@ -72526,7 +81328,9 @@ "region": "United States", "hostname": "us8832.nordvpn.com", "number": 8832, - "ip": "23.81.176.179", + "ips": [ + "23.81.176.179" + ], "tcp": true, "udp": true }, @@ -72534,7 +81338,9 @@ "region": "United States", "hostname": "us8833.nordvpn.com", "number": 8833, - "ip": "23.81.176.214", + "ips": [ + "23.81.176.214" + ], "tcp": true, "udp": true }, @@ -72542,7 +81348,9 @@ "region": "United States", "hostname": "us8834.nordvpn.com", "number": 8834, - "ip": "23.81.176.218", + "ips": [ + "23.81.176.218" + ], "tcp": true, "udp": true }, @@ -72550,7 +81358,9 @@ "region": "United States", "hostname": "us8835.nordvpn.com", "number": 8835, - "ip": "23.81.176.226", + "ips": [ + "23.81.176.226" + ], "tcp": true, "udp": true }, @@ -72558,7 +81368,9 @@ "region": "United States", "hostname": "us8836.nordvpn.com", "number": 8836, - "ip": "23.81.176.222", + "ips": [ + "23.81.176.222" + ], "tcp": true, "udp": true }, @@ -72566,7 +81378,9 @@ "region": "United States", "hostname": "us8837.nordvpn.com", "number": 8837, - "ip": "23.81.176.230", + "ips": [ + "23.81.176.230" + ], "tcp": true, "udp": true }, @@ -72574,7 +81388,9 @@ "region": "United States", "hostname": "us8838.nordvpn.com", "number": 8838, - "ip": "23.81.113.200", + "ips": [ + "23.81.113.200" + ], "tcp": true, "udp": true }, @@ -72582,7 +81398,9 @@ "region": "United States", "hostname": "us8839.nordvpn.com", "number": 8839, - "ip": "23.81.113.204", + "ips": [ + "23.81.113.204" + ], "tcp": true, "udp": true }, @@ -72590,7 +81408,9 @@ "region": "United States", "hostname": "us8840.nordvpn.com", "number": 8840, - "ip": "23.81.113.208", + "ips": [ + "23.81.113.208" + ], "tcp": true, "udp": true }, @@ -72598,7 +81418,9 @@ "region": "United States", "hostname": "us8841.nordvpn.com", "number": 8841, - "ip": "23.81.176.234", + "ips": [ + "23.81.176.234" + ], "tcp": true, "udp": true }, @@ -72606,7 +81428,9 @@ "region": "United States", "hostname": "us8842.nordvpn.com", "number": 8842, - "ip": "23.81.114.229", + "ips": [ + "23.81.114.229" + ], "tcp": true, "udp": true }, @@ -72614,7 +81438,9 @@ "region": "United States", "hostname": "us8843.nordvpn.com", "number": 8843, - "ip": "23.81.114.225", + "ips": [ + "23.81.114.225" + ], "tcp": true, "udp": true }, @@ -72622,7 +81448,9 @@ "region": "United States", "hostname": "us8844.nordvpn.com", "number": 8844, - "ip": "23.81.176.195", + "ips": [ + "23.81.176.195" + ], "tcp": true, "udp": true }, @@ -72630,7 +81458,9 @@ "region": "United States", "hostname": "us8845.nordvpn.com", "number": 8845, - "ip": "23.81.114.193", + "ips": [ + "23.81.114.193" + ], "tcp": true, "udp": true }, @@ -72638,7 +81468,9 @@ "region": "United States", "hostname": "us8846.nordvpn.com", "number": 8846, - "ip": "23.81.114.237", + "ips": [ + "23.81.114.237" + ], "tcp": true, "udp": true }, @@ -72646,7 +81478,9 @@ "region": "United States", "hostname": "us8847.nordvpn.com", "number": 8847, - "ip": "23.81.114.205", + "ips": [ + "23.81.114.205" + ], "tcp": true, "udp": true }, @@ -72654,7 +81488,9 @@ "region": "United States", "hostname": "us8848.nordvpn.com", "number": 8848, - "ip": "23.81.114.217", + "ips": [ + "23.81.114.217" + ], "tcp": true, "udp": true }, @@ -72662,7 +81498,9 @@ "region": "United States", "hostname": "us8849.nordvpn.com", "number": 8849, - "ip": "23.81.114.197", + "ips": [ + "23.81.114.197" + ], "tcp": true, "udp": true }, @@ -72670,7 +81508,9 @@ "region": "United States", "hostname": "us8850.nordvpn.com", "number": 8850, - "ip": "23.81.114.209", + "ips": [ + "23.81.114.209" + ], "tcp": true, "udp": true }, @@ -72678,7 +81518,9 @@ "region": "United States", "hostname": "us8851.nordvpn.com", "number": 8851, - "ip": "23.81.114.213", + "ips": [ + "23.81.114.213" + ], "tcp": true, "udp": true }, @@ -72686,7 +81528,9 @@ "region": "United States", "hostname": "us8852.nordvpn.com", "number": 8852, - "ip": "23.81.114.233", + "ips": [ + "23.81.114.233" + ], "tcp": true, "udp": true }, @@ -72694,7 +81538,9 @@ "region": "United States", "hostname": "us8853.nordvpn.com", "number": 8853, - "ip": "23.81.114.221", + "ips": [ + "23.81.114.221" + ], "tcp": true, "udp": true }, @@ -72702,7 +81548,9 @@ "region": "United States", "hostname": "us8854.nordvpn.com", "number": 8854, - "ip": "23.81.114.201", + "ips": [ + "23.81.114.201" + ], "tcp": true, "udp": true }, @@ -72710,7 +81558,9 @@ "region": "United States", "hostname": "us8855.nordvpn.com", "number": 8855, - "ip": "23.81.114.241", + "ips": [ + "23.81.114.241" + ], "tcp": true, "udp": true }, @@ -72718,7 +81568,9 @@ "region": "United States", "hostname": "us8856.nordvpn.com", "number": 8856, - "ip": "23.81.113.220", + "ips": [ + "23.81.113.220" + ], "tcp": true, "udp": true }, @@ -72726,7 +81578,9 @@ "region": "United States", "hostname": "us8857.nordvpn.com", "number": 8857, - "ip": "23.81.113.216", + "ips": [ + "23.81.113.216" + ], "tcp": true, "udp": true }, @@ -72734,7 +81588,9 @@ "region": "United States", "hostname": "us8858.nordvpn.com", "number": 8858, - "ip": "23.81.112.210", + "ips": [ + "23.81.112.210" + ], "tcp": true, "udp": true }, @@ -72742,7 +81598,9 @@ "region": "United States", "hostname": "us8859.nordvpn.com", "number": 8859, - "ip": "23.81.176.100", + "ips": [ + "23.81.176.100" + ], "tcp": true, "udp": true }, @@ -72750,7 +81608,9 @@ "region": "United States", "hostname": "us8860.nordvpn.com", "number": 8860, - "ip": "23.81.176.104", + "ips": [ + "23.81.176.104" + ], "tcp": true, "udp": true }, @@ -72758,7 +81618,9 @@ "region": "United States", "hostname": "us8861.nordvpn.com", "number": 8861, - "ip": "23.81.176.96", + "ips": [ + "23.81.176.96" + ], "tcp": true, "udp": true }, @@ -72766,7 +81628,9 @@ "region": "United States", "hostname": "us8862.nordvpn.com", "number": 8862, - "ip": "23.81.176.108", + "ips": [ + "23.81.176.108" + ], "tcp": true, "udp": true }, @@ -72774,7 +81638,9 @@ "region": "United States", "hostname": "us8863.nordvpn.com", "number": 8863, - "ip": "23.81.112.226", + "ips": [ + "23.81.112.226" + ], "tcp": true, "udp": true }, @@ -72782,7 +81648,9 @@ "region": "United States", "hostname": "us8864.nordvpn.com", "number": 8864, - "ip": "23.81.112.214", + "ips": [ + "23.81.112.214" + ], "tcp": true, "udp": true }, @@ -72790,7 +81658,9 @@ "region": "United States", "hostname": "us8865.nordvpn.com", "number": 8865, - "ip": "23.81.112.238", + "ips": [ + "23.81.112.238" + ], "tcp": true, "udp": true }, @@ -72798,7 +81668,9 @@ "region": "United States", "hostname": "us8866.nordvpn.com", "number": 8866, - "ip": "23.81.112.202", + "ips": [ + "23.81.112.202" + ], "tcp": true, "udp": true }, @@ -72806,7 +81678,9 @@ "region": "United States", "hostname": "us8867.nordvpn.com", "number": 8867, - "ip": "23.81.176.112", + "ips": [ + "23.81.176.112" + ], "tcp": true, "udp": true }, @@ -72814,7 +81688,9 @@ "region": "United States", "hostname": "us8868.nordvpn.com", "number": 8868, - "ip": "23.81.112.194", + "ips": [ + "23.81.112.194" + ], "tcp": true, "udp": true }, @@ -72822,7 +81698,9 @@ "region": "United States", "hostname": "us8869.nordvpn.com", "number": 8869, - "ip": "23.81.176.92", + "ips": [ + "23.81.176.92" + ], "tcp": true, "udp": true }, @@ -72830,7 +81708,9 @@ "region": "United States", "hostname": "us8870.nordvpn.com", "number": 8870, - "ip": "23.81.112.193", + "ips": [ + "23.81.112.193" + ], "tcp": true, "udp": true }, @@ -72838,7 +81718,9 @@ "region": "United States", "hostname": "us8871.nordvpn.com", "number": 8871, - "ip": "23.81.176.116", + "ips": [ + "23.81.176.116" + ], "tcp": true, "udp": true }, @@ -72846,7 +81728,9 @@ "region": "United States", "hostname": "us8872.nordvpn.com", "number": 8872, - "ip": "23.81.112.206", + "ips": [ + "23.81.112.206" + ], "tcp": true, "udp": true }, @@ -72854,7 +81738,9 @@ "region": "United States", "hostname": "us8873.nordvpn.com", "number": 8873, - "ip": "23.81.112.198", + "ips": [ + "23.81.112.198" + ], "tcp": true, "udp": true }, @@ -72862,7 +81748,9 @@ "region": "United States", "hostname": "us8874.nordvpn.com", "number": 8874, - "ip": "23.81.112.218", + "ips": [ + "23.81.112.218" + ], "tcp": true, "udp": true }, @@ -72870,7 +81758,9 @@ "region": "United States", "hostname": "us8875.nordvpn.com", "number": 8875, - "ip": "23.81.113.224", + "ips": [ + "23.81.113.224" + ], "tcp": true, "udp": true }, @@ -72878,7 +81768,9 @@ "region": "United States", "hostname": "us8876.nordvpn.com", "number": 8876, - "ip": "23.81.114.249", + "ips": [ + "23.81.114.249" + ], "tcp": true, "udp": true }, @@ -72886,7 +81778,9 @@ "region": "United States", "hostname": "us8877.nordvpn.com", "number": 8877, - "ip": "23.81.114.245", + "ips": [ + "23.81.114.245" + ], "tcp": true, "udp": true }, @@ -72894,7 +81788,9 @@ "region": "United States", "hostname": "us8878.nordvpn.com", "number": 8878, - "ip": "23.81.112.222", + "ips": [ + "23.81.112.222" + ], "tcp": true, "udp": true }, @@ -72902,7 +81798,9 @@ "region": "United States", "hostname": "us8879.nordvpn.com", "number": 8879, - "ip": "23.81.112.234", + "ips": [ + "23.81.112.234" + ], "tcp": true, "udp": true }, @@ -72910,7 +81808,9 @@ "region": "United States", "hostname": "us8880.nordvpn.com", "number": 8880, - "ip": "23.81.112.230", + "ips": [ + "23.81.112.230" + ], "tcp": true, "udp": true }, @@ -72918,7 +81818,9 @@ "region": "United States", "hostname": "us8881.nordvpn.com", "number": 8881, - "ip": "23.81.113.228", + "ips": [ + "23.81.113.228" + ], "tcp": true, "udp": true }, @@ -72926,7 +81828,9 @@ "region": "United States", "hostname": "us8882.nordvpn.com", "number": 8882, - "ip": "23.82.138.28", + "ips": [ + "23.82.138.28" + ], "tcp": true, "udp": true }, @@ -72934,7 +81838,9 @@ "region": "United States", "hostname": "us8883.nordvpn.com", "number": 8883, - "ip": "23.108.54.84", + "ips": [ + "23.108.54.84" + ], "tcp": true, "udp": true }, @@ -72942,7 +81848,9 @@ "region": "United States", "hostname": "us8884.nordvpn.com", "number": 8884, - "ip": "23.108.54.99", + "ips": [ + "23.108.54.99" + ], "tcp": true, "udp": true }, @@ -72950,7 +81858,9 @@ "region": "United States", "hostname": "us8885.nordvpn.com", "number": 8885, - "ip": "23.82.138.23", + "ips": [ + "23.82.138.23" + ], "tcp": true, "udp": true }, @@ -72958,7 +81868,9 @@ "region": "United States", "hostname": "us8886.nordvpn.com", "number": 8886, - "ip": "23.82.142.210", + "ips": [ + "23.82.142.210" + ], "tcp": true, "udp": true }, @@ -72966,7 +81878,9 @@ "region": "United States", "hostname": "us8887.nordvpn.com", "number": 8887, - "ip": "23.82.142.145", + "ips": [ + "23.82.142.145" + ], "tcp": true, "udp": true }, @@ -72974,7 +81888,9 @@ "region": "United States", "hostname": "us8888.nordvpn.com", "number": 8888, - "ip": "23.82.142.160", + "ips": [ + "23.82.142.160" + ], "tcp": true, "udp": true }, @@ -72982,7 +81898,9 @@ "region": "United States", "hostname": "us8889.nordvpn.com", "number": 8889, - "ip": "23.82.142.164", + "ips": [ + "23.82.142.164" + ], "tcp": true, "udp": true }, @@ -72990,7 +81908,9 @@ "region": "United States", "hostname": "us8890.nordvpn.com", "number": 8890, - "ip": "23.82.142.214", + "ips": [ + "23.82.142.214" + ], "tcp": true, "udp": true }, @@ -72998,7 +81918,9 @@ "region": "United States", "hostname": "us8891.nordvpn.com", "number": 8891, - "ip": "23.82.142.206", + "ips": [ + "23.82.142.206" + ], "tcp": true, "udp": true }, @@ -73006,7 +81928,9 @@ "region": "United States", "hostname": "us8892.nordvpn.com", "number": 8892, - "ip": "23.82.142.197", + "ips": [ + "23.82.142.197" + ], "tcp": true, "udp": true }, @@ -73014,7 +81938,9 @@ "region": "United States", "hostname": "us8893.nordvpn.com", "number": 8893, - "ip": "23.82.138.95", + "ips": [ + "23.82.138.95" + ], "tcp": true, "udp": true }, @@ -73022,7 +81948,9 @@ "region": "United States", "hostname": "us8894.nordvpn.com", "number": 8894, - "ip": "23.108.54.86", + "ips": [ + "23.108.54.86" + ], "tcp": true, "udp": true }, @@ -73030,7 +81958,9 @@ "region": "United States", "hostname": "us8895.nordvpn.com", "number": 8895, - "ip": "23.82.142.193", + "ips": [ + "23.82.142.193" + ], "tcp": true, "udp": true }, @@ -73038,7 +81968,9 @@ "region": "United States", "hostname": "us8896.nordvpn.com", "number": 8896, - "ip": "23.82.138.1", + "ips": [ + "23.82.138.1" + ], "tcp": true, "udp": true }, @@ -73046,7 +81978,9 @@ "region": "United States", "hostname": "us8897.nordvpn.com", "number": 8897, - "ip": "23.82.142.201", + "ips": [ + "23.82.142.201" + ], "tcp": true, "udp": true }, @@ -73054,7 +81988,9 @@ "region": "United States", "hostname": "us8898.nordvpn.com", "number": 8898, - "ip": "23.82.142.156", + "ips": [ + "23.82.142.156" + ], "tcp": true, "udp": true }, @@ -73062,7 +81998,9 @@ "region": "United States", "hostname": "us8899.nordvpn.com", "number": 8899, - "ip": "23.82.138.100", + "ips": [ + "23.82.138.100" + ], "tcp": true, "udp": true }, @@ -73070,7 +82008,9 @@ "region": "United States", "hostname": "us8900.nordvpn.com", "number": 8900, - "ip": "23.82.138.18", + "ips": [ + "23.82.138.18" + ], "tcp": true, "udp": true }, @@ -73078,7 +82018,9 @@ "region": "United States", "hostname": "us8901.nordvpn.com", "number": 8901, - "ip": "23.82.138.14", + "ips": [ + "23.82.138.14" + ], "tcp": true, "udp": true }, @@ -73086,7 +82028,9 @@ "region": "United States", "hostname": "us8902.nordvpn.com", "number": 8902, - "ip": "23.82.142.149", + "ips": [ + "23.82.142.149" + ], "tcp": true, "udp": true }, @@ -73094,7 +82038,9 @@ "region": "United States", "hostname": "us8903.nordvpn.com", "number": 8903, - "ip": "23.82.142.137", + "ips": [ + "23.82.142.137" + ], "tcp": true, "udp": true }, @@ -73102,7 +82048,9 @@ "region": "United States", "hostname": "us8904.nordvpn.com", "number": 8904, - "ip": "23.82.142.141", + "ips": [ + "23.82.142.141" + ], "tcp": true, "udp": true }, @@ -73110,7 +82058,9 @@ "region": "United States", "hostname": "us8905.nordvpn.com", "number": 8905, - "ip": "23.82.137.195", + "ips": [ + "23.82.137.195" + ], "tcp": true, "udp": true }, @@ -73118,7 +82068,9 @@ "region": "United States", "hostname": "us8906.nordvpn.com", "number": 8906, - "ip": "23.82.138.81", + "ips": [ + "23.82.138.81" + ], "tcp": true, "udp": true }, @@ -73126,7 +82078,9 @@ "region": "United States", "hostname": "us8907.nordvpn.com", "number": 8907, - "ip": "23.82.138.85", + "ips": [ + "23.82.138.85" + ], "tcp": true, "udp": true }, @@ -73134,7 +82088,9 @@ "region": "United States", "hostname": "us8908.nordvpn.com", "number": 8908, - "ip": "23.82.138.90", + "ips": [ + "23.82.138.90" + ], "tcp": true, "udp": true }, @@ -73142,7 +82098,9 @@ "region": "United States", "hostname": "us8909.nordvpn.com", "number": 8909, - "ip": "23.82.138.68", + "ips": [ + "23.82.138.68" + ], "tcp": true, "udp": true }, @@ -73150,7 +82108,9 @@ "region": "United States", "hostname": "us8910.nordvpn.com", "number": 8910, - "ip": "23.82.142.133", + "ips": [ + "23.82.142.133" + ], "tcp": true, "udp": true }, @@ -73158,7 +82118,9 @@ "region": "United States", "hostname": "us8911.nordvpn.com", "number": 8911, - "ip": "23.82.138.106", + "ips": [ + "23.82.138.106" + ], "tcp": true, "udp": true }, @@ -73166,7 +82128,9 @@ "region": "United States", "hostname": "us8912.nordvpn.com", "number": 8912, - "ip": "23.82.138.65", + "ips": [ + "23.82.138.65" + ], "tcp": true, "udp": true }, @@ -73174,7 +82138,9 @@ "region": "United States", "hostname": "us8913.nordvpn.com", "number": 8913, - "ip": "23.82.137.228", + "ips": [ + "23.82.137.228" + ], "tcp": true, "udp": true }, @@ -73182,7 +82148,9 @@ "region": "United States", "hostname": "us8914.nordvpn.com", "number": 8914, - "ip": "23.82.137.224", + "ips": [ + "23.82.137.224" + ], "tcp": true, "udp": true }, @@ -73190,7 +82158,9 @@ "region": "United States", "hostname": "us8915.nordvpn.com", "number": 8915, - "ip": "23.82.142.129", + "ips": [ + "23.82.142.129" + ], "tcp": true, "udp": true }, @@ -73198,7 +82168,9 @@ "region": "United States", "hostname": "us8916.nordvpn.com", "number": 8916, - "ip": "23.82.138.40", + "ips": [ + "23.82.138.40" + ], "tcp": true, "udp": true }, @@ -73206,7 +82178,9 @@ "region": "United States", "hostname": "us8917.nordvpn.com", "number": 8917, - "ip": "23.82.138.45", + "ips": [ + "23.82.138.45" + ], "tcp": true, "udp": true }, @@ -73214,7 +82188,9 @@ "region": "United States", "hostname": "us8918.nordvpn.com", "number": 8918, - "ip": "23.108.54.73", + "ips": [ + "23.108.54.73" + ], "tcp": true, "udp": true }, @@ -73222,7 +82198,9 @@ "region": "United States", "hostname": "us8919.nordvpn.com", "number": 8919, - "ip": "23.108.54.88", + "ips": [ + "23.108.54.88" + ], "tcp": true, "udp": true }, @@ -73230,7 +82208,9 @@ "region": "United States", "hostname": "us8920.nordvpn.com", "number": 8920, - "ip": "23.108.54.75", + "ips": [ + "23.108.54.75" + ], "tcp": true, "udp": true }, @@ -73238,7 +82218,9 @@ "region": "United States", "hostname": "us8921.nordvpn.com", "number": 8921, - "ip": "23.82.138.36", + "ips": [ + "23.82.138.36" + ], "tcp": true, "udp": true }, @@ -73246,7 +82228,9 @@ "region": "United States", "hostname": "us8922.nordvpn.com", "number": 8922, - "ip": "23.82.194.180", + "ips": [ + "23.82.194.180" + ], "tcp": true, "udp": true }, @@ -73254,7 +82238,9 @@ "region": "United States", "hostname": "us8923.nordvpn.com", "number": 8923, - "ip": "23.82.194.155", + "ips": [ + "23.82.194.155" + ], "tcp": true, "udp": true }, @@ -73262,7 +82248,9 @@ "region": "United States", "hostname": "us8924.nordvpn.com", "number": 8924, - "ip": "23.82.194.96", + "ips": [ + "23.82.194.96" + ], "tcp": true, "udp": true }, @@ -73270,7 +82258,9 @@ "region": "United States", "hostname": "us8925.nordvpn.com", "number": 8925, - "ip": "23.82.194.86", + "ips": [ + "23.82.194.86" + ], "tcp": true, "udp": true }, @@ -73278,7 +82268,9 @@ "region": "United States", "hostname": "us8926.nordvpn.com", "number": 8926, - "ip": "23.82.194.145", + "ips": [ + "23.82.194.145" + ], "tcp": true, "udp": true }, @@ -73286,7 +82278,9 @@ "region": "United States", "hostname": "us8927.nordvpn.com", "number": 8927, - "ip": "23.82.193.116", + "ips": [ + "23.82.193.116" + ], "tcp": true, "udp": true }, @@ -73294,7 +82288,9 @@ "region": "United States", "hostname": "us8928.nordvpn.com", "number": 8928, - "ip": "23.82.194.101", + "ips": [ + "23.82.194.101" + ], "tcp": true, "udp": true }, @@ -73302,7 +82298,9 @@ "region": "United States", "hostname": "us8929.nordvpn.com", "number": 8929, - "ip": "23.82.194.111", + "ips": [ + "23.82.194.111" + ], "tcp": true, "udp": true }, @@ -73310,7 +82308,9 @@ "region": "United States", "hostname": "us8930.nordvpn.com", "number": 8930, - "ip": "23.82.194.91", + "ips": [ + "23.82.194.91" + ], "tcp": true, "udp": true }, @@ -73318,7 +82318,9 @@ "region": "United States", "hostname": "us8931.nordvpn.com", "number": 8931, - "ip": "23.82.194.106", + "ips": [ + "23.82.194.106" + ], "tcp": true, "udp": true }, @@ -73326,7 +82328,9 @@ "region": "United States", "hostname": "us8932.nordvpn.com", "number": 8932, - "ip": "23.82.194.130", + "ips": [ + "23.82.194.130" + ], "tcp": true, "udp": true }, @@ -73334,7 +82338,9 @@ "region": "United States", "hostname": "us8933.nordvpn.com", "number": 8933, - "ip": "23.82.194.76", + "ips": [ + "23.82.194.76" + ], "tcp": true, "udp": true }, @@ -73342,7 +82348,9 @@ "region": "United States", "hostname": "us8934.nordvpn.com", "number": 8934, - "ip": "23.82.194.160", + "ips": [ + "23.82.194.160" + ], "tcp": true, "udp": true }, @@ -73350,7 +82358,9 @@ "region": "United States", "hostname": "us8935.nordvpn.com", "number": 8935, - "ip": "23.82.194.71", + "ips": [ + "23.82.194.71" + ], "tcp": true, "udp": true }, @@ -73358,7 +82368,9 @@ "region": "United States", "hostname": "us8936.nordvpn.com", "number": 8936, - "ip": "23.82.194.150", + "ips": [ + "23.82.194.150" + ], "tcp": true, "udp": true }, @@ -73366,7 +82378,9 @@ "region": "United States", "hostname": "us8937.nordvpn.com", "number": 8937, - "ip": "23.82.194.165", + "ips": [ + "23.82.194.165" + ], "tcp": true, "udp": true }, @@ -73374,7 +82388,9 @@ "region": "United States", "hostname": "us8938.nordvpn.com", "number": 8938, - "ip": "23.82.194.66", + "ips": [ + "23.82.194.66" + ], "tcp": true, "udp": true }, @@ -73382,7 +82398,9 @@ "region": "United States", "hostname": "us8939.nordvpn.com", "number": 8939, - "ip": "23.82.194.170", + "ips": [ + "23.82.194.170" + ], "tcp": true, "udp": true }, @@ -73390,7 +82408,9 @@ "region": "United States", "hostname": "us8940.nordvpn.com", "number": 8940, - "ip": "23.82.194.81", + "ips": [ + "23.82.194.81" + ], "tcp": true, "udp": true }, @@ -73398,7 +82418,9 @@ "region": "United States", "hostname": "us8941.nordvpn.com", "number": 8941, - "ip": "23.82.194.140", + "ips": [ + "23.82.194.140" + ], "tcp": true, "udp": true }, @@ -73406,7 +82428,9 @@ "region": "United States", "hostname": "us8942.nordvpn.com", "number": 8942, - "ip": "23.82.194.135", + "ips": [ + "23.82.194.135" + ], "tcp": true, "udp": true }, @@ -73414,7 +82438,9 @@ "region": "United States", "hostname": "us8943.nordvpn.com", "number": 8943, - "ip": "23.82.194.175", + "ips": [ + "23.82.194.175" + ], "tcp": true, "udp": true }, @@ -73422,7 +82448,9 @@ "region": "United States", "hostname": "us8944.nordvpn.com", "number": 8944, - "ip": "23.82.193.130", + "ips": [ + "23.82.193.130" + ], "tcp": true, "udp": true }, @@ -73430,7 +82458,9 @@ "region": "United States", "hostname": "us8945.nordvpn.com", "number": 8945, - "ip": "23.82.193.175", + "ips": [ + "23.82.193.175" + ], "tcp": true, "udp": true }, @@ -73438,7 +82468,9 @@ "region": "United States", "hostname": "us8946.nordvpn.com", "number": 8946, - "ip": "23.82.193.86", + "ips": [ + "23.82.193.86" + ], "tcp": true, "udp": true }, @@ -73446,7 +82478,9 @@ "region": "United States", "hostname": "us8947.nordvpn.com", "number": 8947, - "ip": "23.82.193.91", + "ips": [ + "23.82.193.91" + ], "tcp": true, "udp": true }, @@ -73454,7 +82488,9 @@ "region": "United States", "hostname": "us8948.nordvpn.com", "number": 8948, - "ip": "23.82.193.76", + "ips": [ + "23.82.193.76" + ], "tcp": true, "udp": true }, @@ -73462,7 +82498,9 @@ "region": "United States", "hostname": "us8949.nordvpn.com", "number": 8949, - "ip": "23.82.193.145", + "ips": [ + "23.82.193.145" + ], "tcp": true, "udp": true }, @@ -73470,7 +82508,9 @@ "region": "United States", "hostname": "us8950.nordvpn.com", "number": 8950, - "ip": "23.82.193.150", + "ips": [ + "23.82.193.150" + ], "tcp": true, "udp": true }, @@ -73478,7 +82518,9 @@ "region": "United States", "hostname": "us8951.nordvpn.com", "number": 8951, - "ip": "23.82.193.106", + "ips": [ + "23.82.193.106" + ], "tcp": true, "udp": true }, @@ -73486,7 +82528,9 @@ "region": "United States", "hostname": "us8952.nordvpn.com", "number": 8952, - "ip": "23.82.193.160", + "ips": [ + "23.82.193.160" + ], "tcp": true, "udp": true }, @@ -73494,7 +82538,9 @@ "region": "United States", "hostname": "us8953.nordvpn.com", "number": 8953, - "ip": "23.82.193.101", + "ips": [ + "23.82.193.101" + ], "tcp": true, "udp": true }, @@ -73502,7 +82548,19 @@ "region": "United States", "hostname": "us8954.nordvpn.com", "number": 8954, - "ip": "23.82.193.155", + "ips": [ + "23.82.193.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us8955.nordvpn.com", + "number": 8955, + "ips": [ + "23.82.193.111" + ], "tcp": true, "udp": true }, @@ -73510,7 +82568,9 @@ "region": "United States", "hostname": "us8956.nordvpn.com", "number": 8956, - "ip": "23.82.193.71", + "ips": [ + "23.82.193.71" + ], "tcp": true, "udp": true }, @@ -73518,7 +82578,9 @@ "region": "United States", "hostname": "us8957.nordvpn.com", "number": 8957, - "ip": "23.82.193.66", + "ips": [ + "23.82.193.66" + ], "tcp": true, "udp": true }, @@ -73526,7 +82588,9 @@ "region": "United States", "hostname": "us8958.nordvpn.com", "number": 8958, - "ip": "23.82.193.135", + "ips": [ + "23.82.193.135" + ], "tcp": true, "udp": true }, @@ -73534,7 +82598,9 @@ "region": "United States", "hostname": "us8959.nordvpn.com", "number": 8959, - "ip": "23.82.193.140", + "ips": [ + "23.82.193.140" + ], "tcp": true, "udp": true }, @@ -73542,7 +82608,9 @@ "region": "United States", "hostname": "us8960.nordvpn.com", "number": 8960, - "ip": "23.82.193.96", + "ips": [ + "23.82.193.96" + ], "tcp": true, "udp": true }, @@ -73550,7 +82618,9 @@ "region": "United States", "hostname": "us8961.nordvpn.com", "number": 8961, - "ip": "23.82.193.81", + "ips": [ + "23.82.193.81" + ], "tcp": true, "udp": true }, @@ -73558,7 +82628,9 @@ "region": "United States", "hostname": "us8962.nordvpn.com", "number": 8962, - "ip": "209.58.147.97", + "ips": [ + "209.58.147.97" + ], "tcp": true, "udp": true }, @@ -73566,7 +82638,9 @@ "region": "United States", "hostname": "us8963.nordvpn.com", "number": 8963, - "ip": "172.241.224.85", + "ips": [ + "172.241.224.85" + ], "tcp": true, "udp": true }, @@ -73574,7 +82648,9 @@ "region": "United States", "hostname": "us8964.nordvpn.com", "number": 8964, - "ip": "209.58.159.107", + "ips": [ + "209.58.159.107" + ], "tcp": true, "udp": true }, @@ -73582,7 +82658,9 @@ "region": "United States", "hostname": "us8965.nordvpn.com", "number": 8965, - "ip": "209.58.159.113", + "ips": [ + "209.58.159.113" + ], "tcp": true, "udp": true }, @@ -73590,7 +82668,9 @@ "region": "United States", "hostname": "us8966.nordvpn.com", "number": 8966, - "ip": "209.58.146.184", + "ips": [ + "209.58.146.184" + ], "tcp": true, "udp": true }, @@ -73598,7 +82678,9 @@ "region": "United States", "hostname": "us8967.nordvpn.com", "number": 8967, - "ip": "209.58.159.97", + "ips": [ + "209.58.159.97" + ], "tcp": true, "udp": true }, @@ -73606,7 +82688,9 @@ "region": "United States", "hostname": "us8968.nordvpn.com", "number": 8968, - "ip": "209.58.146.169", + "ips": [ + "209.58.146.169" + ], "tcp": true, "udp": true }, @@ -73614,7 +82698,9 @@ "region": "United States", "hostname": "us8969.nordvpn.com", "number": 8969, - "ip": "209.58.159.102", + "ips": [ + "209.58.159.102" + ], "tcp": true, "udp": true }, @@ -73622,7 +82708,9 @@ "region": "United States", "hostname": "us8970.nordvpn.com", "number": 8970, - "ip": "209.58.146.155", + "ips": [ + "209.58.146.155" + ], "tcp": true, "udp": true }, @@ -73630,7 +82718,9 @@ "region": "United States", "hostname": "us8971.nordvpn.com", "number": 8971, - "ip": "209.58.146.162", + "ips": [ + "209.58.146.162" + ], "tcp": true, "udp": true }, @@ -73638,7 +82728,9 @@ "region": "United States", "hostname": "us8972.nordvpn.com", "number": 8972, - "ip": "209.58.159.90", + "ips": [ + "209.58.159.90" + ], "tcp": true, "udp": true }, @@ -73646,7 +82738,9 @@ "region": "United States", "hostname": "us8973.nordvpn.com", "number": 8973, - "ip": "209.58.159.118", + "ips": [ + "209.58.159.118" + ], "tcp": true, "udp": true }, @@ -73654,7 +82748,9 @@ "region": "United States", "hostname": "us8974.nordvpn.com", "number": 8974, - "ip": "172.241.224.58", + "ips": [ + "172.241.224.58" + ], "tcp": true, "udp": true }, @@ -73662,7 +82758,9 @@ "region": "United States", "hostname": "us8975.nordvpn.com", "number": 8975, - "ip": "209.58.146.129", + "ips": [ + "209.58.146.129" + ], "tcp": true, "udp": true }, @@ -73670,7 +82768,9 @@ "region": "United States", "hostname": "us8976.nordvpn.com", "number": 8976, - "ip": "172.241.224.2", + "ips": [ + "172.241.224.2" + ], "tcp": true, "udp": true }, @@ -73678,7 +82778,9 @@ "region": "United States", "hostname": "us8977.nordvpn.com", "number": 8977, - "ip": "172.241.224.6", + "ips": [ + "172.241.224.6" + ], "tcp": true, "udp": true }, @@ -73686,7 +82788,9 @@ "region": "United States", "hostname": "us8978.nordvpn.com", "number": 8978, - "ip": "172.241.224.67", + "ips": [ + "172.241.224.67" + ], "tcp": true, "udp": true }, @@ -73694,7 +82798,9 @@ "region": "United States", "hostname": "us8979.nordvpn.com", "number": 8979, - "ip": "172.241.224.1", + "ips": [ + "172.241.224.1" + ], "tcp": true, "udp": true }, @@ -73702,7 +82808,9 @@ "region": "United States", "hostname": "us8980.nordvpn.com", "number": 8980, - "ip": "172.241.224.36", + "ips": [ + "172.241.224.36" + ], "tcp": true, "udp": true }, @@ -73710,7 +82818,9 @@ "region": "United States", "hostname": "us8981.nordvpn.com", "number": 8981, - "ip": "172.241.224.70", + "ips": [ + "172.241.224.70" + ], "tcp": true, "udp": true }, @@ -73718,7 +82828,9 @@ "region": "United States", "hostname": "us8982.nordvpn.com", "number": 8982, - "ip": "172.241.224.25", + "ips": [ + "172.241.224.25" + ], "tcp": true, "udp": true }, @@ -73726,7 +82838,9 @@ "region": "United States", "hostname": "us8983.nordvpn.com", "number": 8983, - "ip": "172.241.224.129", + "ips": [ + "172.241.224.129" + ], "tcp": true, "udp": true }, @@ -73734,7 +82848,9 @@ "region": "United States", "hostname": "us8984.nordvpn.com", "number": 8984, - "ip": "172.241.224.14", + "ips": [ + "172.241.224.14" + ], "tcp": true, "udp": true }, @@ -73742,7 +82858,9 @@ "region": "United States", "hostname": "us8985.nordvpn.com", "number": 8985, - "ip": "172.241.224.137", + "ips": [ + "172.241.224.137" + ], "tcp": true, "udp": true }, @@ -73750,7 +82868,9 @@ "region": "United States", "hostname": "us8986.nordvpn.com", "number": 8986, - "ip": "172.241.224.133", + "ips": [ + "172.241.224.133" + ], "tcp": true, "udp": true }, @@ -73758,7 +82878,9 @@ "region": "United States", "hostname": "us8987.nordvpn.com", "number": 8987, - "ip": "209.58.147.110", + "ips": [ + "209.58.147.110" + ], "tcp": true, "udp": true }, @@ -73766,7 +82888,9 @@ "region": "United States", "hostname": "us8988.nordvpn.com", "number": 8988, - "ip": "172.241.224.21", + "ips": [ + "172.241.224.21" + ], "tcp": true, "udp": true }, @@ -73774,7 +82898,9 @@ "region": "United States", "hostname": "us8989.nordvpn.com", "number": 8989, - "ip": "172.241.224.53", + "ips": [ + "172.241.224.53" + ], "tcp": true, "udp": true }, @@ -73782,7 +82908,9 @@ "region": "United States", "hostname": "us8990.nordvpn.com", "number": 8990, - "ip": "209.58.147.79", + "ips": [ + "209.58.147.79" + ], "tcp": true, "udp": true }, @@ -73790,7 +82918,9 @@ "region": "United States", "hostname": "us8991.nordvpn.com", "number": 8991, - "ip": "209.58.146.147", + "ips": [ + "209.58.146.147" + ], "tcp": true, "udp": true }, @@ -73798,7 +82928,9 @@ "region": "United States", "hostname": "us8992.nordvpn.com", "number": 8992, - "ip": "209.58.146.130", + "ips": [ + "209.58.146.130" + ], "tcp": true, "udp": true }, @@ -73806,7 +82938,9 @@ "region": "United States", "hostname": "us8993.nordvpn.com", "number": 8993, - "ip": "209.58.147.66", + "ips": [ + "209.58.147.66" + ], "tcp": true, "udp": true }, @@ -73814,7 +82948,9 @@ "region": "United States", "hostname": "us8994.nordvpn.com", "number": 8994, - "ip": "209.58.146.135", + "ips": [ + "209.58.146.135" + ], "tcp": true, "udp": true }, @@ -73822,7 +82958,9 @@ "region": "United States", "hostname": "us8995.nordvpn.com", "number": 8995, - "ip": "209.58.146.139", + "ips": [ + "209.58.146.139" + ], "tcp": true, "udp": true }, @@ -73830,7 +82968,9 @@ "region": "United States", "hostname": "us8996.nordvpn.com", "number": 8996, - "ip": "209.58.146.171", + "ips": [ + "209.58.146.171" + ], "tcp": true, "udp": true }, @@ -73838,7 +82978,9 @@ "region": "United States", "hostname": "us8997.nordvpn.com", "number": 8997, - "ip": "209.58.146.175", + "ips": [ + "209.58.146.175" + ], "tcp": true, "udp": true }, @@ -73846,7 +82988,9 @@ "region": "United States", "hostname": "us8998.nordvpn.com", "number": 8998, - "ip": "209.58.146.143", + "ips": [ + "209.58.146.143" + ], "tcp": true, "udp": true }, @@ -73854,7 +82998,9 @@ "region": "United States", "hostname": "us8999.nordvpn.com", "number": 8999, - "ip": "209.58.147.88", + "ips": [ + "209.58.147.88" + ], "tcp": true, "udp": true }, @@ -73862,7 +83008,9 @@ "region": "United States", "hostname": "us9000.nordvpn.com", "number": 9000, - "ip": "209.58.146.151", + "ips": [ + "209.58.146.151" + ], "tcp": true, "udp": true }, @@ -73870,7 +83018,9 @@ "region": "United States", "hostname": "us9001.nordvpn.com", "number": 9001, - "ip": "209.58.147.101", + "ips": [ + "209.58.147.101" + ], "tcp": true, "udp": true }, @@ -73878,7 +83028,9 @@ "region": "United States", "hostname": "us9002.nordvpn.com", "number": 9002, - "ip": "209.58.146.156", + "ips": [ + "209.58.146.156" + ], "tcp": true, "udp": true }, @@ -73886,7 +83038,9 @@ "region": "United States", "hostname": "us9003.nordvpn.com", "number": 9003, - "ip": "172.241.224.141", + "ips": [ + "172.241.224.141" + ], "tcp": true, "udp": true }, @@ -73894,7 +83048,9 @@ "region": "United States", "hostname": "us9004.nordvpn.com", "number": 9004, - "ip": "209.58.147.105", + "ips": [ + "209.58.147.105" + ], "tcp": true, "udp": true }, @@ -73902,7 +83058,9 @@ "region": "United States", "hostname": "us9005.nordvpn.com", "number": 9005, - "ip": "209.58.147.83", + "ips": [ + "209.58.147.83" + ], "tcp": true, "udp": true }, @@ -73910,7 +83068,9 @@ "region": "United States", "hostname": "us9006.nordvpn.com", "number": 9006, - "ip": "209.58.146.179", + "ips": [ + "209.58.146.179" + ], "tcp": true, "udp": true }, @@ -73918,7 +83078,9 @@ "region": "United States", "hostname": "us9007.nordvpn.com", "number": 9007, - "ip": "172.241.224.33", + "ips": [ + "172.241.224.33" + ], "tcp": true, "udp": true }, @@ -73926,7 +83088,9 @@ "region": "United States", "hostname": "us9008.nordvpn.com", "number": 9008, - "ip": "172.241.224.29", + "ips": [ + "172.241.224.29" + ], "tcp": true, "udp": true }, @@ -73934,7 +83098,9 @@ "region": "United States", "hostname": "us9009.nordvpn.com", "number": 9009, - "ip": "172.241.224.45", + "ips": [ + "172.241.224.45" + ], "tcp": true, "udp": true }, @@ -73942,7 +83108,9 @@ "region": "United States", "hostname": "us9010.nordvpn.com", "number": 9010, - "ip": "172.241.224.41", + "ips": [ + "172.241.224.41" + ], "tcp": true, "udp": true }, @@ -73950,7 +83118,9 @@ "region": "United States", "hostname": "us9011.nordvpn.com", "number": 9011, - "ip": "172.241.224.49", + "ips": [ + "172.241.224.49" + ], "tcp": true, "udp": true }, @@ -73958,7 +83128,9 @@ "region": "United States", "hostname": "us9012.nordvpn.com", "number": 9012, - "ip": "45.14.195.100", + "ips": [ + "45.14.195.100" + ], "tcp": true, "udp": true }, @@ -73966,7 +83138,9 @@ "region": "United States", "hostname": "us9013.nordvpn.com", "number": 9013, - "ip": "45.14.195.102", + "ips": [ + "45.14.195.102" + ], "tcp": true, "udp": true }, @@ -73974,7 +83148,9 @@ "region": "United States", "hostname": "us9014.nordvpn.com", "number": 9014, - "ip": "45.14.195.104", + "ips": [ + "45.14.195.104" + ], "tcp": true, "udp": true }, @@ -73982,7 +83158,9 @@ "region": "United States", "hostname": "us9015.nordvpn.com", "number": 9015, - "ip": "45.14.195.106", + "ips": [ + "45.14.195.106" + ], "tcp": true, "udp": true }, @@ -73990,7 +83168,9 @@ "region": "United States", "hostname": "us9016.nordvpn.com", "number": 9016, - "ip": "45.14.195.108", + "ips": [ + "45.14.195.108" + ], "tcp": true, "udp": true }, @@ -73998,7 +83178,9 @@ "region": "United States", "hostname": "us9017.nordvpn.com", "number": 9017, - "ip": "45.14.195.110", + "ips": [ + "45.14.195.110" + ], "tcp": true, "udp": true }, @@ -74006,7 +83188,9 @@ "region": "United States", "hostname": "us9018.nordvpn.com", "number": 9018, - "ip": "45.14.195.112", + "ips": [ + "45.14.195.112" + ], "tcp": true, "udp": true }, @@ -74014,7 +83198,9 @@ "region": "United States", "hostname": "us9019.nordvpn.com", "number": 9019, - "ip": "45.14.195.114", + "ips": [ + "45.14.195.114" + ], "tcp": true, "udp": true }, @@ -74022,7 +83208,9 @@ "region": "United States", "hostname": "us9020.nordvpn.com", "number": 9020, - "ip": "45.14.195.116", + "ips": [ + "45.14.195.116" + ], "tcp": true, "udp": true }, @@ -74030,7 +83218,9 @@ "region": "United States", "hostname": "us9021.nordvpn.com", "number": 9021, - "ip": "45.14.195.118", + "ips": [ + "45.14.195.118" + ], "tcp": true, "udp": true }, @@ -74038,7 +83228,9 @@ "region": "United States", "hostname": "us9022.nordvpn.com", "number": 9022, - "ip": "45.14.195.120", + "ips": [ + "45.14.195.120" + ], "tcp": true, "udp": true }, @@ -74046,7 +83238,9 @@ "region": "United States", "hostname": "us9023.nordvpn.com", "number": 9023, - "ip": "45.14.195.122", + "ips": [ + "45.14.195.122" + ], "tcp": true, "udp": true }, @@ -74054,7 +83248,9 @@ "region": "United States", "hostname": "us9024.nordvpn.com", "number": 9024, - "ip": "45.14.195.124", + "ips": [ + "45.14.195.124" + ], "tcp": true, "udp": true }, @@ -74062,7 +83258,9 @@ "region": "United States", "hostname": "us9025.nordvpn.com", "number": 9025, - "ip": "45.14.195.126", + "ips": [ + "45.14.195.126" + ], "tcp": true, "udp": true }, @@ -74070,7 +83268,9 @@ "region": "United States", "hostname": "us9026.nordvpn.com", "number": 9026, - "ip": "45.14.195.128", + "ips": [ + "45.14.195.128" + ], "tcp": true, "udp": true }, @@ -74078,7 +83278,9 @@ "region": "United States", "hostname": "us9027.nordvpn.com", "number": 9027, - "ip": "45.14.195.130", + "ips": [ + "45.14.195.130" + ], "tcp": true, "udp": true }, @@ -74086,7 +83288,9 @@ "region": "United States", "hostname": "us9028.nordvpn.com", "number": 9028, - "ip": "45.14.195.132", + "ips": [ + "45.14.195.132" + ], "tcp": true, "udp": true }, @@ -74094,7 +83298,9 @@ "region": "United States", "hostname": "us9029.nordvpn.com", "number": 9029, - "ip": "45.14.195.134", + "ips": [ + "45.14.195.134" + ], "tcp": true, "udp": true }, @@ -74102,7 +83308,9 @@ "region": "United States", "hostname": "us9030.nordvpn.com", "number": 9030, - "ip": "45.14.195.136", + "ips": [ + "45.14.195.136" + ], "tcp": true, "udp": true }, @@ -74110,7 +83318,9 @@ "region": "United States", "hostname": "us9031.nordvpn.com", "number": 9031, - "ip": "45.14.195.138", + "ips": [ + "45.14.195.138" + ], "tcp": true, "udp": true }, @@ -74118,7 +83328,9 @@ "region": "United States", "hostname": "us9032.nordvpn.com", "number": 9032, - "ip": "45.14.195.140", + "ips": [ + "45.14.195.140" + ], "tcp": true, "udp": true }, @@ -74126,7 +83338,9 @@ "region": "United States", "hostname": "us9033.nordvpn.com", "number": 9033, - "ip": "45.14.195.142", + "ips": [ + "45.14.195.142" + ], "tcp": true, "udp": true }, @@ -74134,7 +83348,9 @@ "region": "United States", "hostname": "us9034.nordvpn.com", "number": 9034, - "ip": "45.14.195.144", + "ips": [ + "45.14.195.144" + ], "tcp": true, "udp": true }, @@ -74142,7 +83358,9 @@ "region": "United States", "hostname": "us9035.nordvpn.com", "number": 9035, - "ip": "45.14.195.146", + "ips": [ + "45.14.195.146" + ], "tcp": true, "udp": true }, @@ -74150,7 +83368,9 @@ "region": "United States", "hostname": "us9036.nordvpn.com", "number": 9036, - "ip": "45.14.195.148", + "ips": [ + "45.14.195.148" + ], "tcp": true, "udp": true }, @@ -74158,7 +83378,9 @@ "region": "United States", "hostname": "us9037.nordvpn.com", "number": 9037, - "ip": "45.14.195.150", + "ips": [ + "45.14.195.150" + ], "tcp": true, "udp": true }, @@ -74166,7 +83388,9 @@ "region": "United States", "hostname": "us9038.nordvpn.com", "number": 9038, - "ip": "45.14.195.152", + "ips": [ + "45.14.195.152" + ], "tcp": true, "udp": true }, @@ -74174,7 +83398,9 @@ "region": "United States", "hostname": "us9039.nordvpn.com", "number": 9039, - "ip": "45.14.195.154", + "ips": [ + "45.14.195.154" + ], "tcp": true, "udp": true }, @@ -74182,7 +83408,9 @@ "region": "United States", "hostname": "us9040.nordvpn.com", "number": 9040, - "ip": "45.14.195.156", + "ips": [ + "45.14.195.156" + ], "tcp": true, "udp": true }, @@ -74190,7 +83418,9 @@ "region": "United States", "hostname": "us9041.nordvpn.com", "number": 9041, - "ip": "45.14.195.158", + "ips": [ + "45.14.195.158" + ], "tcp": true, "udp": true }, @@ -74198,7 +83428,9 @@ "region": "United States", "hostname": "us9042.nordvpn.com", "number": 9042, - "ip": "45.14.195.160", + "ips": [ + "45.14.195.160" + ], "tcp": true, "udp": true }, @@ -74206,7 +83438,9 @@ "region": "United States", "hostname": "us9043.nordvpn.com", "number": 9043, - "ip": "45.14.195.162", + "ips": [ + "45.14.195.162" + ], "tcp": true, "udp": true }, @@ -74214,15 +83448,9 @@ "region": "United States", "hostname": "us9044.nordvpn.com", "number": 9044, - "ip": "108.62.107.237", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9045.nordvpn.com", - "number": 9045, - "ip": "108.62.107.241", + "ips": [ + "108.62.107.237" + ], "tcp": true, "udp": true }, @@ -74230,23 +83458,9 @@ "region": "United States", "hostname": "us9046.nordvpn.com", "number": 9046, - "ip": "108.62.107.233", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9047.nordvpn.com", - "number": 9047, - "ip": "108.62.107.219", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9048.nordvpn.com", - "number": 9048, - "ip": "108.62.107.207", + "ips": [ + "108.62.107.233" + ], "tcp": true, "udp": true }, @@ -74254,7 +83468,9 @@ "region": "United States", "hostname": "us9049.nordvpn.com", "number": 9049, - "ip": "23.19.141.117", + "ips": [ + "23.19.141.117" + ], "tcp": true, "udp": true }, @@ -74262,7 +83478,9 @@ "region": "United States", "hostname": "us9050.nordvpn.com", "number": 9050, - "ip": "23.19.141.84", + "ips": [ + "23.19.141.84" + ], "tcp": true, "udp": true }, @@ -74270,15 +83488,9 @@ "region": "United States", "hostname": "us9051.nordvpn.com", "number": 9051, - "ip": "23.108.92.193", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9052.nordvpn.com", - "number": 9052, - "ip": "23.19.208.1", + "ips": [ + "23.108.92.193" + ], "tcp": true, "udp": true }, @@ -74286,7 +83498,9 @@ "region": "United States", "hostname": "us9053.nordvpn.com", "number": 9053, - "ip": "23.108.92.205", + "ips": [ + "23.108.92.205" + ], "tcp": true, "udp": true }, @@ -74294,7 +83508,9 @@ "region": "United States", "hostname": "us9054.nordvpn.com", "number": 9054, - "ip": "23.108.92.201", + "ips": [ + "23.108.92.201" + ], "tcp": true, "udp": true }, @@ -74302,7 +83518,9 @@ "region": "United States", "hostname": "us9055.nordvpn.com", "number": 9055, - "ip": "23.108.92.209", + "ips": [ + "23.108.92.209" + ], "tcp": true, "udp": true }, @@ -74310,15 +83528,9 @@ "region": "United States", "hostname": "us9056.nordvpn.com", "number": 9056, - "ip": "23.19.141.109", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9057.nordvpn.com", - "number": 9057, - "ip": "108.62.107.203", + "ips": [ + "23.19.141.109" + ], "tcp": true, "udp": true }, @@ -74326,7 +83538,9 @@ "region": "United States", "hostname": "us9058.nordvpn.com", "number": 9058, - "ip": "108.62.107.223", + "ips": [ + "108.62.107.223" + ], "tcp": true, "udp": true }, @@ -74334,15 +83548,9 @@ "region": "United States", "hostname": "us9059.nordvpn.com", "number": 9059, - "ip": "23.108.92.197", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9060.nordvpn.com", - "number": 9060, - "ip": "108.62.107.211", + "ips": [ + "23.108.92.197" + ], "tcp": true, "udp": true }, @@ -74350,15 +83558,19 @@ "region": "United States", "hostname": "us9061.nordvpn.com", "number": 9061, - "ip": "23.19.141.113", + "ips": [ + "23.19.141.113" + ], "tcp": true, "udp": true }, { "region": "United States", - "hostname": "us9062.nordvpn.com", - "number": 9062, - "ip": "108.62.107.215", + "hostname": "us9063.nordvpn.com", + "number": 9063, + "ips": [ + "23.19.141.83" + ], "tcp": true, "udp": true }, @@ -74366,15 +83578,9 @@ "region": "United States", "hostname": "us9064.nordvpn.com", "number": 9064, - "ip": "23.19.141.79", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9065.nordvpn.com", - "number": 9065, - "ip": "108.62.107.193", + "ips": [ + "23.19.141.79" + ], "tcp": true, "udp": true }, @@ -74382,7 +83588,9 @@ "region": "United States", "hostname": "us9066.nordvpn.com", "number": 9066, - "ip": "108.62.107.245", + "ips": [ + "108.62.107.245" + ], "tcp": true, "udp": true }, @@ -74390,7 +83598,9 @@ "region": "United States", "hostname": "us9067.nordvpn.com", "number": 9067, - "ip": "23.19.208.5", + "ips": [ + "23.19.208.5" + ], "tcp": true, "udp": true }, @@ -74398,7 +83608,9 @@ "region": "United States", "hostname": "us9068.nordvpn.com", "number": 9068, - "ip": "23.108.92.130", + "ips": [ + "23.108.92.130" + ], "tcp": true, "udp": true }, @@ -74406,7 +83618,9 @@ "region": "United States", "hostname": "us9069.nordvpn.com", "number": 9069, - "ip": "23.108.92.177", + "ips": [ + "23.108.92.177" + ], "tcp": true, "udp": true }, @@ -74414,7 +83628,9 @@ "region": "United States", "hostname": "us9070.nordvpn.com", "number": 9070, - "ip": "23.108.92.139", + "ips": [ + "23.108.92.139" + ], "tcp": true, "udp": true }, @@ -74422,7 +83638,9 @@ "region": "United States", "hostname": "us9071.nordvpn.com", "number": 9071, - "ip": "23.108.92.173", + "ips": [ + "23.108.92.173" + ], "tcp": true, "udp": true }, @@ -74430,7 +83648,9 @@ "region": "United States", "hostname": "us9072.nordvpn.com", "number": 9072, - "ip": "23.108.92.131", + "ips": [ + "23.108.92.131" + ], "tcp": true, "udp": true }, @@ -74438,7 +83658,9 @@ "region": "United States", "hostname": "us9073.nordvpn.com", "number": 9073, - "ip": "23.108.92.135", + "ips": [ + "23.108.92.135" + ], "tcp": true, "udp": true }, @@ -74446,7 +83668,9 @@ "region": "United States", "hostname": "us9074.nordvpn.com", "number": 9074, - "ip": "23.108.92.169", + "ips": [ + "23.108.92.169" + ], "tcp": true, "udp": true }, @@ -74454,7 +83678,9 @@ "region": "United States", "hostname": "us9075.nordvpn.com", "number": 9075, - "ip": "23.19.141.65", + "ips": [ + "23.19.141.65" + ], "tcp": true, "udp": true }, @@ -74462,7 +83688,9 @@ "region": "United States", "hostname": "us9076.nordvpn.com", "number": 9076, - "ip": "23.108.92.129", + "ips": [ + "23.108.92.129" + ], "tcp": true, "udp": true }, @@ -74470,7 +83698,19 @@ "region": "United States", "hostname": "us9077.nordvpn.com", "number": 9077, - "ip": "23.19.141.88", + "ips": [ + "23.19.141.88" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9078.nordvpn.com", + "number": 9078, + "ips": [ + "23.19.141.92" + ], "tcp": true, "udp": true }, @@ -74478,7 +83718,9 @@ "region": "United States", "hostname": "us9079.nordvpn.com", "number": 9079, - "ip": "23.19.141.96", + "ips": [ + "23.19.141.96" + ], "tcp": true, "udp": true }, @@ -74486,7 +83728,9 @@ "region": "United States", "hostname": "us9080.nordvpn.com", "number": 9080, - "ip": "23.19.141.100", + "ips": [ + "23.19.141.100" + ], "tcp": true, "udp": true }, @@ -74494,7 +83738,9 @@ "region": "United States", "hostname": "us9081.nordvpn.com", "number": 9081, - "ip": "23.19.141.104", + "ips": [ + "23.19.141.104" + ], "tcp": true, "udp": true }, @@ -74502,7 +83748,9 @@ "region": "United States", "hostname": "us9082.nordvpn.com", "number": 9082, - "ip": "23.19.141.75", + "ips": [ + "23.19.141.75" + ], "tcp": true, "udp": true }, @@ -74510,7 +83758,9 @@ "region": "United States", "hostname": "us9083.nordvpn.com", "number": 9083, - "ip": "23.19.141.71", + "ips": [ + "23.19.141.71" + ], "tcp": true, "udp": true }, @@ -74518,7 +83768,9 @@ "region": "United States", "hostname": "us9094.nordvpn.com", "number": 9094, - "ip": "94.140.11.1", + "ips": [ + "94.140.11.1" + ], "tcp": true, "udp": true }, @@ -74526,7 +83778,9 @@ "region": "United States", "hostname": "us9095.nordvpn.com", "number": 9095, - "ip": "94.140.11.3", + "ips": [ + "94.140.11.3" + ], "tcp": true, "udp": true }, @@ -74534,7 +83788,9 @@ "region": "United States", "hostname": "us9096.nordvpn.com", "number": 9096, - "ip": "94.140.11.5", + "ips": [ + "94.140.11.5" + ], "tcp": true, "udp": true }, @@ -74542,7 +83798,9 @@ "region": "United States", "hostname": "us9097.nordvpn.com", "number": 9097, - "ip": "94.140.11.7", + "ips": [ + "94.140.11.7" + ], "tcp": true, "udp": true }, @@ -74550,7 +83808,9 @@ "region": "United States", "hostname": "us9098.nordvpn.com", "number": 9098, - "ip": "94.140.11.9", + "ips": [ + "94.140.11.9" + ], "tcp": true, "udp": true }, @@ -74558,7 +83818,9 @@ "region": "United States", "hostname": "us9099.nordvpn.com", "number": 9099, - "ip": "94.140.11.11", + "ips": [ + "94.140.11.11" + ], "tcp": true, "udp": true }, @@ -74566,7 +83828,9 @@ "region": "United States", "hostname": "us9100.nordvpn.com", "number": 9100, - "ip": "94.140.11.13", + "ips": [ + "94.140.11.13" + ], "tcp": true, "udp": true }, @@ -74574,7 +83838,9 @@ "region": "United States", "hostname": "us9101.nordvpn.com", "number": 9101, - "ip": "94.140.11.15", + "ips": [ + "94.140.11.15" + ], "tcp": true, "udp": true }, @@ -74582,7 +83848,9 @@ "region": "United States", "hostname": "us9102.nordvpn.com", "number": 9102, - "ip": "94.140.11.17", + "ips": [ + "94.140.11.17" + ], "tcp": true, "udp": true }, @@ -74590,7 +83858,9 @@ "region": "United States", "hostname": "us9103.nordvpn.com", "number": 9103, - "ip": "94.140.11.19", + "ips": [ + "94.140.11.19" + ], "tcp": true, "udp": true }, @@ -74598,7 +83868,9 @@ "region": "United States", "hostname": "us9104.nordvpn.com", "number": 9104, - "ip": "94.140.11.21", + "ips": [ + "94.140.11.21" + ], "tcp": true, "udp": true }, @@ -74606,7 +83878,9 @@ "region": "United States", "hostname": "us9105.nordvpn.com", "number": 9105, - "ip": "94.140.11.23", + "ips": [ + "94.140.11.23" + ], "tcp": true, "udp": true }, @@ -74614,7 +83888,9 @@ "region": "United States", "hostname": "us9106.nordvpn.com", "number": 9106, - "ip": "94.140.11.25", + "ips": [ + "94.140.11.25" + ], "tcp": true, "udp": true }, @@ -74622,7 +83898,9 @@ "region": "United States", "hostname": "us9107.nordvpn.com", "number": 9107, - "ip": "94.140.11.27", + "ips": [ + "94.140.11.27" + ], "tcp": true, "udp": true }, @@ -74630,7 +83908,9 @@ "region": "United States", "hostname": "us9108.nordvpn.com", "number": 9108, - "ip": "94.140.11.29", + "ips": [ + "94.140.11.29" + ], "tcp": true, "udp": true }, @@ -74638,7 +83918,9 @@ "region": "United States", "hostname": "us9109.nordvpn.com", "number": 9109, - "ip": "94.140.11.31", + "ips": [ + "94.140.11.31" + ], "tcp": true, "udp": true }, @@ -74646,7 +83928,9 @@ "region": "United States", "hostname": "us9110.nordvpn.com", "number": 9110, - "ip": "94.140.11.33", + "ips": [ + "94.140.11.33" + ], "tcp": true, "udp": true }, @@ -74654,7 +83938,9 @@ "region": "United States", "hostname": "us9111.nordvpn.com", "number": 9111, - "ip": "94.140.11.35", + "ips": [ + "94.140.11.35" + ], "tcp": true, "udp": true }, @@ -74662,239 +83948,9 @@ "region": "United States", "hostname": "us9112.nordvpn.com", "number": 9112, - "ip": "94.140.11.37", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9113.nordvpn.com", - "number": 9113, - "ip": "23.105.41.176", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9114.nordvpn.com", - "number": 9114, - "ip": "23.105.41.180", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9115.nordvpn.com", - "number": 9115, - "ip": "23.105.41.143", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9116.nordvpn.com", - "number": 9116, - "ip": "23.105.41.156", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9117.nordvpn.com", - "number": 9117, - "ip": "23.105.41.166", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9118.nordvpn.com", - "number": 9118, - "ip": "23.105.41.170", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9119.nordvpn.com", - "number": 9119, - "ip": "23.105.41.161", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9121.nordvpn.com", - "number": 9121, - "ip": "23.105.41.130", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9122.nordvpn.com", - "number": 9122, - "ip": "23.105.46.1", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9123.nordvpn.com", - "number": 9123, - "ip": "23.105.46.6", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9124.nordvpn.com", - "number": 9124, - "ip": "23.105.41.199", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9125.nordvpn.com", - "number": 9125, - "ip": "23.105.46.16", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9126.nordvpn.com", - "number": 9126, - "ip": "23.105.46.22", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9127.nordvpn.com", - "number": 9127, - "ip": "23.19.19.198", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9128.nordvpn.com", - "number": 9128, - "ip": "23.105.46.11", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9129.nordvpn.com", - "number": 9129, - "ip": "23.19.19.202", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9130.nordvpn.com", - "number": 9130, - "ip": "23.19.19.215", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9131.nordvpn.com", - "number": 9131, - "ip": "23.19.19.207", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9132.nordvpn.com", - "number": 9132, - "ip": "23.19.19.194", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9133.nordvpn.com", - "number": 9133, - "ip": "23.105.41.221", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9134.nordvpn.com", - "number": 9134, - "ip": "23.105.41.200", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9135.nordvpn.com", - "number": 9135, - "ip": "23.105.41.209", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9136.nordvpn.com", - "number": 9136, - "ip": "23.105.41.198", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9137.nordvpn.com", - "number": 9137, - "ip": "23.105.41.223", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9138.nordvpn.com", - "number": 9138, - "ip": "23.105.41.193", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9139.nordvpn.com", - "number": 9139, - "ip": "23.105.41.195", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9140.nordvpn.com", - "number": 9140, - "ip": "23.19.10.34", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9141.nordvpn.com", - "number": 9141, - "ip": "23.19.10.33", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9142.nordvpn.com", - "number": 9142, - "ip": "23.19.10.47", + "ips": [ + "94.140.11.37" + ], "tcp": true, "udp": true }, @@ -74902,7 +83958,9 @@ "region": "United States", "hostname": "us9143.nordvpn.com", "number": 9143, - "ip": "2.56.190.6", + "ips": [ + "2.56.190.6" + ], "tcp": true, "udp": true }, @@ -74910,7 +83968,9 @@ "region": "United States", "hostname": "us9144.nordvpn.com", "number": 9144, - "ip": "2.56.190.12", + "ips": [ + "2.56.190.12" + ], "tcp": true, "udp": true }, @@ -74918,7 +83978,9 @@ "region": "United States", "hostname": "us9145.nordvpn.com", "number": 9145, - "ip": "2.56.190.18", + "ips": [ + "2.56.190.18" + ], "tcp": true, "udp": true }, @@ -74926,7 +83988,9 @@ "region": "United States", "hostname": "us9146.nordvpn.com", "number": 9146, - "ip": "2.56.190.2", + "ips": [ + "2.56.190.2" + ], "tcp": true, "udp": true }, @@ -74934,7 +83998,9 @@ "region": "United States", "hostname": "us9147.nordvpn.com", "number": 9147, - "ip": "2.56.190.8", + "ips": [ + "2.56.190.8" + ], "tcp": true, "udp": true }, @@ -74942,7 +84008,9 @@ "region": "United States", "hostname": "us9148.nordvpn.com", "number": 9148, - "ip": "2.56.190.14", + "ips": [ + "2.56.190.14" + ], "tcp": true, "udp": true }, @@ -74950,7 +84018,9 @@ "region": "United States", "hostname": "us9149.nordvpn.com", "number": 9149, - "ip": "2.56.190.20", + "ips": [ + "2.56.190.20" + ], "tcp": true, "udp": true }, @@ -74958,7 +84028,9 @@ "region": "United States", "hostname": "us9150.nordvpn.com", "number": 9150, - "ip": "2.56.190.26", + "ips": [ + "2.56.190.26" + ], "tcp": true, "udp": true }, @@ -74966,7 +84038,9 @@ "region": "United States", "hostname": "us9151.nordvpn.com", "number": 9151, - "ip": "2.56.190.32", + "ips": [ + "2.56.190.32" + ], "tcp": true, "udp": true }, @@ -74974,7 +84048,9 @@ "region": "United States", "hostname": "us9152.nordvpn.com", "number": 9152, - "ip": "2.56.190.38", + "ips": [ + "2.56.190.38" + ], "tcp": true, "udp": true }, @@ -74982,7 +84058,9 @@ "region": "United States", "hostname": "us9153.nordvpn.com", "number": 9153, - "ip": "2.56.190.45", + "ips": [ + "2.56.190.45" + ], "tcp": true, "udp": true }, @@ -74990,7 +84068,9 @@ "region": "United States", "hostname": "us9154.nordvpn.com", "number": 9154, - "ip": "2.56.190.52", + "ips": [ + "2.56.190.52" + ], "tcp": true, "udp": true }, @@ -74998,7 +84078,9 @@ "region": "United States", "hostname": "us9155.nordvpn.com", "number": 9155, - "ip": "2.56.190.59", + "ips": [ + "2.56.190.59" + ], "tcp": true, "udp": true }, @@ -75006,7 +84088,9 @@ "region": "United States", "hostname": "us9156.nordvpn.com", "number": 9156, - "ip": "2.56.190.66", + "ips": [ + "2.56.190.66" + ], "tcp": true, "udp": true }, @@ -75014,7 +84098,9 @@ "region": "United States", "hostname": "us9157.nordvpn.com", "number": 9157, - "ip": "2.56.190.73", + "ips": [ + "2.56.190.73" + ], "tcp": true, "udp": true }, @@ -75022,7 +84108,9 @@ "region": "United States", "hostname": "us9158.nordvpn.com", "number": 9158, - "ip": "2.56.190.80", + "ips": [ + "2.56.190.80" + ], "tcp": true, "udp": true }, @@ -75030,7 +84118,9 @@ "region": "United States", "hostname": "us9159.nordvpn.com", "number": 9159, - "ip": "2.56.190.87", + "ips": [ + "2.56.190.87" + ], "tcp": true, "udp": true }, @@ -75038,7 +84128,9 @@ "region": "United States", "hostname": "us9160.nordvpn.com", "number": 9160, - "ip": "2.56.190.94", + "ips": [ + "2.56.190.94" + ], "tcp": true, "udp": true }, @@ -75046,7 +84138,9 @@ "region": "United States", "hostname": "us9161.nordvpn.com", "number": 9161, - "ip": "2.56.190.101", + "ips": [ + "2.56.190.101" + ], "tcp": true, "udp": true }, @@ -75054,7 +84148,9 @@ "region": "United States", "hostname": "us9162.nordvpn.com", "number": 9162, - "ip": "2.56.190.108", + "ips": [ + "2.56.190.108" + ], "tcp": true, "udp": true }, @@ -75062,7 +84158,9 @@ "region": "United States", "hostname": "us9163.nordvpn.com", "number": 9163, - "ip": "2.56.190.115", + "ips": [ + "2.56.190.115" + ], "tcp": true, "udp": true }, @@ -75070,7 +84168,9 @@ "region": "United States", "hostname": "us9164.nordvpn.com", "number": 9164, - "ip": "2.56.190.122", + "ips": [ + "2.56.190.122" + ], "tcp": true, "udp": true }, @@ -75078,7 +84178,9 @@ "region": "United States", "hostname": "us9165.nordvpn.com", "number": 9165, - "ip": "2.56.190.129", + "ips": [ + "2.56.190.129" + ], "tcp": true, "udp": true }, @@ -75086,7 +84188,9 @@ "region": "United States", "hostname": "us9166.nordvpn.com", "number": 9166, - "ip": "2.56.190.136", + "ips": [ + "2.56.190.136" + ], "tcp": true, "udp": true }, @@ -75094,7 +84198,9 @@ "region": "United States", "hostname": "us9167.nordvpn.com", "number": 9167, - "ip": "2.56.190.143", + "ips": [ + "2.56.190.143" + ], "tcp": true, "udp": true }, @@ -75102,7 +84208,9 @@ "region": "United States", "hostname": "us9168.nordvpn.com", "number": 9168, - "ip": "2.56.190.150", + "ips": [ + "2.56.190.150" + ], "tcp": true, "udp": true }, @@ -75110,7 +84218,9 @@ "region": "United States", "hostname": "us9169.nordvpn.com", "number": 9169, - "ip": "2.56.190.157", + "ips": [ + "2.56.190.157" + ], "tcp": true, "udp": true }, @@ -75118,7 +84228,9 @@ "region": "United States", "hostname": "us9170.nordvpn.com", "number": 9170, - "ip": "2.56.190.164", + "ips": [ + "2.56.190.164" + ], "tcp": true, "udp": true }, @@ -75126,7 +84238,9 @@ "region": "United States", "hostname": "us9171.nordvpn.com", "number": 9171, - "ip": "2.56.190.171", + "ips": [ + "2.56.190.171" + ], "tcp": true, "udp": true }, @@ -75134,7 +84248,9 @@ "region": "United States", "hostname": "us9172.nordvpn.com", "number": 9172, - "ip": "2.56.190.178", + "ips": [ + "2.56.190.178" + ], "tcp": true, "udp": true }, @@ -75142,7 +84258,9 @@ "region": "United States", "hostname": "us9173.nordvpn.com", "number": 9173, - "ip": "2.56.190.185", + "ips": [ + "2.56.190.185" + ], "tcp": true, "udp": true }, @@ -75150,7 +84268,9 @@ "region": "United States", "hostname": "us9174.nordvpn.com", "number": 9174, - "ip": "2.56.190.192", + "ips": [ + "2.56.190.192" + ], "tcp": true, "udp": true }, @@ -75158,7 +84278,9 @@ "region": "United States", "hostname": "us9175.nordvpn.com", "number": 9175, - "ip": "2.56.190.199", + "ips": [ + "2.56.190.199" + ], "tcp": true, "udp": true }, @@ -75166,7 +84288,9 @@ "region": "United States", "hostname": "us9176.nordvpn.com", "number": 9176, - "ip": "2.56.190.206", + "ips": [ + "2.56.190.206" + ], "tcp": true, "udp": true }, @@ -75174,7 +84298,9 @@ "region": "United States", "hostname": "us9177.nordvpn.com", "number": 9177, - "ip": "2.56.190.213", + "ips": [ + "2.56.190.213" + ], "tcp": true, "udp": true }, @@ -75182,7 +84308,9 @@ "region": "United States", "hostname": "us9178.nordvpn.com", "number": 9178, - "ip": "2.56.190.220", + "ips": [ + "2.56.190.220" + ], "tcp": true, "udp": true }, @@ -75190,7 +84318,9 @@ "region": "United States", "hostname": "us9179.nordvpn.com", "number": 9179, - "ip": "2.56.190.227", + "ips": [ + "2.56.190.227" + ], "tcp": true, "udp": true }, @@ -75198,7 +84328,9 @@ "region": "United States", "hostname": "us9180.nordvpn.com", "number": 9180, - "ip": "2.56.190.234", + "ips": [ + "2.56.190.234" + ], "tcp": true, "udp": true }, @@ -75206,7 +84338,9 @@ "region": "United States", "hostname": "us9181.nordvpn.com", "number": 9181, - "ip": "2.56.190.241", + "ips": [ + "2.56.190.241" + ], "tcp": true, "udp": true }, @@ -75214,7 +84348,9 @@ "region": "United States", "hostname": "us9182.nordvpn.com", "number": 9182, - "ip": "2.56.190.248", + "ips": [ + "2.56.190.248" + ], "tcp": true, "udp": true }, @@ -75222,7 +84358,9 @@ "region": "United States", "hostname": "us9183.nordvpn.com", "number": 9183, - "ip": "83.136.182.100", + "ips": [ + "83.136.182.100" + ], "tcp": true, "udp": true }, @@ -75230,7 +84368,9 @@ "region": "United States", "hostname": "us9184.nordvpn.com", "number": 9184, - "ip": "83.136.182.102", + "ips": [ + "83.136.182.102" + ], "tcp": true, "udp": true }, @@ -75238,7 +84378,9 @@ "region": "United States", "hostname": "us9185.nordvpn.com", "number": 9185, - "ip": "83.136.182.104", + "ips": [ + "83.136.182.104" + ], "tcp": true, "udp": true }, @@ -75246,7 +84388,9 @@ "region": "United States", "hostname": "us9186.nordvpn.com", "number": 9186, - "ip": "83.136.182.106", + "ips": [ + "83.136.182.106" + ], "tcp": true, "udp": true }, @@ -75254,7 +84398,9 @@ "region": "United States", "hostname": "us9187.nordvpn.com", "number": 9187, - "ip": "83.136.182.108", + "ips": [ + "83.136.182.108" + ], "tcp": true, "udp": true }, @@ -75262,7 +84408,9 @@ "region": "United States", "hostname": "us9188.nordvpn.com", "number": 9188, - "ip": "83.136.182.110", + "ips": [ + "83.136.182.110" + ], "tcp": true, "udp": true }, @@ -75270,7 +84418,9 @@ "region": "United States", "hostname": "us9189.nordvpn.com", "number": 9189, - "ip": "83.136.182.112", + "ips": [ + "83.136.182.112" + ], "tcp": true, "udp": true }, @@ -75278,7 +84428,9 @@ "region": "United States", "hostname": "us9190.nordvpn.com", "number": 9190, - "ip": "83.136.182.114", + "ips": [ + "83.136.182.114" + ], "tcp": true, "udp": true }, @@ -75286,7 +84438,9 @@ "region": "United States", "hostname": "us9191.nordvpn.com", "number": 9191, - "ip": "83.136.182.116", + "ips": [ + "83.136.182.116" + ], "tcp": true, "udp": true }, @@ -75294,7 +84448,9 @@ "region": "United States", "hostname": "us9192.nordvpn.com", "number": 9192, - "ip": "83.136.182.118", + "ips": [ + "83.136.182.118" + ], "tcp": true, "udp": true }, @@ -75302,7 +84458,9 @@ "region": "United States", "hostname": "us9193.nordvpn.com", "number": 9193, - "ip": "83.136.182.120", + "ips": [ + "83.136.182.120" + ], "tcp": true, "udp": true }, @@ -75310,7 +84468,9 @@ "region": "United States", "hostname": "us9194.nordvpn.com", "number": 9194, - "ip": "83.136.182.122", + "ips": [ + "83.136.182.122" + ], "tcp": true, "udp": true }, @@ -75318,7 +84478,9 @@ "region": "United States", "hostname": "us9195.nordvpn.com", "number": 9195, - "ip": "83.136.182.124", + "ips": [ + "83.136.182.124" + ], "tcp": true, "udp": true }, @@ -75326,7 +84488,9 @@ "region": "United States", "hostname": "us9196.nordvpn.com", "number": 9196, - "ip": "83.136.182.126", + "ips": [ + "83.136.182.126" + ], "tcp": true, "udp": true }, @@ -75334,7 +84498,9 @@ "region": "United States", "hostname": "us9197.nordvpn.com", "number": 9197, - "ip": "83.136.182.128", + "ips": [ + "83.136.182.128" + ], "tcp": true, "udp": true }, @@ -75342,7 +84508,9 @@ "region": "United States", "hostname": "us9198.nordvpn.com", "number": 9198, - "ip": "83.136.182.130", + "ips": [ + "83.136.182.130" + ], "tcp": true, "udp": true }, @@ -75350,7 +84518,9 @@ "region": "United States", "hostname": "us9199.nordvpn.com", "number": 9199, - "ip": "83.136.182.132", + "ips": [ + "83.136.182.132" + ], "tcp": true, "udp": true }, @@ -75358,7 +84528,9 @@ "region": "United States", "hostname": "us9200.nordvpn.com", "number": 9200, - "ip": "83.136.182.134", + "ips": [ + "83.136.182.134" + ], "tcp": true, "udp": true }, @@ -75366,7 +84538,9 @@ "region": "United States", "hostname": "us9201.nordvpn.com", "number": 9201, - "ip": "83.136.182.136", + "ips": [ + "83.136.182.136" + ], "tcp": true, "udp": true }, @@ -75374,7 +84548,9 @@ "region": "United States", "hostname": "us9202.nordvpn.com", "number": 9202, - "ip": "83.136.182.138", + "ips": [ + "83.136.182.138" + ], "tcp": true, "udp": true }, @@ -75382,7 +84558,9 @@ "region": "United States", "hostname": "us9203.nordvpn.com", "number": 9203, - "ip": "83.136.182.140", + "ips": [ + "83.136.182.140" + ], "tcp": true, "udp": true }, @@ -75390,7 +84568,9 @@ "region": "United States", "hostname": "us9204.nordvpn.com", "number": 9204, - "ip": "83.136.182.142", + "ips": [ + "83.136.182.142" + ], "tcp": true, "udp": true }, @@ -75398,7 +84578,9 @@ "region": "United States", "hostname": "us9205.nordvpn.com", "number": 9205, - "ip": "83.136.182.144", + "ips": [ + "83.136.182.144" + ], "tcp": true, "udp": true }, @@ -75406,7 +84588,9 @@ "region": "United States", "hostname": "us9206.nordvpn.com", "number": 9206, - "ip": "83.136.182.146", + "ips": [ + "83.136.182.146" + ], "tcp": true, "udp": true }, @@ -75414,7 +84598,9 @@ "region": "United States", "hostname": "us9207.nordvpn.com", "number": 9207, - "ip": "83.136.182.148", + "ips": [ + "83.136.182.148" + ], "tcp": true, "udp": true }, @@ -75422,7 +84608,9 @@ "region": "United States", "hostname": "us9208.nordvpn.com", "number": 9208, - "ip": "83.136.182.150", + "ips": [ + "83.136.182.150" + ], "tcp": true, "udp": true }, @@ -75430,7 +84618,9 @@ "region": "United States", "hostname": "us9209.nordvpn.com", "number": 9209, - "ip": "83.136.182.152", + "ips": [ + "83.136.182.152" + ], "tcp": true, "udp": true }, @@ -75438,7 +84628,9 @@ "region": "United States", "hostname": "us9210.nordvpn.com", "number": 9210, - "ip": "83.136.182.154", + "ips": [ + "83.136.182.154" + ], "tcp": true, "udp": true }, @@ -75446,7 +84638,9 @@ "region": "United States", "hostname": "us9211.nordvpn.com", "number": 9211, - "ip": "83.136.182.156", + "ips": [ + "83.136.182.156" + ], "tcp": true, "udp": true }, @@ -75454,7 +84648,9 @@ "region": "United States", "hostname": "us9212.nordvpn.com", "number": 9212, - "ip": "83.136.182.158", + "ips": [ + "83.136.182.158" + ], "tcp": true, "udp": true }, @@ -75462,7 +84658,9 @@ "region": "United States", "hostname": "us9213.nordvpn.com", "number": 9213, - "ip": "108.62.52.175", + "ips": [ + "108.62.52.175" + ], "tcp": true, "udp": true }, @@ -75470,7 +84668,9 @@ "region": "United States", "hostname": "us9214.nordvpn.com", "number": 9214, - "ip": "172.241.164.6", + "ips": [ + "172.241.164.6" + ], "tcp": true, "udp": true }, @@ -75478,7 +84678,9 @@ "region": "United States", "hostname": "us9215.nordvpn.com", "number": 9215, - "ip": "23.105.140.5", + "ips": [ + "23.105.140.5" + ], "tcp": true, "udp": true }, @@ -75486,7 +84688,9 @@ "region": "United States", "hostname": "us9216.nordvpn.com", "number": 9216, - "ip": "23.105.140.2", + "ips": [ + "23.105.140.2" + ], "tcp": true, "udp": true }, @@ -75494,7 +84698,9 @@ "region": "United States", "hostname": "us9217.nordvpn.com", "number": 9217, - "ip": "23.105.140.40", + "ips": [ + "23.105.140.40" + ], "tcp": true, "udp": true }, @@ -75502,7 +84708,9 @@ "region": "United States", "hostname": "us9218.nordvpn.com", "number": 9218, - "ip": "108.62.52.136", + "ips": [ + "108.62.52.136" + ], "tcp": true, "udp": true }, @@ -75510,7 +84718,9 @@ "region": "United States", "hostname": "us9219.nordvpn.com", "number": 9219, - "ip": "23.105.140.44", + "ips": [ + "23.105.140.44" + ], "tcp": true, "udp": true }, @@ -75518,7 +84728,9 @@ "region": "United States", "hostname": "us9220.nordvpn.com", "number": 9220, - "ip": "23.105.140.48", + "ips": [ + "23.105.140.48" + ], "tcp": true, "udp": true }, @@ -75526,7 +84738,9 @@ "region": "United States", "hostname": "us9221.nordvpn.com", "number": 9221, - "ip": "172.241.164.25", + "ips": [ + "172.241.164.25" + ], "tcp": true, "udp": true }, @@ -75534,7 +84748,9 @@ "region": "United States", "hostname": "us9222.nordvpn.com", "number": 9222, - "ip": "172.241.167.21", + "ips": [ + "172.241.167.21" + ], "tcp": true, "udp": true }, @@ -75542,7 +84758,9 @@ "region": "United States", "hostname": "us9223.nordvpn.com", "number": 9223, - "ip": "108.62.52.159", + "ips": [ + "108.62.52.159" + ], "tcp": true, "udp": true }, @@ -75550,7 +84768,19 @@ "region": "United States", "hostname": "us9224.nordvpn.com", "number": 9224, - "ip": "172.241.164.21", + "ips": [ + "172.241.164.21" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9225.nordvpn.com", + "number": 9225, + "ips": [ + "23.105.140.115" + ], "tcp": true, "udp": true }, @@ -75558,7 +84788,9 @@ "region": "United States", "hostname": "us9226.nordvpn.com", "number": 9226, - "ip": "108.62.52.191", + "ips": [ + "108.62.52.191" + ], "tcp": true, "udp": true }, @@ -75566,7 +84798,9 @@ "region": "United States", "hostname": "us9227.nordvpn.com", "number": 9227, - "ip": "108.62.52.155", + "ips": [ + "108.62.52.155" + ], "tcp": true, "udp": true }, @@ -75574,7 +84808,9 @@ "region": "United States", "hostname": "us9228.nordvpn.com", "number": 9228, - "ip": "172.241.164.30", + "ips": [ + "172.241.164.30" + ], "tcp": true, "udp": true }, @@ -75582,7 +84818,9 @@ "region": "United States", "hostname": "us9229.nordvpn.com", "number": 9229, - "ip": "172.241.167.42", + "ips": [ + "172.241.167.42" + ], "tcp": true, "udp": true }, @@ -75590,7 +84828,9 @@ "region": "United States", "hostname": "us9230.nordvpn.com", "number": 9230, - "ip": "108.62.52.178", + "ips": [ + "108.62.52.178" + ], "tcp": true, "udp": true }, @@ -75598,7 +84838,9 @@ "region": "United States", "hostname": "us9231.nordvpn.com", "number": 9231, - "ip": "172.241.167.38", + "ips": [ + "172.241.167.38" + ], "tcp": true, "udp": true }, @@ -75606,7 +84848,9 @@ "region": "United States", "hostname": "us9232.nordvpn.com", "number": 9232, - "ip": "172.241.167.46", + "ips": [ + "172.241.167.46" + ], "tcp": true, "udp": true }, @@ -75614,7 +84858,9 @@ "region": "United States", "hostname": "us9233.nordvpn.com", "number": 9233, - "ip": "108.62.52.203", + "ips": [ + "108.62.52.203" + ], "tcp": true, "udp": true }, @@ -75622,7 +84868,9 @@ "region": "United States", "hostname": "us9234.nordvpn.com", "number": 9234, - "ip": "108.62.52.183", + "ips": [ + "108.62.52.183" + ], "tcp": true, "udp": true }, @@ -75630,7 +84878,9 @@ "region": "United States", "hostname": "us9235.nordvpn.com", "number": 9235, - "ip": "108.62.52.226", + "ips": [ + "108.62.52.226" + ], "tcp": true, "udp": true }, @@ -75638,7 +84888,9 @@ "region": "United States", "hostname": "us9236.nordvpn.com", "number": 9236, - "ip": "108.62.52.197", + "ips": [ + "108.62.52.197" + ], "tcp": true, "udp": true }, @@ -75646,7 +84898,9 @@ "region": "United States", "hostname": "us9237.nordvpn.com", "number": 9237, - "ip": "108.62.52.208", + "ips": [ + "108.62.52.208" + ], "tcp": true, "udp": true }, @@ -75654,7 +84908,9 @@ "region": "United States", "hostname": "us9238.nordvpn.com", "number": 9238, - "ip": "108.62.52.132", + "ips": [ + "108.62.52.132" + ], "tcp": true, "udp": true }, @@ -75662,7 +84918,9 @@ "region": "United States", "hostname": "us9239.nordvpn.com", "number": 9239, - "ip": "23.105.140.67", + "ips": [ + "23.105.140.67" + ], "tcp": true, "udp": true }, @@ -75670,7 +84928,9 @@ "region": "United States", "hostname": "us9240.nordvpn.com", "number": 9240, - "ip": "172.241.164.10", + "ips": [ + "172.241.164.10" + ], "tcp": true, "udp": true }, @@ -75678,7 +84938,9 @@ "region": "United States", "hostname": "us9241.nordvpn.com", "number": 9241, - "ip": "23.105.140.112", + "ips": [ + "23.105.140.112" + ], "tcp": true, "udp": true }, @@ -75686,7 +84948,9 @@ "region": "United States", "hostname": "us9242.nordvpn.com", "number": 9242, - "ip": "23.105.140.10", + "ips": [ + "23.105.140.10" + ], "tcp": true, "udp": true }, @@ -75694,7 +84958,9 @@ "region": "United States", "hostname": "us9243.nordvpn.com", "number": 9243, - "ip": "23.105.140.7", + "ips": [ + "23.105.140.7" + ], "tcp": true, "udp": true }, @@ -75702,7 +84968,9 @@ "region": "United States", "hostname": "us9244.nordvpn.com", "number": 9244, - "ip": "172.241.164.65", + "ips": [ + "172.241.164.65" + ], "tcp": true, "udp": true }, @@ -75710,7 +84978,9 @@ "region": "United States", "hostname": "us9245.nordvpn.com", "number": 9245, - "ip": "23.105.140.19", + "ips": [ + "23.105.140.19" + ], "tcp": true, "udp": true }, @@ -75718,7 +84988,9 @@ "region": "United States", "hostname": "us9246.nordvpn.com", "number": 9246, - "ip": "23.105.140.28", + "ips": [ + "23.105.140.28" + ], "tcp": true, "udp": true }, @@ -75726,7 +84998,9 @@ "region": "United States", "hostname": "us9247.nordvpn.com", "number": 9247, - "ip": "172.241.164.69", + "ips": [ + "172.241.164.69" + ], "tcp": true, "udp": true }, @@ -75734,7 +85008,9 @@ "region": "United States", "hostname": "us9248.nordvpn.com", "number": 9248, - "ip": "23.105.140.32", + "ips": [ + "23.105.140.32" + ], "tcp": true, "udp": true }, @@ -75742,7 +85018,9 @@ "region": "United States", "hostname": "us9249.nordvpn.com", "number": 9249, - "ip": "23.105.140.23", + "ips": [ + "23.105.140.23" + ], "tcp": true, "udp": true }, @@ -75750,7 +85028,9 @@ "region": "United States", "hostname": "us9250.nordvpn.com", "number": 9250, - "ip": "23.105.140.104", + "ips": [ + "23.105.140.104" + ], "tcp": true, "udp": true }, @@ -75758,7 +85038,9 @@ "region": "United States", "hostname": "us9251.nordvpn.com", "number": 9251, - "ip": "23.105.140.108", + "ips": [ + "23.105.140.108" + ], "tcp": true, "udp": true }, @@ -75766,7 +85048,9 @@ "region": "United States", "hostname": "us9252.nordvpn.com", "number": 9252, - "ip": "172.241.164.14", + "ips": [ + "172.241.164.14" + ], "tcp": true, "udp": true }, @@ -75774,7 +85058,9 @@ "region": "United States", "hostname": "us9253.nordvpn.com", "number": 9253, - "ip": "23.105.140.60", + "ips": [ + "23.105.140.60" + ], "tcp": true, "udp": true }, @@ -75782,7 +85068,9 @@ "region": "United States", "hostname": "us9254.nordvpn.com", "number": 9254, - "ip": "23.105.140.83", + "ips": [ + "23.105.140.83" + ], "tcp": true, "udp": true }, @@ -75790,7 +85078,9 @@ "region": "United States", "hostname": "us9255.nordvpn.com", "number": 9255, - "ip": "23.105.140.79", + "ips": [ + "23.105.140.79" + ], "tcp": true, "udp": true }, @@ -75798,7 +85088,9 @@ "region": "United States", "hostname": "us9256.nordvpn.com", "number": 9256, - "ip": "108.62.52.195", + "ips": [ + "108.62.52.195" + ], "tcp": true, "udp": true }, @@ -75806,7 +85098,9 @@ "region": "United States", "hostname": "us9257.nordvpn.com", "number": 9257, - "ip": "23.105.140.56", + "ips": [ + "23.105.140.56" + ], "tcp": true, "udp": true }, @@ -75814,7 +85108,9 @@ "region": "United States", "hostname": "us9258.nordvpn.com", "number": 9258, - "ip": "23.105.140.87", + "ips": [ + "23.105.140.87" + ], "tcp": true, "udp": true }, @@ -75822,7 +85118,9 @@ "region": "United States", "hostname": "us9259.nordvpn.com", "number": 9259, - "ip": "23.105.140.71", + "ips": [ + "23.105.140.71" + ], "tcp": true, "udp": true }, @@ -75830,7 +85128,9 @@ "region": "United States", "hostname": "us9260.nordvpn.com", "number": 9260, - "ip": "23.105.140.75", + "ips": [ + "23.105.140.75" + ], "tcp": true, "udp": true }, @@ -75838,7 +85138,9 @@ "region": "United States", "hostname": "us9261.nordvpn.com", "number": 9261, - "ip": "108.62.52.220", + "ips": [ + "108.62.52.220" + ], "tcp": true, "udp": true }, @@ -75846,7 +85148,9 @@ "region": "United States", "hostname": "us9262.nordvpn.com", "number": 9262, - "ip": "172.241.167.34", + "ips": [ + "172.241.167.34" + ], "tcp": true, "udp": true }, @@ -75854,7 +85158,9 @@ "region": "United States", "hostname": "us9263.nordvpn.com", "number": 9263, - "ip": "23.105.140.1", + "ips": [ + "23.105.140.1" + ], "tcp": true, "udp": true }, @@ -75862,7 +85168,9 @@ "region": "United States", "hostname": "us9264.nordvpn.com", "number": 9264, - "ip": "108.62.52.146", + "ips": [ + "108.62.52.146" + ], "tcp": true, "udp": true }, @@ -75870,7 +85178,9 @@ "region": "United States", "hostname": "us9265.nordvpn.com", "number": 9265, - "ip": "108.62.52.164", + "ips": [ + "108.62.52.164" + ], "tcp": true, "udp": true }, @@ -75878,7 +85188,9 @@ "region": "United States", "hostname": "us9266.nordvpn.com", "number": 9266, - "ip": "108.62.52.148", + "ips": [ + "108.62.52.148" + ], "tcp": true, "udp": true }, @@ -75886,7 +85198,9 @@ "region": "United States", "hostname": "us9267.nordvpn.com", "number": 9267, - "ip": "108.62.52.237", + "ips": [ + "108.62.52.237" + ], "tcp": true, "udp": true }, @@ -75894,7 +85208,9 @@ "region": "United States", "hostname": "us9268.nordvpn.com", "number": 9268, - "ip": "108.62.52.234", + "ips": [ + "108.62.52.234" + ], "tcp": true, "udp": true }, @@ -75902,7 +85218,9 @@ "region": "United States", "hostname": "us9269.nordvpn.com", "number": 9269, - "ip": "108.62.52.242", + "ips": [ + "108.62.52.242" + ], "tcp": true, "udp": true }, @@ -75910,7 +85228,9 @@ "region": "United States", "hostname": "us9270.nordvpn.com", "number": 9270, - "ip": "108.62.52.154", + "ips": [ + "108.62.52.154" + ], "tcp": true, "udp": true }, @@ -75918,7 +85238,9 @@ "region": "United States", "hostname": "us9271.nordvpn.com", "number": 9271, - "ip": "173.208.98.230", + "ips": [ + "173.208.98.230" + ], "tcp": true, "udp": true }, @@ -75926,7 +85248,9 @@ "region": "United States", "hostname": "us9272.nordvpn.com", "number": 9272, - "ip": "173.208.98.226", + "ips": [ + "173.208.98.226" + ], "tcp": true, "udp": true }, @@ -75934,7 +85258,9 @@ "region": "United States", "hostname": "us9273.nordvpn.com", "number": 9273, - "ip": "185.216.74.186", + "ips": [ + "185.216.74.186" + ], "tcp": true, "udp": true }, @@ -75942,7 +85268,9 @@ "region": "United States", "hostname": "us9274.nordvpn.com", "number": 9274, - "ip": "185.216.74.144", + "ips": [ + "185.216.74.144" + ], "tcp": true, "udp": true }, @@ -75950,7 +85278,9 @@ "region": "United States", "hostname": "us9275.nordvpn.com", "number": 9275, - "ip": "185.216.74.152", + "ips": [ + "185.216.74.152" + ], "tcp": true, "udp": true }, @@ -75958,7 +85288,9 @@ "region": "United States", "hostname": "us9276.nordvpn.com", "number": 9276, - "ip": "185.216.74.160", + "ips": [ + "185.216.74.160" + ], "tcp": true, "udp": true }, @@ -75966,7 +85298,9 @@ "region": "United States", "hostname": "us9277.nordvpn.com", "number": 9277, - "ip": "185.216.74.168", + "ips": [ + "185.216.74.168" + ], "tcp": true, "udp": true }, @@ -75974,7 +85308,9 @@ "region": "United States", "hostname": "us9278.nordvpn.com", "number": 9278, - "ip": "185.216.74.176", + "ips": [ + "185.216.74.176" + ], "tcp": true, "udp": true }, @@ -75982,7 +85318,9 @@ "region": "United States", "hostname": "us9279.nordvpn.com", "number": 9279, - "ip": "185.216.74.184", + "ips": [ + "185.216.74.184" + ], "tcp": true, "udp": true }, @@ -75990,7 +85328,9 @@ "region": "United States", "hostname": "us9280.nordvpn.com", "number": 9280, - "ip": "138.199.9.143", + "ips": [ + "138.199.9.143" + ], "tcp": true, "udp": true }, @@ -75998,7 +85338,9 @@ "region": "United States", "hostname": "us9281.nordvpn.com", "number": 9281, - "ip": "84.17.44.106", + "ips": [ + "84.17.44.106" + ], "tcp": true, "udp": true }, @@ -76006,7 +85348,9 @@ "region": "United States", "hostname": "us9282.nordvpn.com", "number": 9282, - "ip": "84.17.44.101", + "ips": [ + "84.17.44.101" + ], "tcp": true, "udp": true }, @@ -76014,7 +85358,9 @@ "region": "United States", "hostname": "us9283.nordvpn.com", "number": 9283, - "ip": "138.199.9.148", + "ips": [ + "138.199.9.148" + ], "tcp": true, "udp": true }, @@ -76022,7 +85368,9 @@ "region": "United States", "hostname": "us9284.nordvpn.com", "number": 9284, - "ip": "138.199.9.152", + "ips": [ + "138.199.9.152" + ], "tcp": true, "udp": true }, @@ -76030,7 +85378,9 @@ "region": "United States", "hostname": "us9295.nordvpn.com", "number": 9295, - "ip": "185.203.219.100", + "ips": [ + "185.203.219.100" + ], "tcp": true, "udp": true }, @@ -76038,7 +85388,9 @@ "region": "United States", "hostname": "us9296.nordvpn.com", "number": 9296, - "ip": "185.203.219.102", + "ips": [ + "185.203.219.102" + ], "tcp": true, "udp": true }, @@ -76046,7 +85398,9 @@ "region": "United States", "hostname": "us9297.nordvpn.com", "number": 9297, - "ip": "185.203.219.104", + "ips": [ + "185.203.219.104" + ], "tcp": true, "udp": true }, @@ -76054,7 +85408,9 @@ "region": "United States", "hostname": "us9298.nordvpn.com", "number": 9298, - "ip": "185.203.219.106", + "ips": [ + "185.203.219.106" + ], "tcp": true, "udp": true }, @@ -76062,7 +85418,9 @@ "region": "United States", "hostname": "us9299.nordvpn.com", "number": 9299, - "ip": "185.203.219.108", + "ips": [ + "185.203.219.108" + ], "tcp": true, "udp": true }, @@ -76070,7 +85428,9 @@ "region": "United States", "hostname": "us9300.nordvpn.com", "number": 9300, - "ip": "185.203.219.110", + "ips": [ + "185.203.219.110" + ], "tcp": true, "udp": true }, @@ -76078,7 +85438,9 @@ "region": "United States", "hostname": "us9301.nordvpn.com", "number": 9301, - "ip": "185.203.219.112", + "ips": [ + "185.203.219.112" + ], "tcp": true, "udp": true }, @@ -76086,7 +85448,9 @@ "region": "United States", "hostname": "us9302.nordvpn.com", "number": 9302, - "ip": "185.203.219.114", + "ips": [ + "185.203.219.114" + ], "tcp": true, "udp": true }, @@ -76094,7 +85458,9 @@ "region": "United States", "hostname": "us9303.nordvpn.com", "number": 9303, - "ip": "185.203.219.116", + "ips": [ + "185.203.219.116" + ], "tcp": true, "udp": true }, @@ -76102,7 +85468,9 @@ "region": "United States", "hostname": "us9304.nordvpn.com", "number": 9304, - "ip": "185.203.219.118", + "ips": [ + "185.203.219.118" + ], "tcp": true, "udp": true }, @@ -76110,7 +85478,9 @@ "region": "United States", "hostname": "us9305.nordvpn.com", "number": 9305, - "ip": "185.203.219.120", + "ips": [ + "185.203.219.120" + ], "tcp": true, "udp": true }, @@ -76118,7 +85488,9 @@ "region": "United States", "hostname": "us9306.nordvpn.com", "number": 9306, - "ip": "185.203.219.122", + "ips": [ + "185.203.219.122" + ], "tcp": true, "udp": true }, @@ -76126,7 +85498,9 @@ "region": "United States", "hostname": "us9307.nordvpn.com", "number": 9307, - "ip": "185.203.219.124", + "ips": [ + "185.203.219.124" + ], "tcp": true, "udp": true }, @@ -76134,7 +85508,9 @@ "region": "United States", "hostname": "us9308.nordvpn.com", "number": 9308, - "ip": "185.203.219.126", + "ips": [ + "185.203.219.126" + ], "tcp": true, "udp": true }, @@ -76142,7 +85518,9 @@ "region": "United States", "hostname": "us9309.nordvpn.com", "number": 9309, - "ip": "185.203.219.128", + "ips": [ + "185.203.219.128" + ], "tcp": true, "udp": true }, @@ -76150,7 +85528,9 @@ "region": "United States", "hostname": "us9310.nordvpn.com", "number": 9310, - "ip": "185.203.219.130", + "ips": [ + "185.203.219.130" + ], "tcp": true, "udp": true }, @@ -76158,7 +85538,9 @@ "region": "United States", "hostname": "us9311.nordvpn.com", "number": 9311, - "ip": "185.203.219.132", + "ips": [ + "185.203.219.132" + ], "tcp": true, "udp": true }, @@ -76166,7 +85548,9 @@ "region": "United States", "hostname": "us9312.nordvpn.com", "number": 9312, - "ip": "185.203.219.134", + "ips": [ + "185.203.219.134" + ], "tcp": true, "udp": true }, @@ -76174,7 +85558,9 @@ "region": "United States", "hostname": "us9313.nordvpn.com", "number": 9313, - "ip": "185.203.219.136", + "ips": [ + "185.203.219.136" + ], "tcp": true, "udp": true }, @@ -76182,7 +85568,9 @@ "region": "United States", "hostname": "us9314.nordvpn.com", "number": 9314, - "ip": "185.203.219.138", + "ips": [ + "185.203.219.138" + ], "tcp": true, "udp": true }, @@ -76190,7 +85578,9 @@ "region": "United States", "hostname": "us9315.nordvpn.com", "number": 9315, - "ip": "185.203.219.140", + "ips": [ + "185.203.219.140" + ], "tcp": true, "udp": true }, @@ -76198,7 +85588,9 @@ "region": "United States", "hostname": "us9316.nordvpn.com", "number": 9316, - "ip": "185.203.219.142", + "ips": [ + "185.203.219.142" + ], "tcp": true, "udp": true }, @@ -76206,7 +85598,9 @@ "region": "United States", "hostname": "us9317.nordvpn.com", "number": 9317, - "ip": "185.203.219.144", + "ips": [ + "185.203.219.144" + ], "tcp": true, "udp": true }, @@ -76214,7 +85608,19 @@ "region": "United States", "hostname": "us9318.nordvpn.com", "number": 9318, - "ip": "185.203.219.146", + "ips": [ + "185.203.219.146" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9319.nordvpn.com", + "number": 9319, + "ips": [ + "185.203.219.148" + ], "tcp": true, "udp": true }, @@ -76222,7 +85628,9 @@ "region": "United States", "hostname": "us9320.nordvpn.com", "number": 9320, - "ip": "185.203.219.150", + "ips": [ + "185.203.219.150" + ], "tcp": true, "udp": true }, @@ -76230,15 +85638,9 @@ "region": "United States", "hostname": "us9321.nordvpn.com", "number": 9321, - "ip": "185.203.219.152", - "tcp": true, - "udp": true - }, - { - "region": "United States", - "hostname": "us9322.nordvpn.com", - "number": 9322, - "ip": "185.203.219.154", + "ips": [ + "185.203.219.152" + ], "tcp": true, "udp": true }, @@ -76246,7 +85648,9 @@ "region": "United States", "hostname": "us9323.nordvpn.com", "number": 9323, - "ip": "185.203.219.156", + "ips": [ + "185.203.219.156" + ], "tcp": true, "udp": true }, @@ -76254,7 +85658,9 @@ "region": "United States", "hostname": "us9324.nordvpn.com", "number": 9324, - "ip": "185.203.219.158", + "ips": [ + "185.203.219.158" + ], "tcp": true, "udp": true }, @@ -76262,7 +85668,9 @@ "region": "United States", "hostname": "us9325.nordvpn.com", "number": 9325, - "ip": "185.203.219.160", + "ips": [ + "185.203.219.160" + ], "tcp": true, "udp": true }, @@ -76270,7 +85678,9 @@ "region": "United States", "hostname": "us9326.nordvpn.com", "number": 9326, - "ip": "185.203.219.162", + "ips": [ + "185.203.219.162" + ], "tcp": true, "udp": true }, @@ -76278,7 +85688,9 @@ "region": "United States", "hostname": "us9327.nordvpn.com", "number": 9327, - "ip": "217.138.208.155", + "ips": [ + "217.138.208.155" + ], "tcp": true, "udp": true }, @@ -76286,7 +85698,9 @@ "region": "United States", "hostname": "us9328.nordvpn.com", "number": 9328, - "ip": "217.138.208.163", + "ips": [ + "217.138.208.163" + ], "tcp": true, "udp": true }, @@ -76294,7 +85708,9 @@ "region": "United States", "hostname": "us9329.nordvpn.com", "number": 9329, - "ip": "217.138.208.171", + "ips": [ + "217.138.208.171" + ], "tcp": true, "udp": true }, @@ -76302,7 +85718,9 @@ "region": "United States", "hostname": "us9330.nordvpn.com", "number": 9330, - "ip": "217.138.208.91", + "ips": [ + "217.138.208.91" + ], "tcp": true, "udp": true }, @@ -76310,7 +85728,9 @@ "region": "United States", "hostname": "us9331.nordvpn.com", "number": 9331, - "ip": "217.138.208.179", + "ips": [ + "217.138.208.179" + ], "tcp": true, "udp": true }, @@ -76318,7 +85738,9 @@ "region": "United States", "hostname": "us9332.nordvpn.com", "number": 9332, - "ip": "217.138.208.187", + "ips": [ + "217.138.208.187" + ], "tcp": true, "udp": true }, @@ -76326,7 +85748,9 @@ "region": "United States", "hostname": "us9333.nordvpn.com", "number": 9333, - "ip": "185.202.220.100", + "ips": [ + "185.202.220.100" + ], "tcp": true, "udp": true }, @@ -76334,7 +85758,9 @@ "region": "United States", "hostname": "us9334.nordvpn.com", "number": 9334, - "ip": "185.202.220.102", + "ips": [ + "185.202.220.102" + ], "tcp": true, "udp": true }, @@ -76342,7 +85768,9 @@ "region": "United States", "hostname": "us9335.nordvpn.com", "number": 9335, - "ip": "185.202.220.104", + "ips": [ + "185.202.220.104" + ], "tcp": true, "udp": true }, @@ -76350,7 +85778,9 @@ "region": "United States", "hostname": "us9336.nordvpn.com", "number": 9336, - "ip": "185.202.220.106", + "ips": [ + "185.202.220.106" + ], "tcp": true, "udp": true }, @@ -76358,7 +85788,9 @@ "region": "United States", "hostname": "us9337.nordvpn.com", "number": 9337, - "ip": "185.202.220.108", + "ips": [ + "185.202.220.108" + ], "tcp": true, "udp": true }, @@ -76366,7 +85798,9 @@ "region": "United States", "hostname": "us9338.nordvpn.com", "number": 9338, - "ip": "185.202.220.110", + "ips": [ + "185.202.220.110" + ], "tcp": true, "udp": true }, @@ -76374,7 +85808,9 @@ "region": "United States", "hostname": "us9339.nordvpn.com", "number": 9339, - "ip": "185.202.220.112", + "ips": [ + "185.202.220.112" + ], "tcp": true, "udp": true }, @@ -76382,7 +85818,9 @@ "region": "United States", "hostname": "us9340.nordvpn.com", "number": 9340, - "ip": "185.202.220.114", + "ips": [ + "185.202.220.114" + ], "tcp": true, "udp": true }, @@ -76390,7 +85828,9 @@ "region": "United States", "hostname": "us9341.nordvpn.com", "number": 9341, - "ip": "185.202.220.116", + "ips": [ + "185.202.220.116" + ], "tcp": true, "udp": true }, @@ -76398,7 +85838,9 @@ "region": "United States", "hostname": "us9342.nordvpn.com", "number": 9342, - "ip": "185.202.220.118", + "ips": [ + "185.202.220.118" + ], "tcp": true, "udp": true }, @@ -76406,7 +85848,9 @@ "region": "United States", "hostname": "us9343.nordvpn.com", "number": 9343, - "ip": "185.202.220.120", + "ips": [ + "185.202.220.120" + ], "tcp": true, "udp": true }, @@ -76414,7 +85858,9 @@ "region": "United States", "hostname": "us9344.nordvpn.com", "number": 9344, - "ip": "185.202.220.122", + "ips": [ + "185.202.220.122" + ], "tcp": true, "udp": true }, @@ -76422,7 +85868,9 @@ "region": "United States", "hostname": "us9345.nordvpn.com", "number": 9345, - "ip": "185.202.220.124", + "ips": [ + "185.202.220.124" + ], "tcp": true, "udp": true }, @@ -76430,7 +85878,9 @@ "region": "United States", "hostname": "us9346.nordvpn.com", "number": 9346, - "ip": "185.202.220.126", + "ips": [ + "185.202.220.126" + ], "tcp": true, "udp": true }, @@ -76438,7 +85888,9 @@ "region": "United States", "hostname": "us9347.nordvpn.com", "number": 9347, - "ip": "185.202.220.128", + "ips": [ + "185.202.220.128" + ], "tcp": true, "udp": true }, @@ -76446,7 +85898,9 @@ "region": "United States", "hostname": "us9348.nordvpn.com", "number": 9348, - "ip": "185.202.220.130", + "ips": [ + "185.202.220.130" + ], "tcp": true, "udp": true }, @@ -76454,7 +85908,9 @@ "region": "United States", "hostname": "us9349.nordvpn.com", "number": 9349, - "ip": "185.202.220.132", + "ips": [ + "185.202.220.132" + ], "tcp": true, "udp": true }, @@ -76462,7 +85918,9 @@ "region": "United States", "hostname": "us9350.nordvpn.com", "number": 9350, - "ip": "185.202.220.134", + "ips": [ + "185.202.220.134" + ], "tcp": true, "udp": true }, @@ -76470,7 +85928,9 @@ "region": "United States", "hostname": "us9351.nordvpn.com", "number": 9351, - "ip": "185.202.220.136", + "ips": [ + "185.202.220.136" + ], "tcp": true, "udp": true }, @@ -76478,7 +85938,9 @@ "region": "United States", "hostname": "us9352.nordvpn.com", "number": 9352, - "ip": "185.202.220.138", + "ips": [ + "185.202.220.138" + ], "tcp": true, "udp": true }, @@ -76486,7 +85948,9 @@ "region": "United States", "hostname": "us9353.nordvpn.com", "number": 9353, - "ip": "185.202.220.140", + "ips": [ + "185.202.220.140" + ], "tcp": true, "udp": true }, @@ -76494,7 +85958,9 @@ "region": "United States", "hostname": "us9354.nordvpn.com", "number": 9354, - "ip": "185.202.220.142", + "ips": [ + "185.202.220.142" + ], "tcp": true, "udp": true }, @@ -76502,7 +85968,9 @@ "region": "United States", "hostname": "us9355.nordvpn.com", "number": 9355, - "ip": "185.202.220.144", + "ips": [ + "185.202.220.144" + ], "tcp": true, "udp": true }, @@ -76510,7 +85978,9 @@ "region": "United States", "hostname": "us9356.nordvpn.com", "number": 9356, - "ip": "185.202.220.146", + "ips": [ + "185.202.220.146" + ], "tcp": true, "udp": true }, @@ -76518,7 +85988,9 @@ "region": "United States", "hostname": "us9357.nordvpn.com", "number": 9357, - "ip": "185.202.220.148", + "ips": [ + "185.202.220.148" + ], "tcp": true, "udp": true }, @@ -76526,7 +85998,9 @@ "region": "United States", "hostname": "us9358.nordvpn.com", "number": 9358, - "ip": "185.202.220.150", + "ips": [ + "185.202.220.150" + ], "tcp": true, "udp": true }, @@ -76534,7 +86008,9 @@ "region": "United States", "hostname": "us9359.nordvpn.com", "number": 9359, - "ip": "185.202.220.152", + "ips": [ + "185.202.220.152" + ], "tcp": true, "udp": true }, @@ -76542,7 +86018,9 @@ "region": "United States", "hostname": "us9360.nordvpn.com", "number": 9360, - "ip": "185.202.220.154", + "ips": [ + "185.202.220.154" + ], "tcp": true, "udp": true }, @@ -76550,7 +86028,9 @@ "region": "United States", "hostname": "us9361.nordvpn.com", "number": 9361, - "ip": "185.202.220.156", + "ips": [ + "185.202.220.156" + ], "tcp": true, "udp": true }, @@ -76558,7 +86038,9 @@ "region": "United States", "hostname": "us9362.nordvpn.com", "number": 9362, - "ip": "185.202.220.158", + "ips": [ + "185.202.220.158" + ], "tcp": true, "udp": true }, @@ -76566,7 +86048,9 @@ "region": "United States", "hostname": "us9363.nordvpn.com", "number": 9363, - "ip": "185.202.220.160", + "ips": [ + "185.202.220.160" + ], "tcp": true, "udp": true }, @@ -76574,7 +86058,9 @@ "region": "United States", "hostname": "us9364.nordvpn.com", "number": 9364, - "ip": "185.202.220.162", + "ips": [ + "185.202.220.162" + ], "tcp": true, "udp": true }, @@ -76582,7 +86068,9 @@ "region": "United States", "hostname": "us9365.nordvpn.com", "number": 9365, - "ip": "194.233.98.63", + "ips": [ + "194.233.98.63" + ], "tcp": true, "udp": true }, @@ -76590,7 +86078,9 @@ "region": "United States", "hostname": "us9366.nordvpn.com", "number": 9366, - "ip": "194.233.98.98", + "ips": [ + "194.233.98.98" + ], "tcp": true, "udp": true }, @@ -76598,7 +86088,9 @@ "region": "United States", "hostname": "us9367.nordvpn.com", "number": 9367, - "ip": "194.233.98.105", + "ips": [ + "194.233.98.105" + ], "tcp": true, "udp": true }, @@ -76606,7 +86098,9 @@ "region": "United States", "hostname": "us9368.nordvpn.com", "number": 9368, - "ip": "194.233.98.112", + "ips": [ + "194.233.98.112" + ], "tcp": true, "udp": true }, @@ -76614,7 +86108,9 @@ "region": "United States", "hostname": "us9369.nordvpn.com", "number": 9369, - "ip": "194.233.98.129", + "ips": [ + "194.233.98.129" + ], "tcp": true, "udp": true }, @@ -76622,7 +86118,9 @@ "region": "United States", "hostname": "us9370.nordvpn.com", "number": 9370, - "ip": "185.203.218.100", + "ips": [ + "185.203.218.100" + ], "tcp": true, "udp": true }, @@ -76630,7 +86128,9 @@ "region": "United States", "hostname": "us9371.nordvpn.com", "number": 9371, - "ip": "185.203.218.102", + "ips": [ + "185.203.218.102" + ], "tcp": true, "udp": true }, @@ -76638,7 +86138,9 @@ "region": "United States", "hostname": "us9372.nordvpn.com", "number": 9372, - "ip": "185.203.218.104", + "ips": [ + "185.203.218.104" + ], "tcp": true, "udp": true }, @@ -76646,7 +86148,9 @@ "region": "United States", "hostname": "us9373.nordvpn.com", "number": 9373, - "ip": "185.203.218.106", + "ips": [ + "185.203.218.106" + ], "tcp": true, "udp": true }, @@ -76654,7 +86158,9 @@ "region": "United States", "hostname": "us9374.nordvpn.com", "number": 9374, - "ip": "185.203.218.108", + "ips": [ + "185.203.218.108" + ], "tcp": true, "udp": true }, @@ -76662,7 +86168,9 @@ "region": "United States", "hostname": "us9375.nordvpn.com", "number": 9375, - "ip": "185.203.218.110", + "ips": [ + "185.203.218.110" + ], "tcp": true, "udp": true }, @@ -76670,7 +86178,9 @@ "region": "United States", "hostname": "us9376.nordvpn.com", "number": 9376, - "ip": "185.203.218.112", + "ips": [ + "185.203.218.112" + ], "tcp": true, "udp": true }, @@ -76678,7 +86188,9 @@ "region": "United States", "hostname": "us9377.nordvpn.com", "number": 9377, - "ip": "185.203.218.114", + "ips": [ + "185.203.218.114" + ], "tcp": true, "udp": true }, @@ -76686,7 +86198,9 @@ "region": "United States", "hostname": "us9378.nordvpn.com", "number": 9378, - "ip": "185.203.218.116", + "ips": [ + "185.203.218.116" + ], "tcp": true, "udp": true }, @@ -76694,7 +86208,9 @@ "region": "United States", "hostname": "us9379.nordvpn.com", "number": 9379, - "ip": "185.203.218.118", + "ips": [ + "185.203.218.118" + ], "tcp": true, "udp": true }, @@ -76702,7 +86218,9 @@ "region": "United States", "hostname": "us9380.nordvpn.com", "number": 9380, - "ip": "185.203.218.120", + "ips": [ + "185.203.218.120" + ], "tcp": true, "udp": true }, @@ -76710,7 +86228,9 @@ "region": "United States", "hostname": "us9381.nordvpn.com", "number": 9381, - "ip": "185.203.218.122", + "ips": [ + "185.203.218.122" + ], "tcp": true, "udp": true }, @@ -76718,7 +86238,9 @@ "region": "United States", "hostname": "us9382.nordvpn.com", "number": 9382, - "ip": "185.203.218.124", + "ips": [ + "185.203.218.124" + ], "tcp": true, "udp": true }, @@ -76726,7 +86248,9 @@ "region": "United States", "hostname": "us9383.nordvpn.com", "number": 9383, - "ip": "185.203.218.126", + "ips": [ + "185.203.218.126" + ], "tcp": true, "udp": true }, @@ -76734,7 +86258,9 @@ "region": "United States", "hostname": "us9384.nordvpn.com", "number": 9384, - "ip": "185.203.218.128", + "ips": [ + "185.203.218.128" + ], "tcp": true, "udp": true }, @@ -76742,7 +86268,9 @@ "region": "United States", "hostname": "us9385.nordvpn.com", "number": 9385, - "ip": "185.203.218.130", + "ips": [ + "185.203.218.130" + ], "tcp": true, "udp": true }, @@ -76750,7 +86278,9 @@ "region": "United States", "hostname": "us9386.nordvpn.com", "number": 9386, - "ip": "185.203.218.132", + "ips": [ + "185.203.218.132" + ], "tcp": true, "udp": true }, @@ -76758,7 +86288,9 @@ "region": "United States", "hostname": "us9387.nordvpn.com", "number": 9387, - "ip": "185.203.218.134", + "ips": [ + "185.203.218.134" + ], "tcp": true, "udp": true }, @@ -76766,7 +86298,9 @@ "region": "United States", "hostname": "us9388.nordvpn.com", "number": 9388, - "ip": "185.203.218.136", + "ips": [ + "185.203.218.136" + ], "tcp": true, "udp": true }, @@ -76774,7 +86308,9 @@ "region": "United States", "hostname": "us9389.nordvpn.com", "number": 9389, - "ip": "185.203.218.138", + "ips": [ + "185.203.218.138" + ], "tcp": true, "udp": true }, @@ -76782,7 +86318,9 @@ "region": "United States", "hostname": "us9390.nordvpn.com", "number": 9390, - "ip": "185.203.218.140", + "ips": [ + "185.203.218.140" + ], "tcp": true, "udp": true }, @@ -76790,7 +86328,9 @@ "region": "United States", "hostname": "us9391.nordvpn.com", "number": 9391, - "ip": "185.203.218.142", + "ips": [ + "185.203.218.142" + ], "tcp": true, "udp": true }, @@ -76798,7 +86338,9 @@ "region": "United States", "hostname": "us9392.nordvpn.com", "number": 9392, - "ip": "185.203.218.144", + "ips": [ + "185.203.218.144" + ], "tcp": true, "udp": true }, @@ -76806,7 +86348,9 @@ "region": "United States", "hostname": "us9393.nordvpn.com", "number": 9393, - "ip": "185.203.218.146", + "ips": [ + "185.203.218.146" + ], "tcp": true, "udp": true }, @@ -76814,7 +86358,9 @@ "region": "United States", "hostname": "us9394.nordvpn.com", "number": 9394, - "ip": "185.203.218.148", + "ips": [ + "185.203.218.148" + ], "tcp": true, "udp": true }, @@ -76822,7 +86368,9 @@ "region": "United States", "hostname": "us9395.nordvpn.com", "number": 9395, - "ip": "185.203.218.150", + "ips": [ + "185.203.218.150" + ], "tcp": true, "udp": true }, @@ -76830,7 +86378,9 @@ "region": "United States", "hostname": "us9396.nordvpn.com", "number": 9396, - "ip": "185.203.218.152", + "ips": [ + "185.203.218.152" + ], "tcp": true, "udp": true }, @@ -76838,7 +86388,9 @@ "region": "United States", "hostname": "us9397.nordvpn.com", "number": 9397, - "ip": "185.203.218.154", + "ips": [ + "185.203.218.154" + ], "tcp": true, "udp": true }, @@ -76846,7 +86398,9 @@ "region": "United States", "hostname": "us9398.nordvpn.com", "number": 9398, - "ip": "185.203.218.156", + "ips": [ + "185.203.218.156" + ], "tcp": true, "udp": true }, @@ -76854,7 +86408,9 @@ "region": "United States", "hostname": "us9399.nordvpn.com", "number": 9399, - "ip": "185.203.218.158", + "ips": [ + "185.203.218.158" + ], "tcp": true, "udp": true }, @@ -76862,7 +86418,9 @@ "region": "United States", "hostname": "us9400.nordvpn.com", "number": 9400, - "ip": "185.203.218.160", + "ips": [ + "185.203.218.160" + ], "tcp": true, "udp": true }, @@ -76870,7 +86428,9 @@ "region": "United States", "hostname": "us9401.nordvpn.com", "number": 9401, - "ip": "185.203.218.162", + "ips": [ + "185.203.218.162" + ], "tcp": true, "udp": true }, @@ -76878,7 +86438,9 @@ "region": "United States", "hostname": "us9402.nordvpn.com", "number": 9402, - "ip": "185.202.221.100", + "ips": [ + "185.202.221.100" + ], "tcp": true, "udp": true }, @@ -76886,7 +86448,9 @@ "region": "United States", "hostname": "us9403.nordvpn.com", "number": 9403, - "ip": "185.202.221.102", + "ips": [ + "185.202.221.102" + ], "tcp": true, "udp": true }, @@ -76894,7 +86458,9 @@ "region": "United States", "hostname": "us9404.nordvpn.com", "number": 9404, - "ip": "185.202.221.104", + "ips": [ + "185.202.221.104" + ], "tcp": true, "udp": true }, @@ -76902,7 +86468,9 @@ "region": "United States", "hostname": "us9405.nordvpn.com", "number": 9405, - "ip": "185.202.221.106", + "ips": [ + "185.202.221.106" + ], "tcp": true, "udp": true }, @@ -76910,7 +86478,9 @@ "region": "United States", "hostname": "us9406.nordvpn.com", "number": 9406, - "ip": "185.202.221.108", + "ips": [ + "185.202.221.108" + ], "tcp": true, "udp": true }, @@ -76918,7 +86488,9 @@ "region": "United States", "hostname": "us9407.nordvpn.com", "number": 9407, - "ip": "185.202.221.110", + "ips": [ + "185.202.221.110" + ], "tcp": true, "udp": true }, @@ -76926,7 +86498,9 @@ "region": "United States", "hostname": "us9408.nordvpn.com", "number": 9408, - "ip": "185.202.221.112", + "ips": [ + "185.202.221.112" + ], "tcp": true, "udp": true }, @@ -76934,7 +86508,9 @@ "region": "United States", "hostname": "us9409.nordvpn.com", "number": 9409, - "ip": "185.202.221.114", + "ips": [ + "185.202.221.114" + ], "tcp": true, "udp": true }, @@ -76942,7 +86518,9 @@ "region": "United States", "hostname": "us9410.nordvpn.com", "number": 9410, - "ip": "185.202.221.116", + "ips": [ + "185.202.221.116" + ], "tcp": true, "udp": true }, @@ -76950,7 +86528,9 @@ "region": "United States", "hostname": "us9411.nordvpn.com", "number": 9411, - "ip": "185.202.221.118", + "ips": [ + "185.202.221.118" + ], "tcp": true, "udp": true }, @@ -76958,7 +86538,9 @@ "region": "United States", "hostname": "us9412.nordvpn.com", "number": 9412, - "ip": "185.202.221.120", + "ips": [ + "185.202.221.120" + ], "tcp": true, "udp": true }, @@ -76966,7 +86548,9 @@ "region": "United States", "hostname": "us9413.nordvpn.com", "number": 9413, - "ip": "185.202.221.122", + "ips": [ + "185.202.221.122" + ], "tcp": true, "udp": true }, @@ -76974,7 +86558,9 @@ "region": "United States", "hostname": "us9414.nordvpn.com", "number": 9414, - "ip": "185.202.221.124", + "ips": [ + "185.202.221.124" + ], "tcp": true, "udp": true }, @@ -76982,7 +86568,9 @@ "region": "United States", "hostname": "us9415.nordvpn.com", "number": 9415, - "ip": "185.202.221.126", + "ips": [ + "185.202.221.126" + ], "tcp": true, "udp": true }, @@ -76990,7 +86578,9 @@ "region": "United States", "hostname": "us9416.nordvpn.com", "number": 9416, - "ip": "185.202.221.128", + "ips": [ + "185.202.221.128" + ], "tcp": true, "udp": true }, @@ -76998,7 +86588,9 @@ "region": "United States", "hostname": "us9417.nordvpn.com", "number": 9417, - "ip": "185.202.221.130", + "ips": [ + "185.202.221.130" + ], "tcp": true, "udp": true }, @@ -77006,7 +86598,9 @@ "region": "United States", "hostname": "us9418.nordvpn.com", "number": 9418, - "ip": "185.202.221.132", + "ips": [ + "185.202.221.132" + ], "tcp": true, "udp": true }, @@ -77014,7 +86608,9 @@ "region": "United States", "hostname": "us9419.nordvpn.com", "number": 9419, - "ip": "185.202.221.134", + "ips": [ + "185.202.221.134" + ], "tcp": true, "udp": true }, @@ -77022,7 +86618,9 @@ "region": "United States", "hostname": "us9420.nordvpn.com", "number": 9420, - "ip": "185.202.221.136", + "ips": [ + "185.202.221.136" + ], "tcp": true, "udp": true }, @@ -77030,7 +86628,9 @@ "region": "United States", "hostname": "us9421.nordvpn.com", "number": 9421, - "ip": "185.202.221.138", + "ips": [ + "185.202.221.138" + ], "tcp": true, "udp": true }, @@ -77038,7 +86638,9 @@ "region": "United States", "hostname": "us9422.nordvpn.com", "number": 9422, - "ip": "185.202.221.140", + "ips": [ + "185.202.221.140" + ], "tcp": true, "udp": true }, @@ -77046,7 +86648,9 @@ "region": "United States", "hostname": "us9423.nordvpn.com", "number": 9423, - "ip": "185.202.221.142", + "ips": [ + "185.202.221.142" + ], "tcp": true, "udp": true }, @@ -77054,7 +86658,9 @@ "region": "United States", "hostname": "us9424.nordvpn.com", "number": 9424, - "ip": "185.202.221.144", + "ips": [ + "185.202.221.144" + ], "tcp": true, "udp": true }, @@ -77062,7 +86668,9 @@ "region": "United States", "hostname": "us9425.nordvpn.com", "number": 9425, - "ip": "185.202.221.146", + "ips": [ + "185.202.221.146" + ], "tcp": true, "udp": true }, @@ -77070,7 +86678,9 @@ "region": "United States", "hostname": "us9426.nordvpn.com", "number": 9426, - "ip": "185.202.221.148", + "ips": [ + "185.202.221.148" + ], "tcp": true, "udp": true }, @@ -77078,7 +86688,9 @@ "region": "United States", "hostname": "us9427.nordvpn.com", "number": 9427, - "ip": "185.202.221.150", + "ips": [ + "185.202.221.150" + ], "tcp": true, "udp": true }, @@ -77086,7 +86698,9 @@ "region": "United States", "hostname": "us9428.nordvpn.com", "number": 9428, - "ip": "185.202.221.152", + "ips": [ + "185.202.221.152" + ], "tcp": true, "udp": true }, @@ -77094,7 +86708,9 @@ "region": "United States", "hostname": "us9429.nordvpn.com", "number": 9429, - "ip": "185.202.221.154", + "ips": [ + "185.202.221.154" + ], "tcp": true, "udp": true }, @@ -77102,7 +86718,9 @@ "region": "United States", "hostname": "us9430.nordvpn.com", "number": 9430, - "ip": "185.202.221.156", + "ips": [ + "185.202.221.156" + ], "tcp": true, "udp": true }, @@ -77110,7 +86728,9 @@ "region": "United States", "hostname": "us9431.nordvpn.com", "number": 9431, - "ip": "185.202.221.158", + "ips": [ + "185.202.221.158" + ], "tcp": true, "udp": true }, @@ -77118,7 +86738,9 @@ "region": "United States", "hostname": "us9432.nordvpn.com", "number": 9432, - "ip": "185.202.221.160", + "ips": [ + "185.202.221.160" + ], "tcp": true, "udp": true }, @@ -77126,7 +86748,9 @@ "region": "United States", "hostname": "us9433.nordvpn.com", "number": 9433, - "ip": "185.202.221.162", + "ips": [ + "185.202.221.162" + ], "tcp": true, "udp": true }, @@ -77134,7 +86758,9 @@ "region": "United States", "hostname": "us9434.nordvpn.com", "number": 9434, - "ip": "148.72.164.38", + "ips": [ + "148.72.164.38" + ], "tcp": true, "udp": true }, @@ -77142,7 +86768,9 @@ "region": "United States", "hostname": "us9435.nordvpn.com", "number": 9435, - "ip": "148.72.164.51", + "ips": [ + "148.72.164.51" + ], "tcp": true, "udp": true }, @@ -77150,7 +86778,9 @@ "region": "United States", "hostname": "us9436.nordvpn.com", "number": 9436, - "ip": "148.72.164.64", + "ips": [ + "148.72.164.64" + ], "tcp": true, "udp": true }, @@ -77158,7 +86788,9 @@ "region": "United States", "hostname": "us9437.nordvpn.com", "number": 9437, - "ip": "148.72.164.77", + "ips": [ + "148.72.164.77" + ], "tcp": true, "udp": true }, @@ -77166,7 +86798,9 @@ "region": "United States", "hostname": "us9438.nordvpn.com", "number": 9438, - "ip": "148.72.164.90", + "ips": [ + "148.72.164.90" + ], "tcp": true, "udp": true }, @@ -77174,7 +86808,9 @@ "region": "United States", "hostname": "us9439.nordvpn.com", "number": 9439, - "ip": "148.72.164.103", + "ips": [ + "148.72.164.103" + ], "tcp": true, "udp": true }, @@ -77182,7 +86818,9 @@ "region": "United States", "hostname": "us9440.nordvpn.com", "number": 9440, - "ip": "148.72.164.116", + "ips": [ + "148.72.164.116" + ], "tcp": true, "udp": true }, @@ -77190,7 +86828,9 @@ "region": "United States", "hostname": "us9441.nordvpn.com", "number": 9441, - "ip": "148.72.164.129", + "ips": [ + "148.72.164.129" + ], "tcp": true, "udp": true }, @@ -77198,7 +86838,9 @@ "region": "United States", "hostname": "us9442.nordvpn.com", "number": 9442, - "ip": "148.72.164.142", + "ips": [ + "148.72.164.142" + ], "tcp": true, "udp": true }, @@ -77206,7 +86848,9 @@ "region": "United States", "hostname": "us9443.nordvpn.com", "number": 9443, - "ip": "64.44.80.35", + "ips": [ + "64.44.80.35" + ], "tcp": true, "udp": true }, @@ -77214,7 +86858,9 @@ "region": "United States", "hostname": "us9444.nordvpn.com", "number": 9444, - "ip": "64.44.80.131", + "ips": [ + "64.44.80.131" + ], "tcp": true, "udp": true }, @@ -77222,7 +86868,9 @@ "region": "United States", "hostname": "us9445.nordvpn.com", "number": 9445, - "ip": "148.72.164.179", + "ips": [ + "148.72.164.179" + ], "tcp": true, "udp": true }, @@ -77230,7 +86878,9 @@ "region": "United States", "hostname": "us9446.nordvpn.com", "number": 9446, - "ip": "148.72.164.218", + "ips": [ + "148.72.164.218" + ], "tcp": true, "udp": true }, @@ -77238,7 +86888,9 @@ "region": "United States", "hostname": "us9447.nordvpn.com", "number": 9447, - "ip": "148.72.164.192", + "ips": [ + "148.72.164.192" + ], "tcp": true, "udp": true }, @@ -77246,7 +86898,9 @@ "region": "United States", "hostname": "us9448.nordvpn.com", "number": 9448, - "ip": "148.72.164.205", + "ips": [ + "148.72.164.205" + ], "tcp": true, "udp": true }, @@ -77254,7 +86908,9 @@ "region": "United States", "hostname": "us9449.nordvpn.com", "number": 9449, - "ip": "185.244.215.195", + "ips": [ + "185.244.215.195" + ], "tcp": true, "udp": true }, @@ -77262,7 +86918,9 @@ "region": "United States", "hostname": "us9450.nordvpn.com", "number": 9450, - "ip": "185.244.215.203", + "ips": [ + "185.244.215.203" + ], "tcp": true, "udp": true }, @@ -77270,7 +86928,9 @@ "region": "United States", "hostname": "us9451.nordvpn.com", "number": 9451, - "ip": "185.244.215.211", + "ips": [ + "185.244.215.211" + ], "tcp": true, "udp": true }, @@ -77278,7 +86938,9 @@ "region": "United States", "hostname": "us9452.nordvpn.com", "number": 9452, - "ip": "185.244.215.219", + "ips": [ + "185.244.215.219" + ], "tcp": true, "udp": true }, @@ -77286,7 +86948,9 @@ "region": "United States", "hostname": "us9453.nordvpn.com", "number": 9453, - "ip": "176.113.72.67", + "ips": [ + "176.113.72.67" + ], "tcp": true, "udp": true }, @@ -77294,7 +86958,9 @@ "region": "United States", "hostname": "us9454.nordvpn.com", "number": 9454, - "ip": "176.113.72.75", + "ips": [ + "176.113.72.75" + ], "tcp": true, "udp": true }, @@ -77302,7 +86968,9 @@ "region": "United States", "hostname": "us9455.nordvpn.com", "number": 9455, - "ip": "31.13.189.123", + "ips": [ + "31.13.189.123" + ], "tcp": true, "udp": true }, @@ -77310,7 +86978,9 @@ "region": "United States", "hostname": "us9456.nordvpn.com", "number": 9456, - "ip": "37.120.138.171", + "ips": [ + "37.120.138.171" + ], "tcp": true, "udp": true }, @@ -77318,7 +86988,9 @@ "region": "United States", "hostname": "us9457.nordvpn.com", "number": 9457, - "ip": "185.244.215.163", + "ips": [ + "185.244.215.163" + ], "tcp": true, "udp": true }, @@ -77326,7 +86998,9 @@ "region": "United States", "hostname": "us9458.nordvpn.com", "number": 9458, - "ip": "91.132.137.107", + "ips": [ + "91.132.137.107" + ], "tcp": true, "udp": true }, @@ -77334,7 +87008,9 @@ "region": "United States", "hostname": "us9460.nordvpn.com", "number": 9460, - "ip": "37.120.138.179", + "ips": [ + "37.120.138.179" + ], "tcp": true, "udp": true }, @@ -77342,7 +87018,9 @@ "region": "United States", "hostname": "us9461.nordvpn.com", "number": 9461, - "ip": "37.120.138.187", + "ips": [ + "37.120.138.187" + ], "tcp": true, "udp": true }, @@ -77350,7 +87028,9 @@ "region": "United States", "hostname": "us9462.nordvpn.com", "number": 9462, - "ip": "176.113.72.211", + "ips": [ + "176.113.72.211" + ], "tcp": true, "udp": true }, @@ -77358,7 +87038,9 @@ "region": "United States", "hostname": "us9463.nordvpn.com", "number": 9463, - "ip": "91.132.137.67", + "ips": [ + "91.132.137.67" + ], "tcp": true, "udp": true }, @@ -77366,7 +87048,9 @@ "region": "United States", "hostname": "us9464.nordvpn.com", "number": 9464, - "ip": "176.113.72.83", + "ips": [ + "176.113.72.83" + ], "tcp": true, "udp": true }, @@ -77374,7 +87058,29 @@ "region": "United States", "hostname": "us9465.nordvpn.com", "number": 9465, - "ip": "176.113.72.91", + "ips": [ + "176.113.72.91" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9476.nordvpn.com", + "number": 9476, + "ips": [ + "37.19.206.94" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9477.nordvpn.com", + "number": 9477, + "ips": [ + "194.60.86.3" + ], "tcp": true, "udp": true }, @@ -77382,7 +87088,9 @@ "region": "United States", "hostname": "us9478.nordvpn.com", "number": 9478, - "ip": "194.60.86.13", + "ips": [ + "194.60.86.13" + ], "tcp": true, "udp": true }, @@ -77390,7 +87098,9 @@ "region": "United States", "hostname": "us9479.nordvpn.com", "number": 9479, - "ip": "194.60.86.23", + "ips": [ + "194.60.86.23" + ], "tcp": true, "udp": true }, @@ -77398,7 +87108,9 @@ "region": "United States", "hostname": "us9480.nordvpn.com", "number": 9480, - "ip": "194.60.86.33", + "ips": [ + "194.60.86.33" + ], "tcp": true, "udp": true }, @@ -77406,7 +87118,9 @@ "region": "United States", "hostname": "us9481.nordvpn.com", "number": 9481, - "ip": "194.60.86.43", + "ips": [ + "194.60.86.43" + ], "tcp": true, "udp": true }, @@ -77414,7 +87128,9 @@ "region": "United States", "hostname": "us9482.nordvpn.com", "number": 9482, - "ip": "194.60.86.53", + "ips": [ + "194.60.86.53" + ], "tcp": true, "udp": true }, @@ -77422,7 +87138,9 @@ "region": "United States", "hostname": "us9483.nordvpn.com", "number": 9483, - "ip": "194.60.86.63", + "ips": [ + "194.60.86.63" + ], "tcp": true, "udp": true }, @@ -77430,7 +87148,9 @@ "region": "United States", "hostname": "us9484.nordvpn.com", "number": 9484, - "ip": "194.60.86.73", + "ips": [ + "194.60.86.73" + ], "tcp": true, "udp": true }, @@ -77438,7 +87158,9 @@ "region": "United States", "hostname": "us9485.nordvpn.com", "number": 9485, - "ip": "194.60.86.83", + "ips": [ + "194.60.86.83" + ], "tcp": true, "udp": true }, @@ -77446,7 +87168,9 @@ "region": "United States", "hostname": "us9486.nordvpn.com", "number": 9486, - "ip": "194.60.86.93", + "ips": [ + "194.60.86.93" + ], "tcp": true, "udp": true }, @@ -77454,7 +87178,9 @@ "region": "United States", "hostname": "us9487.nordvpn.com", "number": 9487, - "ip": "194.60.86.103", + "ips": [ + "194.60.86.103" + ], "tcp": true, "udp": true }, @@ -77462,7 +87188,9 @@ "region": "United States", "hostname": "us9488.nordvpn.com", "number": 9488, - "ip": "194.60.86.113", + "ips": [ + "194.60.86.113" + ], "tcp": true, "udp": true }, @@ -77470,7 +87198,9 @@ "region": "United States", "hostname": "us9489.nordvpn.com", "number": 9489, - "ip": "194.60.86.123", + "ips": [ + "194.60.86.123" + ], "tcp": true, "udp": true }, @@ -77478,7 +87208,9 @@ "region": "United States", "hostname": "us9490.nordvpn.com", "number": 9490, - "ip": "194.60.86.134", + "ips": [ + "194.60.86.134" + ], "tcp": true, "udp": true }, @@ -77486,7 +87218,9 @@ "region": "United States", "hostname": "us9491.nordvpn.com", "number": 9491, - "ip": "194.60.86.145", + "ips": [ + "194.60.86.145" + ], "tcp": true, "udp": true }, @@ -77494,7 +87228,9 @@ "region": "United States", "hostname": "us9492.nordvpn.com", "number": 9492, - "ip": "194.60.86.156", + "ips": [ + "194.60.86.156" + ], "tcp": true, "udp": true }, @@ -77502,7 +87238,9 @@ "region": "United States", "hostname": "us9493.nordvpn.com", "number": 9493, - "ip": "194.60.86.167", + "ips": [ + "194.60.86.167" + ], "tcp": true, "udp": true }, @@ -77510,7 +87248,9 @@ "region": "United States", "hostname": "us9494.nordvpn.com", "number": 9494, - "ip": "194.60.86.178", + "ips": [ + "194.60.86.178" + ], "tcp": true, "udp": true }, @@ -77518,7 +87258,9 @@ "region": "United States", "hostname": "us9495.nordvpn.com", "number": 9495, - "ip": "194.60.86.189", + "ips": [ + "194.60.86.189" + ], "tcp": true, "udp": true }, @@ -77526,7 +87268,9 @@ "region": "United States", "hostname": "us9496.nordvpn.com", "number": 9496, - "ip": "194.60.86.200", + "ips": [ + "194.60.86.200" + ], "tcp": true, "udp": true }, @@ -77534,7 +87278,9 @@ "region": "United States", "hostname": "us9497.nordvpn.com", "number": 9497, - "ip": "194.60.86.211", + "ips": [ + "194.60.86.211" + ], "tcp": true, "udp": true }, @@ -77542,7 +87288,9 @@ "region": "United States", "hostname": "us9498.nordvpn.com", "number": 9498, - "ip": "194.60.86.222", + "ips": [ + "194.60.86.222" + ], "tcp": true, "udp": true }, @@ -77550,7 +87298,9 @@ "region": "United States", "hostname": "us9499.nordvpn.com", "number": 9499, - "ip": "194.60.86.233", + "ips": [ + "194.60.86.233" + ], "tcp": true, "udp": true }, @@ -77558,7 +87308,1239 @@ "region": "United States", "hostname": "us9500.nordvpn.com", "number": 9500, - "ip": "194.60.86.244", + "ips": [ + "194.60.86.244" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9504.nordvpn.com", + "number": 9504, + "ips": [ + "192.145.119.6" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9505.nordvpn.com", + "number": 9505, + "ips": [ + "148.72.165.29" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9506.nordvpn.com", + "number": 9506, + "ips": [ + "156.146.51.98" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9507.nordvpn.com", + "number": 9507, + "ips": [ + "156.146.51.104" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9508.nordvpn.com", + "number": 9508, + "ips": [ + "84.17.41.182" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9509.nordvpn.com", + "number": 9509, + "ips": [ + "217.114.38.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9510.nordvpn.com", + "number": 9510, + "ips": [ + "217.114.38.10" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9511.nordvpn.com", + "number": 9511, + "ips": [ + "217.114.38.18" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9512.nordvpn.com", + "number": 9512, + "ips": [ + "217.114.38.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9513.nordvpn.com", + "number": 9513, + "ips": [ + "217.114.38.34" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9514.nordvpn.com", + "number": 9514, + "ips": [ + "217.114.38.42" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9515.nordvpn.com", + "number": 9515, + "ips": [ + "217.114.38.50" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9516.nordvpn.com", + "number": 9516, + "ips": [ + "217.114.38.58" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9517.nordvpn.com", + "number": 9517, + "ips": [ + "217.114.38.66" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9518.nordvpn.com", + "number": 9518, + "ips": [ + "217.114.38.74" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9519.nordvpn.com", + "number": 9519, + "ips": [ + "217.114.38.82" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9520.nordvpn.com", + "number": 9520, + "ips": [ + "217.114.38.90" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9521.nordvpn.com", + "number": 9521, + "ips": [ + "217.114.38.98" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9522.nordvpn.com", + "number": 9522, + "ips": [ + "217.114.38.106" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9523.nordvpn.com", + "number": 9523, + "ips": [ + "217.114.38.114" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9524.nordvpn.com", + "number": 9524, + "ips": [ + "217.114.38.122" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9525.nordvpn.com", + "number": 9525, + "ips": [ + "217.114.38.130" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9526.nordvpn.com", + "number": 9526, + "ips": [ + "217.114.38.138" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9527.nordvpn.com", + "number": 9527, + "ips": [ + "217.114.38.146" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9528.nordvpn.com", + "number": 9528, + "ips": [ + "217.114.38.154" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9529.nordvpn.com", + "number": 9529, + "ips": [ + "217.114.38.162" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9530.nordvpn.com", + "number": 9530, + "ips": [ + "217.114.38.170" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9531.nordvpn.com", + "number": 9531, + "ips": [ + "217.114.38.178" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9532.nordvpn.com", + "number": 9532, + "ips": [ + "217.114.38.186" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9533.nordvpn.com", + "number": 9533, + "ips": [ + "217.114.38.194" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9534.nordvpn.com", + "number": 9534, + "ips": [ + "217.114.38.202" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9535.nordvpn.com", + "number": 9535, + "ips": [ + "217.114.38.210" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9536.nordvpn.com", + "number": 9536, + "ips": [ + "217.114.38.218" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9537.nordvpn.com", + "number": 9537, + "ips": [ + "217.114.38.226" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9538.nordvpn.com", + "number": 9538, + "ips": [ + "217.114.38.233" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9539.nordvpn.com", + "number": 9539, + "ips": [ + "217.114.38.240" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9540.nordvpn.com", + "number": 9540, + "ips": [ + "217.114.38.247" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9541.nordvpn.com", + "number": 9541, + "ips": [ + "45.86.210.2" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9542.nordvpn.com", + "number": 9542, + "ips": [ + "45.86.210.4" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9543.nordvpn.com", + "number": 9543, + "ips": [ + "45.86.210.6" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9544.nordvpn.com", + "number": 9544, + "ips": [ + "45.86.210.8" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9545.nordvpn.com", + "number": 9545, + "ips": [ + "45.86.210.10" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9546.nordvpn.com", + "number": 9546, + "ips": [ + "45.86.210.12" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9547.nordvpn.com", + "number": 9547, + "ips": [ + "45.86.210.14" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9548.nordvpn.com", + "number": 9548, + "ips": [ + "45.86.210.16" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9549.nordvpn.com", + "number": 9549, + "ips": [ + "45.86.210.18" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9550.nordvpn.com", + "number": 9550, + "ips": [ + "45.86.210.20" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9551.nordvpn.com", + "number": 9551, + "ips": [ + "45.86.210.22" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9552.nordvpn.com", + "number": 9552, + "ips": [ + "45.86.210.24" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9553.nordvpn.com", + "number": 9553, + "ips": [ + "45.86.210.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9554.nordvpn.com", + "number": 9554, + "ips": [ + "45.86.210.28" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9555.nordvpn.com", + "number": 9555, + "ips": [ + "45.86.210.30" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9556.nordvpn.com", + "number": 9556, + "ips": [ + "45.86.210.32" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9557.nordvpn.com", + "number": 9557, + "ips": [ + "45.86.210.34" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9558.nordvpn.com", + "number": 9558, + "ips": [ + "45.86.210.36" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9559.nordvpn.com", + "number": 9559, + "ips": [ + "45.86.210.38" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9560.nordvpn.com", + "number": 9560, + "ips": [ + "45.86.210.40" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9561.nordvpn.com", + "number": 9561, + "ips": [ + "45.86.210.42" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9562.nordvpn.com", + "number": 9562, + "ips": [ + "45.86.210.44" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9563.nordvpn.com", + "number": 9563, + "ips": [ + "45.86.210.46" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9564.nordvpn.com", + "number": 9564, + "ips": [ + "45.86.210.48" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9565.nordvpn.com", + "number": 9565, + "ips": [ + "92.119.19.130" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9566.nordvpn.com", + "number": 9566, + "ips": [ + "92.119.19.132" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9567.nordvpn.com", + "number": 9567, + "ips": [ + "92.119.19.134" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9568.nordvpn.com", + "number": 9568, + "ips": [ + "92.119.19.136" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9569.nordvpn.com", + "number": 9569, + "ips": [ + "92.119.19.138" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9570.nordvpn.com", + "number": 9570, + "ips": [ + "92.119.19.140" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9571.nordvpn.com", + "number": 9571, + "ips": [ + "92.119.19.142" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9572.nordvpn.com", + "number": 9572, + "ips": [ + "92.119.19.144" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9573.nordvpn.com", + "number": 9573, + "ips": [ + "185.229.59.100" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9574.nordvpn.com", + "number": 9574, + "ips": [ + "185.229.59.102" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9575.nordvpn.com", + "number": 9575, + "ips": [ + "185.229.59.104" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9576.nordvpn.com", + "number": 9576, + "ips": [ + "185.229.59.106" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9577.nordvpn.com", + "number": 9577, + "ips": [ + "185.229.59.108" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9578.nordvpn.com", + "number": 9578, + "ips": [ + "185.229.59.110" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9579.nordvpn.com", + "number": 9579, + "ips": [ + "185.229.59.112" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9580.nordvpn.com", + "number": 9580, + "ips": [ + "185.229.59.114" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9581.nordvpn.com", + "number": 9581, + "ips": [ + "185.229.59.116" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9582.nordvpn.com", + "number": 9582, + "ips": [ + "185.229.59.118" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9583.nordvpn.com", + "number": 9583, + "ips": [ + "185.229.59.120" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9584.nordvpn.com", + "number": 9584, + "ips": [ + "185.229.59.122" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9585.nordvpn.com", + "number": 9585, + "ips": [ + "185.229.59.124" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9586.nordvpn.com", + "number": 9586, + "ips": [ + "185.229.59.126" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9587.nordvpn.com", + "number": 9587, + "ips": [ + "185.229.59.128" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9588.nordvpn.com", + "number": 9588, + "ips": [ + "185.229.59.130" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9590.nordvpn.com", + "number": 9590, + "ips": [ + "195.206.104.179" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9591.nordvpn.com", + "number": 9591, + "ips": [ + "195.206.104.187" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9592.nordvpn.com", + "number": 9592, + "ips": [ + "185.230.126.155" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9593.nordvpn.com", + "number": 9593, + "ips": [ + "195.206.104.243" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9594.nordvpn.com", + "number": 9594, + "ips": [ + "146.70.100.27" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9595.nordvpn.com", + "number": 9595, + "ips": [ + "148.72.164.26" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9596.nordvpn.com", + "number": 9596, + "ips": [ + "148.72.165.208" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9597.nordvpn.com", + "number": 9597, + "ips": [ + "148.72.165.191" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9598.nordvpn.com", + "number": 9598, + "ips": [ + "45.38.179.100" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9599.nordvpn.com", + "number": 9599, + "ips": [ + "45.38.179.102" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9600.nordvpn.com", + "number": 9600, + "ips": [ + "45.38.179.104" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9601.nordvpn.com", + "number": 9601, + "ips": [ + "45.38.179.106" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9602.nordvpn.com", + "number": 9602, + "ips": [ + "45.38.179.108" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9603.nordvpn.com", + "number": 9603, + "ips": [ + "45.38.179.110" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9604.nordvpn.com", + "number": 9604, + "ips": [ + "45.38.179.112" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9605.nordvpn.com", + "number": 9605, + "ips": [ + "45.38.179.114" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9606.nordvpn.com", + "number": 9606, + "ips": [ + "45.38.179.116" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9607.nordvpn.com", + "number": 9607, + "ips": [ + "45.38.179.118" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9608.nordvpn.com", + "number": 9608, + "ips": [ + "45.38.179.120" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9609.nordvpn.com", + "number": 9609, + "ips": [ + "45.38.179.122" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9610.nordvpn.com", + "number": 9610, + "ips": [ + "45.38.182.100" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9611.nordvpn.com", + "number": 9611, + "ips": [ + "45.38.182.102" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9612.nordvpn.com", + "number": 9612, + "ips": [ + "45.38.182.104" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9613.nordvpn.com", + "number": 9613, + "ips": [ + "45.38.182.106" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9614.nordvpn.com", + "number": 9614, + "ips": [ + "45.38.182.108" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9615.nordvpn.com", + "number": 9615, + "ips": [ + "45.38.182.110" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9616.nordvpn.com", + "number": 9616, + "ips": [ + "45.38.182.112" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9617.nordvpn.com", + "number": 9617, + "ips": [ + "45.38.182.114" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9618.nordvpn.com", + "number": 9618, + "ips": [ + "45.38.182.116" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9619.nordvpn.com", + "number": 9619, + "ips": [ + "45.38.182.118" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9620.nordvpn.com", + "number": 9620, + "ips": [ + "193.160.245.171" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9621.nordvpn.com", + "number": 9621, + "ips": [ + "50.117.77.238" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9622.nordvpn.com", + "number": 9622, + "ips": [ + "50.117.77.240" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9623.nordvpn.com", + "number": 9623, + "ips": [ + "50.117.77.242" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9624.nordvpn.com", + "number": 9624, + "ips": [ + "50.117.77.244" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9625.nordvpn.com", + "number": 9625, + "ips": [ + "50.117.77.246" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9626.nordvpn.com", + "number": 9626, + "ips": [ + "50.117.77.248" + ], + "tcp": true, + "udp": true + }, + { + "region": "United States", + "hostname": "us9627.nordvpn.com", + "number": 9627, + "ips": [ + "50.117.77.250" + ], "tcp": true, "udp": true }, @@ -77566,7 +88548,9 @@ "region": "Vietnam", "hostname": "vn18.nordvpn.com", "number": 18, - "ip": "125.212.220.51", + "ips": [ + "125.212.220.51" + ], "tcp": true, "udp": true }, @@ -77574,7 +88558,9 @@ "region": "Vietnam", "hostname": "vn19.nordvpn.com", "number": 19, - "ip": "125.212.220.54", + "ips": [ + "125.212.220.54" + ], "tcp": true, "udp": true }, @@ -77582,7 +88568,9 @@ "region": "Vietnam", "hostname": "vn20.nordvpn.com", "number": 20, - "ip": "125.212.220.57", + "ips": [ + "125.212.220.57" + ], "tcp": true, "udp": true }, @@ -77590,7 +88578,9 @@ "region": "Vietnam", "hostname": "vn21.nordvpn.com", "number": 21, - "ip": "125.212.220.6", + "ips": [ + "125.212.220.6" + ], "tcp": true, "udp": true }, @@ -77598,39 +88588,9 @@ "region": "Vietnam", "hostname": "vn22.nordvpn.com", "number": 22, - "ip": "125.212.220.41", - "tcp": true, - "udp": true - }, - { - "region": "Vietnam", - "hostname": "vn23.nordvpn.com", - "number": 23, - "ip": "125.212.220.26", - "tcp": true, - "udp": true - }, - { - "region": "Vietnam", - "hostname": "vn24.nordvpn.com", - "number": 24, - "ip": "125.212.220.30", - "tcp": true, - "udp": true - }, - { - "region": "Vietnam", - "hostname": "vn25.nordvpn.com", - "number": 25, - "ip": "125.212.220.34", - "tcp": true, - "udp": true - }, - { - "region": "Vietnam", - "hostname": "vn26.nordvpn.com", - "number": 26, - "ip": "125.212.220.40", + "ips": [ + "125.212.220.41" + ], "tcp": true, "udp": true }, @@ -77638,7 +88598,9 @@ "region": "Vietnam", "hostname": "vn27.nordvpn.com", "number": 27, - "ip": "125.212.220.47", + "ips": [ + "125.212.220.47" + ], "tcp": true, "udp": true }, @@ -77646,7 +88608,9 @@ "region": "Vietnam", "hostname": "vn28.nordvpn.com", "number": 28, - "ip": "103.9.76.189", + "ips": [ + "103.9.76.189" + ], "tcp": true, "udp": true }, @@ -77654,7 +88618,9 @@ "region": "Vietnam", "hostname": "vn29.nordvpn.com", "number": 29, - "ip": "103.9.76.192", + "ips": [ + "103.9.76.192" + ], "tcp": true, "udp": true }, @@ -77662,7 +88628,9 @@ "region": "Vietnam", "hostname": "vn30.nordvpn.com", "number": 30, - "ip": "103.9.76.205", + "ips": [ + "103.9.76.205" + ], "tcp": true, "udp": true }, @@ -77670,7 +88638,9 @@ "region": "Vietnam", "hostname": "vn31.nordvpn.com", "number": 31, - "ip": "103.9.76.219", + "ips": [ + "103.9.76.219" + ], "tcp": true, "udp": true }, @@ -77678,1772 +88648,2181 @@ "region": "Vietnam", "hostname": "vn32.nordvpn.com", "number": 32, - "ip": "103.9.76.222", + "ips": [ + "103.9.76.222" + ], + "tcp": true, + "udp": true + }, + { + "region": "Vietnam", + "hostname": "vn33.nordvpn.com", + "number": 33, + "ips": [ + "125.212.241.132" + ], + "tcp": true, + "udp": true + }, + { + "region": "Vietnam", + "hostname": "vn34.nordvpn.com", + "number": 34, + "ips": [ + "125.212.241.148" + ], + "tcp": true, + "udp": true + }, + { + "region": "Vietnam", + "hostname": "vn35.nordvpn.com", + "number": 35, + "ips": [ + "125.212.217.243" + ], + "tcp": true, + "udp": true + }, + { + "region": "Vietnam", + "hostname": "vn36.nordvpn.com", + "number": 36, + "ips": [ + "125.212.217.212" + ], "tcp": true, "udp": true } ] }, "privado": { - "version": 3, - "timestamp": 1647425147, + "version": 4, + "timestamp": 1650212268, "servers": [ { - "country": "Argentina", - "region": "Buenos Aires F.D.", - "city": "Buenos Aires", - "hostname": "eze-002.vpn.privado.io", - "ip": "168.205.93.215" + "country": "Albania", + "region": "Tirana", + "city": "Tirana", + "hostname": "tia-001.vpn.privado.io", + "ips": [ + "80.246.28.67" + ] }, { - "country": "Argentina", - "region": "Santa Fe", - "city": "Reconquista", - "hostname": "eze-001.vpn.privado.io", - "ip": "168.205.93.211" + "country": "Albania", + "region": "Tirana", + "city": "Tirana", + "hostname": "tia-002.vpn.privado.io", + "ips": [ + "80.246.28.72" + ] }, { "country": "Australia", "region": "New South Wales", "city": "Sydney", "hostname": "syd-001.vpn.privado.io", - "ip": "93.115.35.35" + "ips": [ + "93.115.35.35" + ] }, { "country": "Australia", "region": "New South Wales", "city": "Sydney", "hostname": "syd-002.vpn.privado.io", - "ip": "93.115.35.42" + "ips": [ + "93.115.35.42" + ] }, { "country": "Australia", "region": "New South Wales", "city": "Sydney", "hostname": "syd-003.vpn.privado.io", - "ip": "93.115.35.49" + "ips": [ + "93.115.35.49" + ] }, { "country": "Australia", "region": "New South Wales", "city": "Sydney", "hostname": "syd-004.vpn.privado.io", - "ip": "93.115.35.56" + "ips": [ + "93.115.35.56" + ] }, { "country": "Australia", "region": "New South Wales", "city": "Sydney", "hostname": "syd-006.vpn.privado.io", - "ip": "103.76.165.105" + "ips": [ + "103.76.165.105" + ] }, { "country": "Austria", "region": "Vienna", "city": "Vienna", "hostname": "vie-001.vpn.privado.io", - "ip": "5.253.207.227" + "ips": [ + "5.253.207.227" + ] }, { "country": "Austria", "region": "Vienna", "city": "Vienna", "hostname": "vie-002.vpn.privado.io", - "ip": "5.253.207.234" + "ips": [ + "5.253.207.234" + ] }, { "country": "Austria", "region": "Vienna", "city": "Vienna", "hostname": "vie-003.vpn.privado.io", - "ip": "5.253.207.241" + "ips": [ + "5.253.207.241" + ] }, { "country": "Austria", "region": "Vienna", "city": "Vienna", "hostname": "vie-004.vpn.privado.io", - "ip": "5.253.207.248" + "ips": [ + "5.253.207.248" + ] }, { "country": "Belgium", "region": "Brussels Capital", "city": "Brussels", "hostname": "bru-001.vpn.privado.io", - "ip": "217.138.211.163" + "ips": [ + "217.138.211.163" + ] }, { "country": "Belgium", "region": "Brussels Capital", "city": "Brussels", "hostname": "bru-002.vpn.privado.io", - "ip": "217.138.211.170" + "ips": [ + "217.138.211.170" + ] }, { "country": "Belgium", "region": "Brussels Capital", "city": "Brussels", "hostname": "bru-003.vpn.privado.io", - "ip": "217.138.211.177" + "ips": [ + "217.138.211.177" + ] }, { "country": "Belgium", "region": "Brussels Capital", "city": "Brussels", "hostname": "bru-004.vpn.privado.io", - "ip": "217.138.211.184" + "ips": [ + "217.138.211.184" + ] }, { "country": "Brazil", "region": "São Paulo", "city": "São Paulo", "hostname": "gru-001.vpn.privado.io", - "ip": "177.54.145.193" + "ips": [ + "177.54.145.193" + ] }, { "country": "Brazil", "region": "São Paulo", "city": "São Paulo", "hostname": "gru-002.vpn.privado.io", - "ip": "129.227.121.226" + "ips": [ + "129.227.121.226" + ] }, { "country": "Brazil", "region": "São Paulo", "city": "São Paulo", "hostname": "gru-003.vpn.privado.io", - "ip": "129.227.121.233" + "ips": [ + "129.227.121.233" + ] }, { "country": "Brazil", "region": "São Paulo", "city": "São Paulo", "hostname": "gru-004.vpn.privado.io", - "ip": "129.227.121.240" + "ips": [ + "129.227.121.240" + ] }, { "country": "Bulgaria", "region": "Sofia-Capital", "city": "Sofia", "hostname": "sof-001.vpn.privado.io", - "ip": "217.138.221.163" + "ips": [ + "217.138.221.163" + ] }, { "country": "Bulgaria", "region": "Sofia-Capital", "city": "Sofia", "hostname": "sof-002.vpn.privado.io", - "ip": "217.138.221.169" + "ips": [ + "217.138.221.169" + ] + }, + { + "country": "Canada", + "region": "British Columbia", + "city": "Chilliwack", + "hostname": "yvr-002.vpn.privado.io", + "ips": [ + "71.19.248.113" + ] }, { "country": "Canada", "region": "British Columbia", "city": "Vancouver", "hostname": "yvr-001.vpn.privado.io", - "ip": "71.19.248.57" - }, - { - "country": "Canada", - "region": "British Columbia", - "city": "Vancouver", - "hostname": "yvr-002.vpn.privado.io", - "ip": "71.19.248.113" + "ips": [ + "71.19.248.57" + ] }, { "country": "Canada", "region": "Ontario", "city": "Toronto", "hostname": "yyz-003.vpn.privado.io", - "ip": "199.189.27.19" - }, - { - "country": "Canada", - "region": "Quebec", - "city": "Montréal", - "hostname": "yul-001.vpn.privado.io", - "ip": "217.138.213.67" + "ips": [ + "199.189.27.19" + ] }, { "country": "Canada", "region": "Quebec", "city": "Montréal", "hostname": "yul-002.vpn.privado.io", - "ip": "217.138.213.72" + "ips": [ + "217.138.213.72" + ] }, { "country": "Canada", "region": "Quebec", "city": "Montréal", "hostname": "yul-003.vpn.privado.io", - "ip": "217.138.213.77" + "ips": [ + "217.138.213.77" + ] }, { "country": "Canada", "region": "Quebec", "city": "Montréal", "hostname": "yul-004.vpn.privado.io", - "ip": "217.138.213.82" + "ips": [ + "217.138.213.82" + ] }, { "country": "Czech Republic", "region": "Hlavní město Praha", "city": "Prague", "hostname": "prg-001.vpn.privado.io", - "ip": "185.216.35.99" + "ips": [ + "185.216.35.99" + ] }, { "country": "Czech Republic", "region": "Hlavní město Praha", "city": "Prague", "hostname": "prg-002.vpn.privado.io", - "ip": "185.216.35.105" + "ips": [ + "185.216.35.105" + ] }, { "country": "Denmark", "region": "Capital Region", "city": "Copenhagen", "hostname": "cph-001.vpn.privado.io", - "ip": "2.58.46.35" + "ips": [ + "2.58.46.35" + ] }, { "country": "Denmark", "region": "Capital Region", "city": "Copenhagen", "hostname": "cph-002.vpn.privado.io", - "ip": "2.58.46.42" + "ips": [ + "2.58.46.42" + ] }, { "country": "Denmark", "region": "Capital Region", "city": "Copenhagen", "hostname": "cph-003.vpn.privado.io", - "ip": "2.58.46.49" + "ips": [ + "2.58.46.49" + ] }, { "country": "Denmark", "region": "Capital Region", "city": "Copenhagen", "hostname": "cph-004.vpn.privado.io", - "ip": "2.58.46.56" - }, - { - "country": "Finland", - "region": "Uusimaa", - "city": "Helsinki", - "hostname": "hel-001.vpn.privado.io", - "ip": "194.34.134.219" + "ips": [ + "2.58.46.56" + ] }, { "country": "Finland", "region": "Uusimaa", "city": "Helsinki", "hostname": "hel-002.vpn.privado.io", - "ip": "194.34.134.227" + "ips": [ + "194.34.134.227" + ] }, { "country": "France", "region": "Île-de-France", "city": "Paris", "hostname": "cdg-001.vpn.privado.io", - "ip": "89.40.183.99" + "ips": [ + "89.40.183.99" + ] }, { "country": "France", "region": "Île-de-France", "city": "Paris", "hostname": "cdg-002.vpn.privado.io", - "ip": "89.40.183.104" + "ips": [ + "89.40.183.104" + ] }, { "country": "Germany", "region": "Hesse", "city": "Frankfurt am Main", "hostname": "ber-001.vpn.privado.io", - "ip": "89.36.76.35" + "ips": [ + "89.36.76.35" + ] }, { "country": "Germany", "region": "Hesse", "city": "Frankfurt am Main", "hostname": "ber-002.vpn.privado.io", - "ip": "89.36.76.41" + "ips": [ + "89.36.76.41" + ] }, { "country": "Germany", "region": "Hesse", "city": "Frankfurt am Main", "hostname": "fra-001.vpn.privado.io", - "ip": "91.148.232.10" + "ips": [ + "91.148.232.10" + ] }, { "country": "Germany", "region": "Hesse", "city": "Frankfurt am Main", "hostname": "fra-002.vpn.privado.io", - "ip": "91.148.232.20" + "ips": [ + "91.148.232.20" + ] }, { "country": "Germany", "region": "Hesse", "city": "Frankfurt am Main", "hostname": "fra-003.vpn.privado.io", - "ip": "91.148.232.30" + "ips": [ + "91.148.232.30" + ] }, { "country": "Germany", "region": "Hesse", "city": "Frankfurt am Main", "hostname": "fra-004.vpn.privado.io", - "ip": "91.148.232.40" - }, - { - "country": "Germany", - "region": "Hesse", - "city": "Frankfurt am Main", - "hostname": "fra-005.vpn.privado.io", - "ip": "91.148.233.7" - }, - { - "country": "Germany", - "region": "Hesse", - "city": "Frankfurt am Main", - "hostname": "fra-006.vpn.privado.io", - "ip": "91.148.233.8" - }, - { - "country": "Germany", - "region": "Hesse", - "city": "Frankfurt am Main", - "hostname": "fra-007.vpn.privado.io", - "ip": "91.148.233.9" - }, - { - "country": "Germany", - "region": "Hesse", - "city": "Frankfurt am Main", - "hostname": "fra-008.vpn.privado.io", - "ip": "91.148.233.10" - }, - { - "country": "Greece", - "region": "Attica", - "city": "Athens", - "hostname": "ath-001.vpn.privado.io", - "ip": "188.123.126.61" - }, - { - "country": "Greece", - "region": "Attica", - "city": "Athens", - "hostname": "ath-002.vpn.privado.io", - "ip": "188.123.126.64" - }, - { - "country": "Greece", - "region": "Attica", - "city": "Athens", - "hostname": "ath-003.vpn.privado.io", - "ip": "188.123.126.68" - }, - { - "country": "Greece", - "region": "Attica", - "city": "Athens", - "hostname": "ath-004.vpn.privado.io", - "ip": "188.123.126.72" - }, - { - "country": "Hong Kong", - "region": "Central and Western", - "city": "Hong Kong", - "hostname": "hkg-001.vpn.privado.io", - "ip": "209.58.185.88" + "ips": [ + "91.148.232.40" + ] }, { "country": "Hong Kong", "region": "Central and Western", "city": "Hong Kong", "hostname": "hkg-002.vpn.privado.io", - "ip": "209.58.185.97" + "ips": [ + "209.58.185.97" + ] }, { "country": "Hong Kong", "region": "Central and Western", "city": "Hong Kong", "hostname": "hkg-003.vpn.privado.io", - "ip": "209.58.185.108" + "ips": [ + "209.58.185.108" + ] }, { "country": "Hong Kong", "region": "Central and Western", "city": "Hong Kong", "hostname": "hkg-004.vpn.privado.io", - "ip": "209.58.185.120" + "ips": [ + "209.58.185.120" + ] }, { "country": "Hungary", "region": "Budapest", "city": "Budapest", "hostname": "bud-001.vpn.privado.io", - "ip": "185.128.26.194" + "ips": [ + "185.128.26.194" + ] }, { "country": "Hungary", "region": "Budapest", "city": "Budapest", "hostname": "bud-002.vpn.privado.io", - "ip": "185.128.26.200" + "ips": [ + "185.128.26.200" + ] }, { "country": "Iceland", "region": "Capital Region", "city": "Reykjavík", "hostname": "rkv-001.vpn.privado.io", - "ip": "82.221.131.78" + "ips": [ + "82.221.131.78" + ] }, { "country": "Iceland", "region": "Capital Region", "city": "Reykjavík", "hostname": "rkv-002.vpn.privado.io", - "ip": "82.221.131.127" - }, - { - "country": "Iceland", - "region": "Capital Region", - "city": "Reykjavík", - "hostname": "rkv-003.vpn.privado.io", - "ip": "185.165.170.171" - }, - { - "country": "Iceland", - "region": "Capital Region", - "city": "Reykjavík", - "hostname": "rkv-004.vpn.privado.io", - "ip": "185.165.170.176" - }, - { - "country": "Iceland", - "region": "Capital Region", - "city": "Reykjavík", - "hostname": "rkv-005.vpn.privado.io", - "ip": "185.165.170.181" + "ips": [ + "82.221.131.127" + ] }, { "country": "India", "region": "Maharashtra", "city": "Mumbai", "hostname": "bom-001.vpn.privado.io", - "ip": "103.26.204.61" + "ips": [ + "103.26.204.61" + ] }, { "country": "India", "region": "Maharashtra", "city": "Mumbai", "hostname": "bom-002.vpn.privado.io", - "ip": "103.26.204.70" - }, - { - "country": "Indonesia", - "region": "Jakarta", - "city": "Jakarta", - "hostname": "cgk-001.vpn.privado.io", - "ip": "129.227.46.67" - }, - { - "country": "Indonesia", - "region": "Jakarta", - "city": "Jakarta", - "hostname": "cgk-002.vpn.privado.io", - "ip": "129.227.46.71" + "ips": [ + "103.26.204.70" + ] }, { "country": "Indonesia", "region": "Jakarta", "city": "Jakarta", "hostname": "cgk-003.vpn.privado.io", - "ip": "129.227.46.74" + "ips": [ + "129.227.46.74" + ] }, { "country": "Indonesia", "region": "Jakarta", "city": "Jakarta", "hostname": "cgk-004.vpn.privado.io", - "ip": "129.227.46.77" + "ips": [ + "129.227.46.77" + ] }, { "country": "Ireland", "region": "Leinster", "city": "Dublin", "hostname": "dub-001.vpn.privado.io", - "ip": "84.247.48.227" + "ips": [ + "84.247.48.227" + ] }, { "country": "Ireland", "region": "Leinster", "city": "Dublin", "hostname": "dub-002.vpn.privado.io", - "ip": "84.247.48.234" + "ips": [ + "84.247.48.234" + ] }, { "country": "Ireland", "region": "Leinster", "city": "Dublin", "hostname": "dub-003.vpn.privado.io", - "ip": "84.247.48.241" + "ips": [ + "84.247.48.241" + ] }, { "country": "Ireland", "region": "Leinster", "city": "Dublin", "hostname": "dub-004.vpn.privado.io", - "ip": "84.247.48.248" + "ips": [ + "84.247.48.248" + ] }, { "country": "Israel", "region": "Tel Aviv", "city": "Tel Aviv", "hostname": "jrs-001.vpn.privado.io", - "ip": "31.168.251.131" + "ips": [ + "31.168.251.131" + ] }, { "country": "Israel", "region": "Tel Aviv", "city": "Tel Aviv", "hostname": "jrs-002.vpn.privado.io", - "ip": "31.168.251.137" + "ips": [ + "31.168.251.137" + ] }, { "country": "Italy", "region": "Lombardy", - "city": "Longhignana", + "city": "Milan", "hostname": "mxp-001.vpn.privado.io", - "ip": "89.40.182.195" + "ips": [ + "89.40.182.195" + ] }, { "country": "Italy", "region": "Lombardy", - "city": "Longhignana", + "city": "Milan", "hostname": "mxp-002.vpn.privado.io", - "ip": "89.40.182.201" + "ips": [ + "89.40.182.201" + ] }, { "country": "Japan", "region": "Tokyo", - "city": "Hatsudai", + "city": "Tokyo", "hostname": "nrt-001.vpn.privado.io", - "ip": "217.138.252.3" + "ips": [ + "217.138.252.3" + ] }, { "country": "Japan", "region": "Tokyo", - "city": "Hatsudai", + "city": "Tokyo", "hostname": "nrt-002.vpn.privado.io", - "ip": "217.138.252.10" + "ips": [ + "217.138.252.10" + ] }, { "country": "Japan", "region": "Tokyo", - "city": "Hatsudai", + "city": "Tokyo", "hostname": "nrt-003.vpn.privado.io", - "ip": "217.138.252.17" + "ips": [ + "217.138.252.17" + ] }, { "country": "Japan", "region": "Tokyo", - "city": "Hatsudai", + "city": "Tokyo", "hostname": "nrt-004.vpn.privado.io", - "ip": "217.138.252.24" + "ips": [ + "217.138.252.24" + ] }, { "country": "Korea", "region": "Seoul", "city": "Seoul", "hostname": "icn-001.vpn.privado.io", - "ip": "169.56.73.146" - }, - { - "country": "Korea", - "region": "Seoul", - "city": "Seoul", - "hostname": "icn-002.vpn.privado.io", - "ip": "169.56.73.153" + "ips": [ + "169.56.73.146" + ] }, { "country": "Latvia", "region": "Riga", "city": "Riga", "hostname": "rix-001.vpn.privado.io", - "ip": "109.248.149.35" + "ips": [ + "109.248.149.35" + ] }, { "country": "Latvia", "region": "Riga", "city": "Riga", "hostname": "rix-002.vpn.privado.io", - "ip": "109.248.149.40" + "ips": [ + "109.248.149.40" + ] }, { "country": "Malaysia", "region": "Selangor", "city": "Petaling Jaya", "hostname": "kul-001.vpn.privado.io", - "ip": "103.246.112.229" + "ips": [ + "103.246.112.229" + ] }, { "country": "Malaysia", "region": "Selangor", "city": "Petaling Jaya", "hostname": "kul-002.vpn.privado.io", - "ip": "103.246.112.231" + "ips": [ + "103.246.112.231" + ] }, { "country": "Malaysia", "region": "Selangor", "city": "Petaling Jaya", "hostname": "kul-003.vpn.privado.io", - "ip": "103.246.112.233" + "ips": [ + "103.246.112.233" + ] }, { "country": "Malaysia", "region": "Selangor", "city": "Petaling Jaya", "hostname": "kul-004.vpn.privado.io", - "ip": "103.246.112.235" + "ips": [ + "103.246.112.235" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-001.vpn.privado.io", - "ip": "91.148.224.10" + "ips": [ + "91.148.224.10" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-002.vpn.privado.io", - "ip": "91.148.224.20" + "ips": [ + "91.148.224.20" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-003.vpn.privado.io", - "ip": "91.148.224.30" + "ips": [ + "91.148.224.30" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-004.vpn.privado.io", - "ip": "91.148.224.40" + "ips": [ + "91.148.224.40" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-005.vpn.privado.io", - "ip": "91.148.224.50" + "ips": [ + "91.148.224.50" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-006.vpn.privado.io", - "ip": "91.148.224.60" + "ips": [ + "91.148.224.60" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-007.vpn.privado.io", - "ip": "91.148.224.70" + "ips": [ + "91.148.224.70" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-008.vpn.privado.io", - "ip": "91.148.224.80" + "ips": [ + "91.148.224.80" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-009.vpn.privado.io", - "ip": "91.148.228.10" + "ips": [ + "91.148.228.10" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-010.vpn.privado.io", - "ip": "91.148.228.20" + "ips": [ + "91.148.228.20" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-011.vpn.privado.io", - "ip": "91.148.228.30" + "ips": [ + "91.148.228.30" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-012.vpn.privado.io", - "ip": "91.148.228.40" + "ips": [ + "91.148.228.40" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-013.vpn.privado.io", - "ip": "91.148.228.50" + "ips": [ + "91.148.228.50" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-014.vpn.privado.io", - "ip": "91.148.228.60" - }, - { - "country": "Netherlands", - "region": "North Holland", - "city": "Amsterdam", - "hostname": "ams-015.vpn.privado.io", - "ip": "91.148.228.70" + "ips": [ + "91.148.228.60" + ] }, { "country": "Netherlands", "region": "North Holland", "city": "Amsterdam", "hostname": "ams-016.vpn.privado.io", - "ip": "91.148.228.80" - }, - { - "country": "Netherlands", - "region": "North Holland", - "city": "Amsterdam", - "hostname": "ams-086.vpn.privado.io", - "ip": "91.148.228.138" + "ips": [ + "91.148.228.80" + ] }, { "country": "New Zealand", "region": "Auckland", "city": "Auckland", "hostname": "akl-004.vpn.privado.io", - "ip": "103.76.164.99" + "ips": [ + "103.76.164.99" + ] }, { "country": "New Zealand", "region": "Auckland", "city": "Auckland", "hostname": "akl-005.vpn.privado.io", - "ip": "103.76.164.105" + "ips": [ + "103.76.164.105" + ] }, { "country": "Norway", "region": "Oslo", "city": "Oslo", "hostname": "osl-001.vpn.privado.io", - "ip": "84.247.50.115" + "ips": [ + "84.247.50.115" + ] }, { "country": "Norway", "region": "Oslo", "city": "Oslo", "hostname": "osl-002.vpn.privado.io", - "ip": "84.247.50.119" + "ips": [ + "84.247.50.119" + ] }, { "country": "Norway", "region": "Oslo", "city": "Oslo", "hostname": "osl-003.vpn.privado.io", - "ip": "84.247.50.123" + "ips": [ + "84.247.50.123" + ] + }, + { + "country": "Philippines", + "region": "Metro Manila", + "city": "Manila", + "hostname": "mnl-003.vpn.privado.io", + "ips": [ + "129.227.103.194" + ] + }, + { + "country": "Philippines", + "region": "Metro Manila", + "city": "Manila", + "hostname": "mnl-004.vpn.privado.io", + "ips": [ + "129.227.103.199" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-001.vpn.privado.io", - "ip": "217.138.209.163" + "ips": [ + "217.138.209.163" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-002.vpn.privado.io", - "ip": "217.138.209.164" + "ips": [ + "217.138.209.164" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-003.vpn.privado.io", - "ip": "217.138.209.165" + "ips": [ + "217.138.209.165" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-004.vpn.privado.io", - "ip": "217.138.209.166" + "ips": [ + "217.138.209.166" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-005.vpn.privado.io", - "ip": "146.59.31.2" + "ips": [ + "146.59.31.2" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-006.vpn.privado.io", - "ip": "146.59.31.4" + "ips": [ + "146.59.31.4" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-007.vpn.privado.io", - "ip": "146.59.31.6" + "ips": [ + "146.59.31.6" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-008.vpn.privado.io", - "ip": "146.59.31.8" + "ips": [ + "146.59.31.8" + ] }, { "country": "Poland", "region": "Mazovia", "city": "Warsaw", "hostname": "waw-009.vpn.privado.io", - "ip": "146.59.31.10" + "ips": [ + "146.59.31.10" + ] }, { "country": "Portugal", "region": "Lisbon", "city": "Lisbon", "hostname": "lis-001.vpn.privado.io", - "ip": "89.26.243.153" + "ips": [ + "89.26.243.153" + ] }, { "country": "Portugal", "region": "Lisbon", "city": "Lisbon", "hostname": "lis-002.vpn.privado.io", - "ip": "89.26.243.154" + "ips": [ + "89.26.243.154" + ] }, { "country": "Romania", - "region": "Bucureşti", + "region": "București", "city": "Bucharest", "hostname": "otp-001.vpn.privado.io", - "ip": "89.46.102.179" + "ips": [ + "89.46.102.179" + ] }, { "country": "Romania", - "region": "Bucureşti", + "region": "București", "city": "Bucharest", "hostname": "otp-002.vpn.privado.io", - "ip": "89.46.102.185" + "ips": [ + "89.46.102.185" + ] }, { "country": "Serbia", "region": "Central Serbia", "city": "Belgrade", "hostname": "beg-001.vpn.privado.io", - "ip": "89.38.224.19" + "ips": [ + "89.38.224.19" + ] }, { "country": "Serbia", "region": "Central Serbia", "city": "Belgrade", "hostname": "beg-002.vpn.privado.io", - "ip": "89.38.224.25" + "ips": [ + "89.38.224.25" + ] }, { "country": "Singapore", "region": "Singapore", "city": "Singapore", "hostname": "sin-001.vpn.privado.io", - "ip": "92.119.178.131" + "ips": [ + "92.119.178.131" + ] }, { "country": "Singapore", "region": "Singapore", "city": "Singapore", "hostname": "sin-002.vpn.privado.io", - "ip": "92.119.178.138" + "ips": [ + "92.119.178.138" + ] }, { "country": "Singapore", "region": "Singapore", "city": "Singapore", "hostname": "sin-003.vpn.privado.io", - "ip": "92.119.178.145" + "ips": [ + "92.119.178.145" + ] }, { "country": "Singapore", "region": "Singapore", "city": "Singapore", "hostname": "sin-004.vpn.privado.io", - "ip": "92.119.178.152" + "ips": [ + "92.119.178.152" + ] + }, + { + "country": "Slovakia", + "region": "Bratislavský Kraj", + "city": "Bratislava", + "hostname": "ath-001.vpn.privado.io", + "ips": [ + "188.123.126.61" + ] + }, + { + "country": "Slovakia", + "region": "Bratislavský Kraj", + "city": "Bratislava", + "hostname": "ath-002.vpn.privado.io", + "ips": [ + "188.123.126.64" + ] + }, + { + "country": "Slovakia", + "region": "Bratislavský Kraj", + "city": "Bratislava", + "hostname": "ath-003.vpn.privado.io", + "ips": [ + "188.123.126.68" + ] + }, + { + "country": "Slovakia", + "region": "Bratislavský Kraj", + "city": "Bratislava", + "hostname": "ath-004.vpn.privado.io", + "ips": [ + "188.123.126.72" + ] }, { "country": "Slovakia", "region": "Bratislavský Kraj", "city": "Bratislava", "hostname": "bts-001.vpn.privado.io", - "ip": "37.120.221.227" + "ips": [ + "37.120.221.227" + ] }, { "country": "Slovakia", "region": "Bratislavský Kraj", "city": "Bratislava", "hostname": "bts-002.vpn.privado.io", - "ip": "37.120.221.233" + "ips": [ + "37.120.221.233" + ] }, { - "country": "South Africa", - "region": "Gauteng", - "city": "Johannesburg", - "hostname": "jnb-001.vpn.privado.io", - "ip": "172.107.93.131" + "country": "Slovenia", + "region": "Ljubljana", + "city": "Ljubljana", + "hostname": "lju-001.vpn.privado.io", + "ips": [ + "195.158.249.130" + ] + }, + { + "country": "Slovenia", + "region": "Ljubljana", + "city": "Ljubljana", + "hostname": "lju-002.vpn.privado.io", + "ips": [ + "195.158.249.135" + ] + }, + { + "country": "Slovenia", + "region": "Ljubljana", + "city": "Ljubljana", + "hostname": "lju-003.vpn.privado.io", + "ips": [ + "195.158.249.140" + ] + }, + { + "country": "Slovenia", + "region": "Ljubljana", + "city": "Ljubljana", + "hostname": "lju-004.vpn.privado.io", + "ips": [ + "195.158.249.145" + ] }, { "country": "South Africa", "region": "Gauteng", "city": "Johannesburg", "hostname": "jnb-002.vpn.privado.io", - "ip": "172.107.93.137" - }, - { - "country": "Spain", - "region": "Madrid", - "city": "Madrid", - "hostname": "mad-001.vpn.privado.io", - "ip": "217.138.218.131" + "ips": [ + "172.107.93.137" + ] }, { "country": "Spain", "region": "Madrid", "city": "Madrid", "hostname": "mad-002.vpn.privado.io", - "ip": "217.138.218.138" + "ips": [ + "217.138.218.138" + ] }, { "country": "Spain", "region": "Madrid", "city": "Madrid", "hostname": "mad-003.vpn.privado.io", - "ip": "217.138.218.145" + "ips": [ + "217.138.218.145" + ] }, { "country": "Spain", "region": "Madrid", "city": "Madrid", "hostname": "mad-004.vpn.privado.io", - "ip": "217.138.218.152" + "ips": [ + "217.138.218.152" + ] }, { "country": "Sweden", "region": "Stockholm", "city": "Stockholm", "hostname": "arn-001.vpn.privado.io", - "ip": "86.106.103.67" + "ips": [ + "86.106.103.67" + ] }, { "country": "Sweden", "region": "Stockholm", "city": "Stockholm", "hostname": "arn-002.vpn.privado.io", - "ip": "86.106.103.74" + "ips": [ + "86.106.103.74" + ] }, { "country": "Sweden", "region": "Stockholm", "city": "Stockholm", "hostname": "arn-003.vpn.privado.io", - "ip": "86.106.103.81" + "ips": [ + "86.106.103.81" + ] }, { "country": "Sweden", "region": "Stockholm", "city": "Stockholm", "hostname": "arn-004.vpn.privado.io", - "ip": "86.106.103.88" + "ips": [ + "86.106.103.88" + ] }, { "country": "Switzerland", "region": "Zurich", "city": "Zürich", "hostname": "zrh-001.vpn.privado.io", - "ip": "185.156.175.195" + "ips": [ + "185.156.175.195" + ] }, { "country": "Switzerland", "region": "Zurich", "city": "Zürich", "hostname": "zrh-002.vpn.privado.io", - "ip": "185.156.175.202" + "ips": [ + "185.156.175.202" + ] }, { "country": "Switzerland", "region": "Zurich", "city": "Zürich", "hostname": "zrh-003.vpn.privado.io", - "ip": "185.156.175.209" + "ips": [ + "185.156.175.209" + ] }, { "country": "Switzerland", "region": "Zurich", "city": "Zürich", "hostname": "zrh-004.vpn.privado.io", - "ip": "185.156.175.216" + "ips": [ + "185.156.175.216" + ] }, { "country": "Taiwan", "region": "Taiwan", "city": "Taipei", "hostname": "tsa-001.vpn.privado.io", - "ip": "129.227.49.163" + "ips": [ + "129.227.49.163" + ] }, { "country": "Taiwan", "region": "Taiwan", "city": "Taipei", "hostname": "tsa-002.vpn.privado.io", - "ip": "129.227.49.165" + "ips": [ + "129.227.49.165" + ] }, { "country": "Taiwan", "region": "Taiwan", "city": "Taipei", "hostname": "tsa-003.vpn.privado.io", - "ip": "129.227.49.167" + "ips": [ + "129.227.49.167" + ] }, { "country": "Taiwan", "region": "Taiwan", "city": "Taipei", "hostname": "tsa-005.vpn.privado.io", - "ip": "129.227.49.171" + "ips": [ + "129.227.49.171" + ] }, { "country": "Thailand", "region": "Bangkok", "city": "Bangkok", "hostname": "bkk-001.vpn.privado.io", - "ip": "119.59.111.3" + "ips": [ + "119.59.111.3" + ] }, { "country": "Thailand", "region": "Bangkok", "city": "Bangkok", "hostname": "bkk-002.vpn.privado.io", - "ip": "119.59.111.11" + "ips": [ + "119.59.111.11" + ] }, { "country": "Turkey", "region": "Istanbul", "city": "Istanbul", "hostname": "ist-001.vpn.privado.io", - "ip": "185.84.183.3" + "ips": [ + "185.84.183.3" + ] }, { "country": "Turkey", "region": "Istanbul", "city": "Istanbul", "hostname": "ist-002.vpn.privado.io", - "ip": "185.84.183.4" + "ips": [ + "185.84.183.4" + ] }, { "country": "Ukraine", "region": "Kyiv City", "city": "Kyiv", "hostname": "iev-001.vpn.privado.io", - "ip": "176.103.52.40" + "ips": [ + "176.103.52.40" + ] }, { "country": "Ukraine", "region": "Kyiv City", "city": "Kyiv", "hostname": "iev-002.vpn.privado.io", - "ip": "176.103.53.40" + "ips": [ + "176.103.53.40" + ] }, { "country": "United Kingdom", "region": "England", "city": "London", "hostname": "lhr-001.vpn.privado.io", - "ip": "217.138.195.163" + "ips": [ + "217.138.195.163" + ] }, { "country": "United Kingdom", "region": "England", "city": "London", "hostname": "lhr-002.vpn.privado.io", - "ip": "217.138.195.168" + "ips": [ + "217.138.195.168" + ] }, { "country": "United Kingdom", "region": "England", "city": "London", "hostname": "lhr-003.vpn.privado.io", - "ip": "217.138.195.173" + "ips": [ + "217.138.195.173" + ] }, { "country": "United Kingdom", "region": "England", "city": "London", "hostname": "lhr-004.vpn.privado.io", - "ip": "217.138.195.178" + "ips": [ + "217.138.195.178" + ] + }, + { + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "lhr-005.vpn.privado.io", + "ips": [ + "51.195.251.192" + ] + }, + { + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "lhr-006.vpn.privado.io", + "ips": [ + "51.195.251.194" + ] + }, + { + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "lhr-007.vpn.privado.io", + "ips": [ + "51.195.251.196" + ] + }, + { + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "lhr-008.vpn.privado.io", + "ips": [ + "51.195.251.198" + ] }, { "country": "United Kingdom", "region": "England", "city": "London", "hostname": "man-005.vpn.privado.io", - "ip": "77.243.177.194" + "ips": [ + "77.243.177.194" + ] + }, + { + "country": "United Kingdom", + "region": "England", + "city": "London", + "hostname": "man-006.vpn.privado.io", + "ips": [ + "77.243.177.205" + ] }, { "country": "United Kingdom", "region": "England", "city": "London", "hostname": "man-007.vpn.privado.io", - "ip": "77.243.177.216" + "ips": [ + "77.243.177.216" + ] }, { "country": "United Kingdom", "region": "England", "city": "London", "hostname": "man-008.vpn.privado.io", - "ip": "81.92.203.242" + "ips": [ + "81.92.203.242" + ] }, { "country": "United Kingdom", "region": "England", "city": "Manchester", "hostname": "man-001.vpn.privado.io", - "ip": "217.138.196.131" + "ips": [ + "217.138.196.131" + ] }, { "country": "United Kingdom", "region": "England", "city": "Manchester", "hostname": "man-002.vpn.privado.io", - "ip": "217.138.196.138" + "ips": [ + "217.138.196.138" + ] }, { "country": "United Kingdom", "region": "England", "city": "Manchester", "hostname": "man-003.vpn.privado.io", - "ip": "217.138.196.145" + "ips": [ + "217.138.196.145" + ] }, { "country": "United Kingdom", "region": "England", "city": "Manchester", "hostname": "man-004.vpn.privado.io", - "ip": "217.138.196.152" - }, - { - "country": "United Kingdom", - "region": "Wales", - "city": "Pontarddulais", - "hostname": "lhr-005.vpn.privado.io", - "ip": "51.195.251.192" - }, - { - "country": "United Kingdom", - "region": "Wales", - "city": "Pontarddulais", - "hostname": "lhr-006.vpn.privado.io", - "ip": "51.195.251.194" - }, - { - "country": "United Kingdom", - "region": "Wales", - "city": "Pontarddulais", - "hostname": "lhr-007.vpn.privado.io", - "ip": "51.195.251.196" - }, - { - "country": "United Kingdom", - "region": "Wales", - "city": "Pontarddulais", - "hostname": "lhr-008.vpn.privado.io", - "ip": "51.195.251.198" + "ips": [ + "217.138.196.152" + ] }, { "country": "United States", "region": "California", "city": "Los Angeles", "hostname": "lax-001.vpn.privado.io", - "ip": "81.171.62.3" + "ips": [ + "81.171.62.3" + ] }, { "country": "United States", "region": "California", "city": "Los Angeles", "hostname": "lax-002.vpn.privado.io", - "ip": "81.171.62.13" - }, - { - "country": "United States", - "region": "California", - "city": "Los Angeles", - "hostname": "lax-005.vpn.privado.io", - "ip": "81.171.62.70" + "ips": [ + "81.171.62.13" + ] }, { "country": "United States", "region": "California", "city": "Los Angeles", "hostname": "lax-006.vpn.privado.io", - "ip": "81.171.62.80" + "ips": [ + "81.171.62.80" + ] }, { "country": "United States", "region": "California", "city": "Los Angeles", "hostname": "lax-007.vpn.privado.io", - "ip": "81.171.62.90" - }, - { - "country": "United States", - "region": "California", - "city": "Los Angeles", - "hostname": "mex-003.vpn.privado.io", - "ip": "81.171.63.3" + "ips": [ + "81.171.62.90" + ] }, { "country": "United States", "region": "California", "city": "Los Angeles", "hostname": "mex-004.vpn.privado.io", - "ip": "81.171.63.13" - }, - { - "country": "United States", - "region": "California", - "city": "Los Angeles", - "hostname": "mex-007.vpn.privado.io", - "ip": "81.171.63.44" + "ips": [ + "81.171.63.13" + ] }, { "country": "United States", "region": "California", "city": "Los Angeles", "hostname": "mex-008.vpn.privado.io", - "ip": "81.171.63.54" + "ips": [ + "81.171.63.54" + ] + }, + { + "country": "United States", + "region": "California", + "city": "McKinleyville", + "hostname": "pdx-004.vpn.privado.io", + "ips": [ + "104.255.228.143" + ] }, { "country": "United States", "region": "Colorado", - "city": "Cherry Creek", + "city": "Denver", "hostname": "den-001.vpn.privado.io", - "ip": "173.248.141.195" + "ips": [ + "173.248.141.195" + ] }, { "country": "United States", "region": "Colorado", - "city": "Cherry Creek", + "city": "Denver", "hostname": "den-002.vpn.privado.io", - "ip": "173.248.141.197" + "ips": [ + "173.248.141.197" + ] }, { "country": "United States", "region": "Florida", "city": "Miami", "hostname": "mia-001.vpn.privado.io", - "ip": "86.106.87.131" + "ips": [ + "86.106.87.131" + ] }, { "country": "United States", "region": "Florida", "city": "Miami", "hostname": "mia-002.vpn.privado.io", - "ip": "86.106.87.136" + "ips": [ + "86.106.87.136" + ] }, { "country": "United States", "region": "Florida", "city": "Miami", "hostname": "mia-003.vpn.privado.io", - "ip": "86.106.87.141" + "ips": [ + "86.106.87.141" + ] }, { "country": "United States", "region": "Florida", "city": "Miami", "hostname": "mia-004.vpn.privado.io", - "ip": "86.106.87.146" + "ips": [ + "86.106.87.146" + ] }, { "country": "United States", "region": "Illinois", "city": "Chicago", "hostname": "ord-007.vpn.privado.io", - "ip": "23.108.95.203" + "ips": [ + "23.108.95.203" + ] }, { "country": "United States", "region": "Illinois", "city": "Chicago", "hostname": "ord-008.vpn.privado.io", - "ip": "23.108.95.222" + "ips": [ + "23.108.95.222" + ] }, { "country": "United States", "region": "Illinois", "city": "Chicago", "hostname": "ord-009.vpn.privado.io", - "ip": "23.108.95.224" + "ips": [ + "23.108.95.224" + ] }, { "country": "United States", "region": "Illinois", "city": "Chicago", "hostname": "ord-010.vpn.privado.io", - "ip": "23.108.95.226" + "ips": [ + "23.108.95.226" + ] }, { "country": "United States", "region": "Illinois", "city": "Chicago", "hostname": "ord-011.vpn.privado.io", - "ip": "23.108.95.228" + "ips": [ + "23.108.95.228" + ] + }, + { + "country": "United States", + "region": "Illinois", + "city": "Elk Grove Village", + "hostname": "ord-005.vpn.privado.io", + "ips": [ + "23.254.112.145" + ] + }, + { + "country": "United States", + "region": "Illinois", + "city": "Elk Grove Village", + "hostname": "ord-006.vpn.privado.io", + "ips": [ + "23.254.112.152" + ] }, { "country": "United States", "region": "Missouri", "city": "St. Louis", "hostname": "stl-001.vpn.privado.io", - "ip": "148.72.170.145" - }, - { - "country": "United States", - "region": "Missouri", - "city": "St. Louis", - "hostname": "stl-002.vpn.privado.io", - "ip": "148.72.172.82" + "ips": [ + "148.72.170.145" + ] }, { "country": "United States", "region": "New York", "city": "New York City", "hostname": "jfk-001.vpn.privado.io", - "ip": "217.138.208.99" + "ips": [ + "217.138.208.99" + ] }, { "country": "United States", "region": "New York", "city": "New York City", "hostname": "jfk-002.vpn.privado.io", - "ip": "217.138.208.106" + "ips": [ + "217.138.208.106" + ] }, { "country": "United States", "region": "New York", "city": "New York City", - "hostname": "jfk-009.vpn.privado.io", - "ip": "23.19.225.65" + "hostname": "jfk-005.vpn.privado.io", + "ips": [ + "37.120.244.3" + ] + }, + { + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "jfk-006.vpn.privado.io", + "ips": [ + "37.120.244.10" + ] + }, + { + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "jfk-007.vpn.privado.io", + "ips": [ + "37.120.244.17" + ] + }, + { + "country": "United States", + "region": "New York", + "city": "New York City", + "hostname": "jfk-008.vpn.privado.io", + "ips": [ + "37.120.244.24" + ] }, { "country": "United States", "region": "New York", "city": "New York City", "hostname": "jfk-010.vpn.privado.io", - "ip": "23.19.225.67" + "ips": [ + "23.19.225.67" + ] }, { "country": "United States", "region": "New York", "city": "New York City", "hostname": "jfk-011.vpn.privado.io", - "ip": "23.19.225.69" - }, - { - "country": "United States", - "region": "New York", - "city": "New York City", - "hostname": "jfk-038.vpn.privado.io", - "ip": "209.240.97.67" + "ips": [ + "23.19.225.69" + ] }, { "country": "United States", "region": "New York", "city": "New York City", "hostname": "jfk-039.vpn.privado.io", - "ip": "209.240.97.72" + "ips": [ + "209.240.97.72" + ] + }, + { + "country": "United States", + "region": "New York", + "city": "Woodridge", + "hostname": "jfk-038.vpn.privado.io", + "ips": [ + "209.240.97.67" + ] + }, + { + "country": "United States", + "region": "Oregon", + "city": "Deschutes River Woods", + "hostname": "pdx-003.vpn.privado.io", + "ips": [ + "104.255.228.139" + ] + }, + { + "country": "United States", + "region": "Oregon", + "city": "Deschutes River Woods", + "hostname": "pdx-018.vpn.privado.io", + "ips": [ + "104.255.228.203" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-001.vpn.privado.io", - "ip": "23.105.32.243" + "ips": [ + "23.105.32.243" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-002.vpn.privado.io", - "ip": "23.105.32.244" + "ips": [ + "23.105.32.244" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-003.vpn.privado.io", - "ip": "172.241.25.157" + "ips": [ + "172.241.25.157" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-004.vpn.privado.io", - "ip": "172.241.25.159" + "ips": [ + "172.241.25.159" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-005.vpn.privado.io", - "ip": "172.241.25.161" + "ips": [ + "172.241.25.161" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-006.vpn.privado.io", - "ip": "172.241.25.163" + "ips": [ + "172.241.25.163" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-007.vpn.privado.io", - "ip": "172.241.25.165" + "ips": [ + "172.241.25.165" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-008.vpn.privado.io", - "ip": "172.241.25.167" + "ips": [ + "172.241.25.167" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-009.vpn.privado.io", - "ip": "172.241.25.169" + "ips": [ + "172.241.25.169" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-010.vpn.privado.io", - "ip": "172.241.25.171" + "ips": [ + "172.241.25.171" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-011.vpn.privado.io", - "ip": "172.241.25.173" + "ips": [ + "172.241.25.173" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-012.vpn.privado.io", - "ip": "172.241.25.175" + "ips": [ + "172.241.25.175" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-013.vpn.privado.io", - "ip": "172.241.25.177" + "ips": [ + "172.241.25.177" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-014.vpn.privado.io", - "ip": "172.241.25.179" + "ips": [ + "172.241.25.179" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-034.vpn.privado.io", - "ip": "146.70.58.35" + "ips": [ + "146.70.58.35" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-035.vpn.privado.io", - "ip": "146.70.58.40" + "ips": [ + "146.70.58.40" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-036.vpn.privado.io", - "ip": "146.70.58.45" + "ips": [ + "146.70.58.45" + ] }, { "country": "United States", "region": "Texas", "city": "Dallas", "hostname": "dfw-037.vpn.privado.io", - "ip": "146.70.58.50" + "ips": [ + "146.70.58.50" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-001.vpn.privado.io", - "ip": "85.12.61.10" + "ips": [ + "85.12.61.10" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-002.vpn.privado.io", - "ip": "85.12.61.20" + "ips": [ + "85.12.61.20" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-003.vpn.privado.io", - "ip": "85.12.61.30" + "ips": [ + "85.12.61.30" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-004.vpn.privado.io", - "ip": "85.12.61.40" + "ips": [ + "85.12.61.40" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", - "hostname": "dca-005.vpn.privado.io", - "ip": "85.12.61.50" - }, - { - "country": "United States", - "region": "Virginia", - "city": "Arlington", - "hostname": "dca-007.vpn.privado.io", - "ip": "85.12.61.70" - }, - { - "country": "United States", - "region": "Virginia", - "city": "Arlington", - "hostname": "dca-008.vpn.privado.io", - "ip": "85.12.61.80" - }, - { - "country": "United States", - "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-009.vpn.privado.io", - "ip": "85.12.61.90" + "ips": [ + "85.12.61.90" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-011.vpn.privado.io", - "ip": "85.12.61.110" + "ips": [ + "85.12.61.110" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-012.vpn.privado.io", - "ip": "85.12.61.120" + "ips": [ + "85.12.61.120" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-015.vpn.privado.io", - "ip": "85.12.61.172" + "ips": [ + "85.12.61.172" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-016.vpn.privado.io", - "ip": "85.12.61.177" + "ips": [ + "85.12.61.177" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-017.vpn.privado.io", - "ip": "85.12.61.182" + "ips": [ + "85.12.61.182" + ] }, { "country": "United States", "region": "Virginia", - "city": "Arlington", - "hostname": "dca-018.vpn.privado.io", - "ip": "85.12.61.187" - }, - { - "country": "United States", - "region": "Virginia", - "city": "Arlington", + "city": "Ashburn", "hostname": "dca-086.vpn.privado.io", - "ip": "85.12.61.9" + "ips": [ + "85.12.61.9" + ] + }, + { + "country": "United States", + "region": "Washington", + "city": "Federal Way", + "hostname": "pdx-016.vpn.privado.io", + "ips": [ + "104.255.228.195" + ] + }, + { + "country": "United States", + "region": "Washington", + "city": "Federal Way", + "hostname": "pdx-017.vpn.privado.io", + "ips": [ + "104.255.228.199" + ] + }, + { + "country": "United States", + "region": "Washington", + "city": "Federal Way", + "hostname": "pdx-019.vpn.privado.io", + "ips": [ + "104.255.228.207" + ] }, { "country": "United States", "region": "Washington", "city": "Martha Lake", "hostname": "pdx-001.vpn.privado.io", - "ip": "104.255.228.131" + "ips": [ + "104.255.228.131" + ] }, { "country": "United States", "region": "Washington", "city": "Martha Lake", "hostname": "pdx-002.vpn.privado.io", - "ip": "104.255.228.135" - }, - { - "country": "United States", - "region": "Washington", - "city": "Martha Lake", - "hostname": "pdx-003.vpn.privado.io", - "ip": "104.255.228.139" - }, - { - "country": "United States", - "region": "Washington", - "city": "Martha Lake", - "hostname": "pdx-004.vpn.privado.io", - "ip": "104.255.228.143" - }, - { - "country": "United States", - "region": "Washington", - "city": "Martha Lake", - "hostname": "pdx-016.vpn.privado.io", - "ip": "104.255.228.195" - }, - { - "country": "United States", - "region": "Washington", - "city": "Martha Lake", - "hostname": "pdx-017.vpn.privado.io", - "ip": "104.255.228.199" - }, - { - "country": "United States", - "region": "Washington", - "city": "Martha Lake", - "hostname": "pdx-018.vpn.privado.io", - "ip": "104.255.228.203" - }, - { - "country": "United States", - "region": "Washington", - "city": "Martha Lake", - "hostname": "pdx-019.vpn.privado.io", - "ip": "104.255.228.207" + "ips": [ + "104.255.228.135" + ] }, { "country": "United States", "region": "Washington", "city": "Seattle", "hostname": "sea-001.vpn.privado.io", - "ip": "23.81.208.96" + "ips": [ + "23.81.208.96" + ] }, { "country": "United States", "region": "Washington", "city": "Seattle", "hostname": "sea-002.vpn.privado.io", - "ip": "23.81.208.104" + "ips": [ + "23.81.208.104" + ] }, { "country": "United States", "region": "Washington", "city": "Seattle", "hostname": "sea-003.vpn.privado.io", - "ip": "23.19.87.109" + "ips": [ + "23.19.87.109" + ] }, { "country": "United States", "region": "Washington", "city": "Seattle", "hostname": "sea-004.vpn.privado.io", - "ip": "23.19.87.116" - }, - { - "country": "United States", - "region": "Washington", - "city": "Seattle", - "hostname": "sea-005.vpn.privado.io", - "ip": "98.96.202.130" + "ips": [ + "23.19.87.116" + ] }, { "country": "United States", "region": "Washington", "city": "Seattle", "hostname": "sea-006.vpn.privado.io", - "ip": "98.96.202.135" - }, - { - "country": "United States", - "region": "Washington", - "city": "Seattle", - "hostname": "sea-007.vpn.privado.io", - "ip": "98.96.202.140" + "ips": [ + "98.96.202.135" + ] }, { "country": "United States", "region": "Washington", "city": "Seattle", "hostname": "sea-008.vpn.privado.io", - "ip": "98.96.202.145" + "ips": [ + "98.96.202.145" + ] }, { "country": "United States", "region": "Washington, D.C.", "city": "Washington", "hostname": "dca-013.vpn.privado.io", - "ip": "185.247.68.3" + "ips": [ + "185.247.68.3" + ] }, { "country": "United States", "region": "Washington, D.C.", "city": "Washington", "hostname": "dca-014.vpn.privado.io", - "ip": "185.247.68.14" + "ips": [ + "185.247.68.14" + ] } ] }, @@ -82181,2123 +93560,2624 @@ { "country": "Australia", "city": "Melbourne", - "hostname": "au-mel.pvdata.host", - "ip": [ - "103.231.88.203" - ] + "hostname": "au-mel.pvdata.host" }, { "country": "Australia", "city": "Sydney1", - "hostname": "au-syd.pvdata.host", - "ip": [ - "143.244.63.96" - ] + "hostname": "au-syd.pvdata.host" }, { "country": "Austria", "city": "Wien", - "hostname": "at-wie.pvdata.host", - "ip": [ - "185.9.19.91" - ] + "hostname": "at-wie.pvdata.host" }, { "country": "Belgium", "city": "Brussels", - "hostname": "be-bru.pvdata.host", - "ip": [ - "185.104.186.211" - ] + "hostname": "be-bru.pvdata.host" }, { "country": "Brazil", "city": "SaoPaulo", - "hostname": "br-sao.pvdata.host", - "ip": [ - "45.162.230.59" - ] + "hostname": "br-sao.pvdata.host" }, { "country": "Bulgaria", "city": "Sofia", - "hostname": "bg-sof.pvdata.host", - "ip": [ - "185.94.192.163" - ] + "hostname": "bg-sof.pvdata.host" }, { "country": "Canada", "city": "Montreal", - "hostname": "ca-mon.pvdata.host", - "ip": [ - "37.120.237.163", - "87.101.92.131" - ] + "hostname": "ca-mon.pvdata.host" }, { "country": "Canada", "city": "Vancouver", - "hostname": "ca-van.pvdata.host", - "ip": [ - "74.3.160.19" - ] + "hostname": "ca-van.pvdata.host" }, { "country": "Chile", "city": "Santiago", - "hostname": "cl-san.pvdata.host", - "ip": [ - "216.241.14.227" - ] + "hostname": "cl-san.pvdata.host" }, { "country": "Colombia", "city": "Bogota", - "hostname": "co-bog.pvdata.host", - "ip": [ - "201.217.220.27" - ] + "hostname": "co-bog.pvdata.host" }, { "country": "Costa Rica", "city": "SanJose", - "hostname": "cr-san.pvdata.host", - "ip": [ - "190.10.8.218" - ] + "hostname": "cr-san.pvdata.host" }, { "country": "Croatia", "city": "Zagreb", - "hostname": "hr-zag.pvdata.host", - "ip": [ - "85.10.56.127" - ] + "hostname": "hr-zag.pvdata.host" }, { "country": "Cyprus", "city": "Nicosia", - "hostname": "cy-nic.pvdata.host", - "ip": [ - "185.173.226.47" - ] + "hostname": "cy-nic.pvdata.host" }, { "country": "Czech Republic", "city": "Prague", - "hostname": "cz-pra.pvdata.host", - "ip": [ - "185.156.174.179" - ] + "hostname": "cz-pra.pvdata.host" }, { "country": "Denmark", "city": "Copenhagen", - "hostname": "dk-cop.pvdata.host", - "ip": [ - "62.115.255.188", - "62.115.255.189" - ] + "hostname": "dk-cop.pvdata.host" }, { "country": "France", "city": "Paris1", - "hostname": "fr-par.pvdata.host", - "ip": [ - "80.239.199.102", - "80.239.199.103", - "80.239.199.104", - "80.239.199.105" - ] + "hostname": "fr-par.pvdata.host" }, { "country": "Germany", "city": "Frankfurt1", - "hostname": "de-fra.pvdata.host", - "ip": [ - "193.180.119.130", - "193.180.119.131" - ] + "hostname": "de-fra.pvdata.host" }, { "country": "Germany", "city": "Nuremberg", - "hostname": "de-nur.pvdata.host", - "ip": [ - "185.89.36.3" - ] + "hostname": "de-nur.pvdata.host" }, { "country": "Greece", "city": "Athens", - "hostname": "gr-ath.pvdata.host", - "ip": [ - "154.57.3.33" - ] + "hostname": "gr-ath.pvdata.host" }, { "country": "Hong Kong", "city": "HongKong", - "hostname": "hk-hon.pvdata.host", - "ip": [ - "84.17.37.58" - ] + "hostname": "hk-hon.pvdata.host" }, { "country": "Hungary", "city": "Budapest", - "hostname": "hu-bud.pvdata.host", - "ip": [ - "185.104.187.67" - ] + "hostname": "hu-bud.pvdata.host" }, { "country": "Iceland", "city": "Reykjavik", - "hostname": "is-rey.pvdata.host", - "ip": [ - "82.221.113.210" - ] + "hostname": "is-rey.pvdata.host" }, { "country": "Indonesia", "city": "Jakarta", - "hostname": "id-jak.pvdata.host", - "ip": [ - "23.248.170.136" - ] + "hostname": "id-jak.pvdata.host" }, { "country": "Ireland", "city": "Dublin", - "hostname": "ie-dub.pvdata.host", - "ip": [ - "217.138.222.67" - ] + "hostname": "ie-dub.pvdata.host" }, { "country": "Isle of Man", "city": "Ballasalla", - "hostname": "im-bal.pvdata.host", - "ip": [ - "81.27.96.89" - ] + "hostname": "im-bal.pvdata.host" }, { "country": "Italy", "city": "Milan", - "hostname": "it-mil.pvdata.host", - "ip": [ - "217.212.240.90", - "217.212.240.91", - "217.212.240.92", - "217.212.240.93" - ] + "hostname": "it-mil.pvdata.host" }, { "country": "Japan", "city": "Tokyo1", - "hostname": "jp-tok.pvdata.host", - "ip": [ - "89.187.160.154", - "89.187.161.142" - ] + "hostname": "jp-tok.pvdata.host" }, { "country": "Korea", "city": "Seoul", - "hostname": "kr-seo.pvdata.host", - "ip": [ - "92.223.73.37" - ] + "hostname": "kr-seo.pvdata.host" }, { "country": "Latvia", "city": "Riga", - "hostname": "lv-rig.pvdata.host", - "ip": [ - "217.199.103.164" - ] + "hostname": "lv-rig.pvdata.host" }, { "country": "Lithuania", "city": "Siauliai", - "hostname": "lt-sia.pvdata.host", - "ip": [ - "185.64.104.48" - ] + "hostname": "lt-sia.pvdata.host" }, { "country": "Luxembourg", "city": "Steinsel", - "hostname": "lu-ste.pvdata.host", - "ip": [ - "94.242.250.71" - ] + "hostname": "lu-ste.pvdata.host" }, { "country": "Malaysia", "city": "KualaLumpur", - "hostname": "my-kua.pvdata.host", - "ip": [ - "128.1.160.184" - ] + "hostname": "my-kua.pvdata.host" }, { "country": "Malta", "city": "Qormi", - "hostname": "mt-qor.pvdata.host", - "ip": [ - "130.185.255.25" - ] + "hostname": "mt-qor.pvdata.host" }, { "country": "Mexico", "city": "MexicoCity", - "hostname": "mx-mex.pvdata.host", - "ip": [ - "190.60.16.28" - ] + "hostname": "mx-mex.pvdata.host" }, { "country": "Moldova", "city": "Chisinau", - "hostname": "md-chi.pvdata.host", - "ip": [ - "178.17.172.99" - ] + "hostname": "md-chi.pvdata.host" }, { "country": "Netherlands", "city": "Amsterdam1", - "hostname": "nl-ams.pvdata.host", - "ip": [ - "193.180.119.194", - "193.180.119.195", - "193.180.119.196", - "193.180.119.197" - ] + "hostname": "nl-ams.pvdata.host" }, { "country": "New Zealand", "city": "Auckland", - "hostname": "nz-auc.pvdata.host", - "ip": [ - "45.252.191.34" - ] + "hostname": "nz-auc.pvdata.host" }, { "country": "Norway", "city": "Oslo", - "hostname": "no-osl.pvdata.host", - "ip": [ - "91.205.186.26" - ] + "hostname": "no-osl.pvdata.host" }, { "country": "Panama", "city": "PanamaCity", - "hostname": "pa-pan.pvdata.host", - "ip": [ - "200.110.155.235" - ] + "hostname": "pa-pan.pvdata.host" }, { "country": "Peru", "city": "Lima", - "hostname": "pe-lim.pvdata.host", - "ip": [ - "170.0.81.107" - ] + "hostname": "pe-lim.pvdata.host" }, { "country": "Philippines", "city": "Manila", - "hostname": "ph-man.pvdata.host", - "ip": [ - "128.1.209.12" - ] + "hostname": "ph-man.pvdata.host" }, { "country": "Poland", "city": "Torun", - "hostname": "pl-tor.pvdata.host", - "ip": [ - "91.236.55.255", - "185.72.199.130" - ] + "hostname": "pl-tor.pvdata.host" }, { "country": "Portugal", "city": "Lisbon", - "hostname": "pt-lis.pvdata.host", - "ip": [ - "130.185.85.107" - ] + "hostname": "pt-lis.pvdata.host" }, { "country": "Romania", "city": "Bukarest", - "hostname": "ro-buk.pvdata.host", - "ip": [ - "89.40.181.203" - ] + "hostname": "ro-buk.pvdata.host" }, { "country": "Russian Federation", "city": "Krasnoyarsk", - "hostname": "ru-kra.pvdata.host", - "ip": [ - "92.223.87.11" - ] + "hostname": "ru-kra.pvdata.host" }, { "country": "Russian Federation", "city": "Moscow", - "hostname": "ru-mos.pvdata.host", - "ip": [ - "92.223.103.138" - ] + "hostname": "ru-mos.pvdata.host" }, { "country": "Russian Federation", "city": "StPetersburg", - "hostname": "ru-pet.pvdata.host", - "ip": [ - "95.213.148.99" - ] + "hostname": "ru-pet.pvdata.host" }, { "country": "Serbia", "city": "Belgrade", - "hostname": "rs-bel.pvdata.host", - "ip": [ - "141.98.103.166" - ] + "hostname": "rs-bel.pvdata.host" }, { "country": "Slovakia", "city": "Bratislava", - "hostname": "sg-sin.pvdata.host", - "ip": [ - "143.244.33.81" - ] + "hostname": "sg-sin.pvdata.host" }, { "country": "Slovakia", "city": "Bratislava", - "hostname": "sk-bra.pvdata.host", - "ip": [ - "46.29.2.168" - ] + "hostname": "sk-bra.pvdata.host" }, { "country": "South Africa", "city": "Johannesburg", - "hostname": "za-joh.pvdata.host", - "ip": [ - "129.232.185.115", - "129.232.209.235" - ] + "hostname": "za-joh.pvdata.host" }, { "country": "Spain", "city": "Madrid", - "hostname": "es-mad.pvdata.host", - "ip": [ - "217.212.244.92", - "217.212.244.93" - ] + "hostname": "es-mad.pvdata.host" }, { "country": "Sweden", "city": "Gothenburg", - "hostname": "se-got.pvdata.host", - "ip": [ - "193.187.91.19", - "193.187.91.21" - ] + "hostname": "se-got.pvdata.host" }, { "country": "Sweden", "city": "Kista", - "hostname": "se-kis.pvdata.host", - "ip": [ - "193.187.88.216", - "193.187.88.217", - "193.187.88.218", - "193.187.88.219", - "193.187.88.220", - "193.187.88.221", - "193.187.88.222" - ] + "hostname": "se-kis.pvdata.host" + }, + { + "country": "Sweden", + "city": "Stockholm" }, { "country": "Sweden", "city": "Stockholm", - "ip": [ - "193.180.119.2" - ] - }, - { - "country": "Sweden", - "city": "Stockholm", - "hostname": "se-sto.pvdata.host", - "ip": [ - "45.130.87.3", - "45.130.87.5", - "45.130.87.7", - "45.130.87.9", - "45.130.87.12", - "45.130.87.14", - "45.130.87.16", - "45.130.87.18" - ] + "hostname": "se-sto.pvdata.host" }, { "country": "Switzerland", "city": "Zurich1", - "hostname": "ch-zur.pvdata.host", - "ip": [ - "217.212.245.92", - "217.212.245.93" - ] + "hostname": "ch-zur.pvdata.host" }, { "country": "Taiwan", "city": "Taipei", - "hostname": "tw-tai.pvdata.host", - "ip": [ - "2.58.241.51" - ] + "hostname": "tw-tai.pvdata.host" }, { "country": "Thailand", "city": "Bangkok", - "hostname": "th-ban.pvdata.host", - "ip": [ - "103.27.203.234" - ] + "hostname": "th-ban.pvdata.host" }, { "country": "Turkey", "city": "Istanbul", - "hostname": "tr-ist.pvdata.host", - "ip": [ - "92.38.180.28" - ] + "hostname": "tr-ist.pvdata.host" }, { "country": "Ukraine", "city": "Kiev", - "hostname": "ua-kie.pvdata.host", - "ip": [ - "192.121.68.131" - ] + "hostname": "ua-kie.pvdata.host" }, { "country": "Ukraine", "city": "Nikolaev", - "hostname": "ua-nik.pvdata.host", - "ip": [ - "194.54.83.21" - ] + "hostname": "ua-nik.pvdata.host" }, { "country": "United Arab Emirates", "city": "Dubai", - "hostname": "ae-dub.pvdata.host", - "ip": [ - "45.9.249.59" - ] + "hostname": "ae-dub.pvdata.host" }, { "country": "United Kingdom", "city": "London1", - "hostname": "uk-lon.pvdata.host", - "ip": [ - "193.180.119.66", - "193.180.119.67", - "193.180.119.68", - "193.180.119.69", - "193.180.119.70", - "193.180.119.72" - ] + "hostname": "uk-lon.pvdata.host" }, { "country": "United Kingdom", "city": "London2", - "hostname": "uk-lon2.pvdata.host", - "ip": [ - "185.41.242.67" - ] + "hostname": "uk-lon2.pvdata.host" }, { "country": "United Kingdom", "city": "London7", - "hostname": "uk-lon7.pvdata.host", - "ip": [ - "185.125.204.179" - ] + "hostname": "uk-lon7.pvdata.host" }, { "country": "United Kingdom", "city": "Manchester", - "hostname": "uk-man.pvdata.host", - "ip": [ - "185.206.227.181" - ] + "hostname": "uk-man.pvdata.host" }, { "country": "United States", "city": "Atlanta", - "hostname": "us-atl.pvdata.host", - "ip": [ - "89.187.170.130", - "138.199.2.53" - ] + "hostname": "us-atl.pvdata.host" }, { "country": "United States", "city": "Buffalo", - "hostname": "us-buf.pvdata.host", - "ip": [ - "172.245.13.115", - "192.210.199.35" - ] + "hostname": "us-buf.pvdata.host" }, { "country": "United States", "city": "Chicago1", - "hostname": "us-chi.pvdata.host", - "ip": [ - "143.244.60.90", - "185.93.1.114" - ] + "hostname": "us-chi.pvdata.host" }, { "country": "United States", "city": "Dallas", - "hostname": "us-dal.pvdata.host", - "ip": [ - "89.187.164.97" - ] + "hostname": "us-dal.pvdata.host" }, { "country": "United States", "city": "LasVegas", - "hostname": "us-las.pvdata.host", - "ip": [ - "82.102.30.19" - ] + "hostname": "us-las.pvdata.host" }, { "country": "United States", "city": "LosAngeles", - "hostname": "us-los.pvdata.host", - "ip": [ - "89.187.185.78", - "185.152.67.132" - ] + "hostname": "us-los.pvdata.host" }, { "country": "United States", "city": "Miami", - "hostname": "us-mia.pvdata.host", - "ip": [ - "195.181.163.139" - ] + "hostname": "us-mia.pvdata.host" }, { "country": "United States", "city": "NewYork1", - "hostname": "us-nyc.pvdata.host", - "ip": [ - "45.130.86.3", - "45.130.86.5", - "45.130.86.8", - "45.130.86.10", - "45.130.86.12" - ] + "hostname": "us-nyc.pvdata.host" }, { "country": "United States", "city": "Phoenix", - "hostname": "us-pho.pvdata.host", - "ip": [ - "82.102.30.131" - ] + "hostname": "us-pho.pvdata.host" }, { "country": "Vietnam", "city": "HoChiMinhCity", - "hostname": "vn-hoc.pvdata.host", - "ip": [ - "210.2.64.5" - ] + "hostname": "vn-hoc.pvdata.host" } ] }, "protonvpn": { - "version": 3, - "timestamp": 1650131556, + "version": 2, + "timestamp": 1650138605, "servers": [ { "country": "Argentina", "server_name": "CH-AR#1", "hostname": "ch-ar-01a.protonvpn.net", - "entry_ip": "185.159.157.186" + "ips": [ + "185.159.157.186" + ] }, { "country": "Argentina", "city": "Buenos Aires", "server_name": "AR#17", "hostname": "ar-17.protonvpn.net", - "entry_ip": "66.90.72.171" + "ips": [ + "66.90.72.171", + "66.90.72.171", + "66.90.72.171" + ] }, { "country": "Argentina", "city": "Buenos Aires", "server_name": "AR#20", "hostname": "node-ar-03.protonvpn.net", - "entry_ip": "66.90.72.170" + "ips": [ + "66.90.72.170", + "66.90.72.170", + "66.90.72.170", + "66.90.72.170", + "66.90.72.170" + ] }, { "country": "Australia", "server_name": "CH-AU#1", "hostname": "ch-au-01a.protonvpn.net", - "entry_ip": "185.159.157.50" + "ips": [ + "185.159.157.50" + ] }, { "country": "Australia", "server_name": "CH-AU#1", "hostname": "ch-au-01b.protonvpn.net", - "entry_ip": "185.159.157.51" + "ips": [ + "185.159.157.51" + ] }, { "country": "Australia", "server_name": "CH-AU#1", "hostname": "ch-au-01c.protonvpn.net", - "entry_ip": "185.159.157.55" + "ips": [ + "185.159.157.55" + ] }, { "country": "Australia", "server_name": "SE-AU#1", "hostname": "se-au-01a.protonvpn.net", - "entry_ip": "185.159.156.55" + "ips": [ + "185.159.156.55" + ] }, { "country": "Australia", "server_name": "SE-AU#1", "hostname": "se-au-01b.protonvpn.net", - "entry_ip": "185.159.156.79" + "ips": [ + "185.159.156.79" + ] }, { "country": "Australia", "server_name": "SE-AU#1", "hostname": "se-au-01c.protonvpn.net", - "entry_ip": "185.159.156.80" + "ips": [ + "185.159.156.80" + ] }, { "country": "Australia", "city": "Adelaide", "server_name": "AU#37", "hostname": "au-37.protonvpn.net", - "entry_ip": "116.206.231.187" + "ips": [ + "116.206.231.187" + ] }, { "country": "Australia", "city": "Adelaide", "server_name": "AU#38", "hostname": "node-au-09.protonvpn.net", - "entry_ip": "116.206.231.186" + "ips": [ + "116.206.231.186", + "116.206.231.186", + "116.206.231.186" + ] }, { "country": "Australia", "city": "Brisbane", "server_name": "AU#41", "hostname": "au-41.protonvpn.net", - "entry_ip": "103.108.95.147" + "ips": [ + "103.108.95.147" + ] }, { "country": "Australia", "city": "Brisbane", "server_name": "AU#42", "hostname": "node-au-10.protonvpn.net", - "entry_ip": "103.108.95.146" + "ips": [ + "103.108.95.146", + "103.108.95.146", + "103.108.95.146" + ] }, { "country": "Australia", "city": "Perth", "server_name": "AU#17", "hostname": "au-17.protonvpn.net", - "entry_ip": "103.107.196.203" + "ips": [ + "103.107.196.203" + ] }, { "country": "Australia", "city": "Perth", "server_name": "AU#18", "hostname": "node-au-05.protonvpn.net", - "entry_ip": "103.107.196.202" + "ips": [ + "103.107.196.202", + "103.107.196.202", + "103.107.196.202" + ] }, { "country": "Australia", "city": "Perth", "server_name": "AU#29", "hostname": "au-29.protonvpn.net", - "entry_ip": "103.107.197.3" + "ips": [ + "103.107.197.3", + "103.107.197.3", + "103.107.197.3" + ] }, { "country": "Australia", "city": "Perth", "server_name": "AU#32", "hostname": "node-au-08.protonvpn.net", - "entry_ip": "103.107.197.2" + "ips": [ + "103.107.197.2", + "103.107.197.2", + "103.107.197.2", + "103.107.197.2", + "103.107.197.2" + ] }, { "country": "Australia", "city": "Sydney", "server_name": "AU#13", "hostname": "au-13.protonvpn.net", - "entry_ip": "103.212.227.123" + "ips": [ + "103.212.227.123" + ] }, { "country": "Australia", "city": "Sydney", "server_name": "AU#14", "hostname": "node-au-04.protonvpn.net", - "entry_ip": "103.212.227.122" + "ips": [ + "103.212.227.122", + "103.212.227.122", + "103.212.227.122" + ] }, { "country": "Australia", "city": "Sydney", "server_name": "AU#21", "hostname": "node-au-06.protonvpn.net", - "entry_ip": "137.59.253.50" + "ips": [ + "137.59.253.50", + "137.59.253.50", + "137.59.253.50", + "137.59.253.50" + ] }, { "country": "Australia", "city": "Sydney", "server_name": "AU#25", "hostname": "node-au-07.protonvpn.net", - "entry_ip": "137.59.253.55" + "ips": [ + "137.59.253.55", + "137.59.253.55", + "137.59.253.55", + "137.59.253.55" + ] }, { "country": "Austria", "server_name": "CH-AT#1", "hostname": "ch-at-01a.protonvpn.net", - "entry_ip": "185.159.157.34" + "ips": [ + "185.159.157.34" + ] }, { "country": "Austria", "server_name": "CH-AT#1", "hostname": "ch-at-01b.protonvpn.net", - "entry_ip": "185.159.157.35" + "ips": [ + "185.159.157.35" + ] }, { "country": "Austria", "server_name": "CH-AT#1", "hostname": "ch-at-01c.protonvpn.net", - "entry_ip": "185.159.157.47" + "ips": [ + "185.159.157.47" + ] }, { "country": "Austria", "server_name": "CH-AT#1", "hostname": "ch-at-01d.protonvpn.net", - "entry_ip": "185.159.157.75" + "ips": [ + "185.159.157.75" + ] }, { "country": "Austria", "server_name": "IS-AT#1", "hostname": "is-at-01a.protonvpn.net", - "entry_ip": "185.159.158.164" + "ips": [ + "185.159.158.164" + ] }, { "country": "Austria", "server_name": "IS-AT#1", "hostname": "is-at-01b.protonvpn.net", - "entry_ip": "185.159.158.165" + "ips": [ + "185.159.158.165" + ] }, { "country": "Austria", "city": "Vienna", "server_name": "AT#1", "hostname": "at-01.protonvpn.net", - "entry_ip": "185.244.212.59" + "ips": [ + "185.244.212.59", + "185.244.212.59" + ] }, { "country": "Austria", "city": "Vienna", "server_name": "AT#10", "hostname": "node-at-03.protonvpn.net", - "entry_ip": "94.198.41.218" + "ips": [ + "94.198.41.218", + "94.198.41.218", + "94.198.41.218" + ] }, { "country": "Austria", "city": "Vienna", "server_name": "AT#13", "hostname": "at-13.protonvpn.net", - "entry_ip": "94.198.41.211" + "ips": [ + "94.198.41.211" + ] }, { "country": "Austria", "city": "Vienna", "server_name": "AT#14", "hostname": "node-at-04.protonvpn.net", - "entry_ip": "94.198.41.210" + "ips": [ + "94.198.41.210", + "94.198.41.210", + "94.198.41.210" + ] }, { "country": "Austria", "city": "Vienna", "server_name": "AT#3", "hostname": "node-at-01.protonvpn.net", - "entry_ip": "185.244.212.58" + "ips": [ + "185.244.212.58", + "185.244.212.58" + ] }, { "country": "Austria", "city": "Vienna", "server_name": "AT#5", "hostname": "at-05.protonvpn.net", - "entry_ip": "185.244.212.219" + "ips": [ + "185.244.212.219", + "185.244.212.219" + ] }, { "country": "Austria", "city": "Vienna", "server_name": "AT#7", "hostname": "node-at-02.protonvpn.net", - "entry_ip": "185.244.212.218" + "ips": [ + "185.244.212.218", + "185.244.212.218" + ] }, { "country": "Austria", "city": "Vienna", "server_name": "AT#9", "hostname": "at-09.protonvpn.net", - "entry_ip": "94.198.41.219" + "ips": [ + "94.198.41.219" + ] }, { "country": "Belgium", "server_name": "CH-BE#1", "hostname": "ch-be-01a.protonvpn.net", - "entry_ip": "185.159.157.147" + "ips": [ + "185.159.157.147" + ] }, { "country": "Belgium", "server_name": "IS-BE#1", "hostname": "is-be-01a.protonvpn.net", - "entry_ip": "185.159.158.127" + "ips": [ + "185.159.158.127" + ] }, { "country": "Belgium", "server_name": "IS-BE#1", "hostname": "is-be-01c.protonvpn.net", - "entry_ip": "185.159.158.129" + "ips": [ + "185.159.158.129" + ] }, { "country": "Belgium", "server_name": "IS-BE#1", "hostname": "is-be-01d.protonvpn.net", - "entry_ip": "185.159.158.138" + "ips": [ + "185.159.158.138" + ] }, { "country": "Belgium", "city": "Brussels", "server_name": "BE#1", "hostname": "be-01.protonvpn.net", - "entry_ip": "193.9.114.179" + "ips": [ + "193.9.114.179" + ] }, { "country": "Belgium", "city": "Brussels", "server_name": "BE#13", "hostname": "be-13.protonvpn.net", - "entry_ip": "37.120.236.3" + "ips": [ + "37.120.236.3" + ] }, { "country": "Belgium", "city": "Brussels", "server_name": "BE#14", "hostname": "node-be-03.protonvpn.net", - "entry_ip": "37.120.236.2" + "ips": [ + "37.120.236.2", + "37.120.236.2", + "37.120.236.2" + ] }, { "country": "Belgium", "city": "Brussels", "server_name": "BE#2", "hostname": "node-be-01.protonvpn.net", - "entry_ip": "193.9.114.178" + "ips": [ + "193.9.114.178", + "193.9.114.178", + "193.9.114.178" + ] }, { "country": "Belgium", "city": "Brussels", "server_name": "BE#5", "hostname": "be-05.protonvpn.net", - "entry_ip": "45.128.133.227" + "ips": [ + "45.128.133.227", + "45.128.133.227", + "45.128.133.227" + ] }, { "country": "Belgium", "city": "Brussels", "server_name": "BE#8", "hostname": "node-be-02.protonvpn.net", - "entry_ip": "45.128.133.226" + "ips": [ + "45.128.133.226", + "45.128.133.226", + "45.128.133.226", + "45.128.133.226", + "45.128.133.226" + ] }, { "country": "Brazil", "server_name": "IS-BR#2", "hostname": "is-br-01b.protonvpn.net", - "entry_ip": "185.159.158.177" + "ips": [ + "185.159.158.177" + ] }, { "country": "Brazil", "city": "São Paulo", "server_name": "BR#21", "hostname": "node-br-04.protonvpn.net", - "entry_ip": "138.199.5.97" + "ips": [ + "138.199.5.97", + "138.199.5.97", + "138.199.5.97", + "138.199.5.97", + "138.199.5.97", + "138.199.5.97", + "138.199.5.97", + "138.199.5.97" + ] }, { "country": "Brazil", "city": "São Paulo", "server_name": "BR#42", "hostname": "br-42.protonvpn.net", - "entry_ip": "138.199.5.119" + "ips": [ + "138.199.5.119", + "138.199.5.119", + "138.199.5.119", + "138.199.5.119" + ] }, { "country": "Brazil", "city": "São Paulo", "server_name": "BR#9", "hostname": "node-br-03.protonvpn.net", - "entry_ip": "188.241.177.226" + "ips": [ + "188.241.177.226", + "188.241.177.226", + "188.241.177.226", + "188.241.177.226", + "188.241.177.226", + "188.241.177.226", + "188.241.177.226", + "188.241.177.226" + ] }, { "country": "Brazil", "city": "São Paulo", "server_name": "SE-BR#1", "hostname": "se-br-01a.protonvpn.net", - "entry_ip": "185.159.156.89" + "ips": [ + "185.159.156.89" + ] }, { "country": "Bulgaria", "server_name": "SE-BG#1", "hostname": "se-bg-01a.protonvpn.net", - "entry_ip": "185.159.156.95" + "ips": [ + "185.159.156.95" + ] }, { "country": "Bulgaria", "city": "Sofia", "server_name": "BG#05", "hostname": "bg-05.protonvpn.net", - "entry_ip": "156.146.55.226" + "ips": [ + "156.146.55.226", + "156.146.55.226" + ] }, { "country": "Bulgaria", "city": "Sofia", "server_name": "BG#7", "hostname": "node-bg-02.protonvpn.net", - "entry_ip": "156.146.55.225" + "ips": [ + "156.146.55.225", + "156.146.55.225", + "156.146.55.225", + "156.146.55.225", + "156.146.55.225", + "156.146.55.225" + ] }, { "country": "Cambodia", "server_name": "SE-KH#1", "hostname": "se-kh-01a.protonvpn.net", - "entry_ip": "185.159.156.83" + "ips": [ + "185.159.156.83" + ] }, { "country": "Cambodia", "city": "Phnom Penh", "server_name": "KH#1", "hostname": "node-kh-01.protonvpn.net", - "entry_ip": "188.215.235.82" + "ips": [ + "188.215.235.82", + "188.215.235.82", + "188.215.235.82", + "188.215.235.82", + "188.215.235.82", + "188.215.235.82", + "188.215.235.82", + "188.215.235.82" + ] }, { "country": "Canada", "server_name": "CH-CA#1", "hostname": "ch-ca-01a.protonvpn.net", - "entry_ip": "185.159.157.14" + "ips": [ + "185.159.157.14" + ] }, { "country": "Canada", "server_name": "CH-CA#1", "hostname": "ch-ca-01b.protonvpn.net", - "entry_ip": "185.159.157.17" + "ips": [ + "185.159.157.17" + ] }, { "country": "Canada", "server_name": "CH-CA#1", "hostname": "ch-ca-01c.protonvpn.net", - "entry_ip": "185.159.157.101" + "ips": [ + "185.159.157.101" + ] }, { "country": "Canada", "server_name": "CH-CA#1", "hostname": "ch-ca-01e.protonvpn.net", - "entry_ip": "185.159.157.31" + "ips": [ + "185.159.157.31" + ] }, { "country": "Canada", "server_name": "CH-CA#1", "hostname": "ch-ca-01g.protonvpn.net", - "entry_ip": "185.159.157.125" + "ips": [ + "185.159.157.125" + ] }, { "country": "Canada", "server_name": "CH-CA#1", "hostname": "ch-ca-01h.protonvpn.net", - "entry_ip": "185.159.157.154" + "ips": [ + "185.159.157.154" + ] }, { "country": "Canada", "server_name": "CH-CA#1", "hostname": "ch-ca-01i.protonvpn.net", - "entry_ip": "185.159.157.155" + "ips": [ + "185.159.157.155" + ] }, { "country": "Canada", "server_name": "CH-CA#1", "hostname": "ch-ca-01j.protonvpn.net", - "entry_ip": "185.159.157.177" + "ips": [ + "185.159.157.177" + ] }, { "country": "Canada", "server_name": "IS-CA#1", "hostname": "is-ca-01a.protonvpn.net", - "entry_ip": "185.159.158.103" + "ips": [ + "185.159.158.103" + ] }, { "country": "Canada", "server_name": "IS-CA#1", "hostname": "is-ca-01e.protonvpn.net", - "entry_ip": "185.159.158.117" + "ips": [ + "185.159.158.117" + ] }, { "country": "Canada", "server_name": "SE-CA#1", "hostname": "se-ca-01a.protonvpn.net", - "entry_ip": "185.159.156.51" + "ips": [ + "185.159.156.51" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#17", "hostname": "node-ca-05.protonvpn.net", - "entry_ip": "172.98.82.162" + "ips": [ + "172.98.82.162", + "172.98.82.162", + "172.98.82.162", + "172.98.82.162" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#21", "hostname": "ca-21.protonvpn.net", - "entry_ip": "86.106.90.99" + "ips": [ + "86.106.90.99", + "86.106.90.99", + "86.106.90.99" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#24", "hostname": "node-ca-06.protonvpn.net", - "entry_ip": "86.106.90.98" + "ips": [ + "86.106.90.98", + "86.106.90.98", + "86.106.90.98", + "86.106.90.98", + "86.106.90.98" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#29", "hostname": "ca-29.protonvpn.net", - "entry_ip": "37.120.205.83" + "ips": [ + "37.120.205.83" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#30", "hostname": "node-ca-07.protonvpn.net", - "entry_ip": "37.120.205.82" + "ips": [ + "37.120.205.82", + "37.120.205.82", + "37.120.205.82" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#41", "hostname": "ca-41.protonvpn.net", - "entry_ip": "37.120.237.171" + "ips": [ + "37.120.237.171" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#42", "hostname": "node-ca-10.protonvpn.net", - "entry_ip": "37.120.237.170" + "ips": [ + "37.120.237.170", + "37.120.237.170", + "37.120.237.170" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#45", "hostname": "ca-45.protonvpn.net", - "entry_ip": "37.120.237.179" + "ips": [ + "37.120.237.179" + ] }, { "country": "Canada", "city": "Montreal", "server_name": "CA#46", "hostname": "node-ca-11.protonvpn.net", - "entry_ip": "37.120.237.178" + "ips": [ + "37.120.237.178", + "37.120.237.178", + "37.120.237.178" + ] }, { "country": "Canada", "city": "Toronto", "server_name": "CA#1", "hostname": "ca-01.protonvpn.net", - "entry_ip": "104.254.92.59" + "ips": [ + "104.254.92.59", + "104.254.92.59" + ] }, { "country": "Canada", "city": "Toronto", "server_name": "CA#3", "hostname": "node-ca-01.protonvpn.net", - "entry_ip": "104.254.92.58" + "ips": [ + "104.254.92.58", + "104.254.92.58" + ] }, { "country": "Canada", "city": "Toronto", "server_name": "CA#49", "hostname": "node-ca-09.protonvpn.net", - "entry_ip": "178.249.214.65" + "ips": [ + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65", + "178.249.214.65" + ] }, { "country": "Canada", "city": "Vancouver", "server_name": "CA#33", "hostname": "ca-33.protonvpn.net", - "entry_ip": "66.115.146.163" + "ips": [ + "66.115.146.163", + "66.115.146.163" + ] }, { "country": "Canada", "city": "Vancouver", "server_name": "CA#35", "hostname": "node-ca-08.protonvpn.net", - "entry_ip": "66.115.146.162" + "ips": [ + "66.115.146.162", + "66.115.146.162" + ] }, { "country": "Canada", "city": "Vancouver", "server_name": "CA#5", "hostname": "ca-05.protonvpn.net", - "entry_ip": "172.83.40.67" + "ips": [ + "172.83.40.67", + "172.83.40.67" + ] }, { "country": "Canada", "city": "Vancouver", "server_name": "CA#7", "hostname": "node-ca-02.protonvpn.net", - "entry_ip": "172.83.40.66" + "ips": [ + "172.83.40.66", + "172.83.40.66" + ] }, { "country": "Chile", "server_name": "IS-CL#1", "hostname": "is-cl-01a.protonvpn.net", - "entry_ip": "185.159.158.197" + "ips": [ + "185.159.158.197" + ] }, { "country": "Chile", "city": "Santiago", "server_name": "CL#17", "hostname": "cl-17.protonvpn.net", - "entry_ip": "66.90.76.179" + "ips": [ + "66.90.76.179", + "66.90.76.179", + "66.90.76.179" + ] }, { "country": "Chile", "city": "Santiago", "server_name": "CL#20", "hostname": "node-cl-03.protonvpn.net", - "entry_ip": "66.90.76.178" + "ips": [ + "66.90.76.178", + "66.90.76.178", + "66.90.76.178", + "66.90.76.178", + "66.90.76.178" + ] }, { "country": "Colombia", "server_name": "IS-CO#1", "hostname": "is-co-01a.protonvpn.net", - "entry_ip": "185.159.158.196" + "ips": [ + "185.159.158.196" + ] }, { "country": "Colombia", "city": "Bogota", "server_name": "CO#12", "hostname": "node-co-02.protonvpn.net", - "entry_ip": "66.90.82.26" + "ips": [ + "66.90.82.26", + "66.90.82.26", + "66.90.82.26", + "66.90.82.26", + "66.90.82.26" + ] }, { "country": "Colombia", "city": "Bogota", "server_name": "CO#9", "hostname": "co-09.protonvpn.net", - "entry_ip": "66.90.82.27" + "ips": [ + "66.90.82.27", + "66.90.82.27", + "66.90.82.27" + ] }, { "country": "Costa Rica", "server_name": "IS-CR#1", "hostname": "is-cr-01a.protonvpn.net", - "entry_ip": "185.159.158.136" + "ips": [ + "185.159.158.136" + ] }, { "country": "Costa Rica", "city": "San José", "server_name": "CR#1", "hostname": "cr-01.protonvpn.net", - "entry_ip": "190.184.199.3" + "ips": [ + "190.184.199.3" + ] }, { "country": "Costa Rica", "city": "San José", "server_name": "CR#2", "hostname": "node-cr-01.protonvpn.net", - "entry_ip": "190.184.199.2" + "ips": [ + "190.184.199.2", + "190.184.199.2", + "190.184.199.2" + ] }, { "country": "Cyprus", "server_name": "CH-CY#1", "hostname": "ch-cy-01a.protonvpn.net", - "entry_ip": "185.159.157.165" + "ips": [ + "185.159.157.165" + ] }, { "country": "Cyprus", "city": "Limassol", "server_name": "CY#1", "hostname": "cy-01.protonvpn.net", - "entry_ip": "85.132.252.35" + "ips": [ + "85.132.252.35" + ] }, { "country": "Cyprus", "city": "Limassol", "server_name": "CY#2", "hostname": "node-cy-01.protonvpn.net", - "entry_ip": "85.132.252.34" + "ips": [ + "85.132.252.34", + "85.132.252.34", + "85.132.252.34" + ] }, { "country": "Czech Republic", "server_name": "CH-CZ#1", "hostname": "ch-cz-01a.protonvpn.net", - "entry_ip": "185.159.157.38" + "ips": [ + "185.159.157.38" + ] }, { "country": "Czech Republic", "server_name": "CH-CZ#1", "hostname": "ch-cz-01b.protonvpn.net", - "entry_ip": "185.159.157.39" + "ips": [ + "185.159.157.39" + ] }, { "country": "Czech Republic", "server_name": "CH-CZ#1", "hostname": "ch-cz-01c.protonvpn.net", - "entry_ip": "185.159.157.69" + "ips": [ + "185.159.157.69" + ] }, { "country": "Czech Republic", "city": "Prague", "server_name": "CZ#1", "hostname": "cz-01.protonvpn.net", - "entry_ip": "185.242.6.3" + "ips": [ + "185.242.6.3", + "185.242.6.3" + ] }, { "country": "Czech Republic", "city": "Prague", "server_name": "CZ#13", "hostname": "cz-13.protonvpn.net", - "entry_ip": "217.138.220.195" + "ips": [ + "217.138.220.195", + "217.138.220.195", + "217.138.220.195" + ] }, { "country": "Czech Republic", "city": "Prague", "server_name": "CZ#16", "hostname": "node-cz-03.protonvpn.net", - "entry_ip": "217.138.220.194" + "ips": [ + "217.138.220.194", + "217.138.220.194", + "217.138.220.194", + "217.138.220.194", + "217.138.220.194" + ] }, { "country": "Czech Republic", "city": "Prague", "server_name": "CZ#3", "hostname": "node-cz-01.protonvpn.net", - "entry_ip": "185.242.6.2" + "ips": [ + "185.242.6.2", + "185.242.6.2" + ] }, { "country": "Denmark", "server_name": "CH-DK#1", "hostname": "ch-dk-01a.protonvpn.net", - "entry_ip": "185.159.157.36" + "ips": [ + "185.159.157.36" + ] }, { "country": "Denmark", "server_name": "CH-DK#1", "hostname": "ch-dk-01b.protonvpn.net", - "entry_ip": "185.159.157.37" + "ips": [ + "185.159.157.37" + ] }, { "country": "Denmark", "server_name": "IS-DK#1", "hostname": "is-dk-01a.protonvpn.net", - "entry_ip": "185.159.158.153" + "ips": [ + "185.159.158.153" + ] }, { "country": "Denmark", "city": "Copenhagen", "server_name": "DK#1", "hostname": "dk-01.protonvpn.net", - "entry_ip": "95.174.65.3" + "ips": [ + "95.174.65.3", + "95.174.65.3" + ] }, { "country": "Denmark", "city": "Copenhagen", "server_name": "DK#13", "hostname": "dk-13.protonvpn.net", - "entry_ip": "193.29.107.243" + "ips": [ + "193.29.107.243", + "193.29.107.243", + "193.29.107.243" + ] }, { "country": "Denmark", "city": "Copenhagen", "server_name": "DK#16", "hostname": "node-dk-03.protonvpn.net", - "entry_ip": "193.29.107.242" + "ips": [ + "193.29.107.242", + "193.29.107.242", + "193.29.107.242", + "193.29.107.242", + "193.29.107.242" + ] }, { "country": "Denmark", "city": "Copenhagen", "server_name": "DK#21", "hostname": "dk-21.protonvpn.net", - "entry_ip": "37.120.232.51" + "ips": [ + "37.120.232.51" + ] }, { "country": "Denmark", "city": "Copenhagen", "server_name": "DK#22", "hostname": "node-dk-04.protonvpn.net", - "entry_ip": "37.120.232.50" + "ips": [ + "37.120.232.50", + "37.120.232.50", + "37.120.232.50" + ] }, { "country": "Denmark", "city": "Copenhagen", "server_name": "DK#3", "hostname": "node-dk-01.protonvpn.net", - "entry_ip": "95.174.65.2" + "ips": [ + "95.174.65.2", + "95.174.65.2" + ] }, { "country": "Egypt", "server_name": "SE-EG#1", "hostname": "se-eg-01a.protonvpn.net", - "entry_ip": "185.159.156.84" + "ips": [ + "185.159.156.84" + ] }, { "country": "Egypt", "city": "Cairo", "server_name": "EG#1", "hostname": "node-eg-01.protonvpn.net", - "entry_ip": "188.214.122.82" + "ips": [ + "188.214.122.82", + "188.214.122.82", + "188.214.122.82", + "188.214.122.82", + "188.214.122.82", + "188.214.122.82", + "188.214.122.82", + "188.214.122.82" + ] }, { "country": "Estonia", "server_name": "CH-EE#1", "hostname": "ch-ee-01a.protonvpn.net", - "entry_ip": "185.159.157.106" + "ips": [ + "185.159.157.106" + ] }, { "country": "Estonia", "server_name": "SE-EE#1", "hostname": "se-ee-01b.protonvpn.net", - "entry_ip": "185.159.156.49" + "ips": [ + "185.159.156.49" + ] }, { "country": "Estonia", "city": "Tallinn", "server_name": "EE#1", "hostname": "ee-01.protonvpn.net", - "entry_ip": "165.231.178.18" + "ips": [ + "165.231.178.18", + "165.231.178.18", + "165.231.178.18" + ] }, { "country": "Estonia", "city": "Tallinn", "server_name": "EE#4", "hostname": "node-ee-01.protonvpn.net", - "entry_ip": "165.231.178.10" + "ips": [ + "165.231.178.10", + "165.231.178.10", + "165.231.178.10", + "165.231.178.10", + "165.231.178.10" + ] }, { "country": "Finland", "server_name": "CH-FI#1", "hostname": "ch-fi-01a.protonvpn.net", - "entry_ip": "185.159.157.107" + "ips": [ + "185.159.157.107" + ] }, { "country": "Finland", "server_name": "SE-FI#1", "hostname": "se-fi-01a.protonvpn.net", - "entry_ip": "185.159.156.92" + "ips": [ + "185.159.156.92" + ] }, { "country": "Finland", "server_name": "SE-FI#1", "hostname": "se-fi-01b.protonvpn.net", - "entry_ip": "185.159.156.27" + "ips": [ + "185.159.156.27" + ] }, { "country": "Finland", "server_name": "SE-FI#1", "hostname": "se-fi-01c.protonvpn.net", - "entry_ip": "185.159.156.28" + "ips": [ + "185.159.156.28" + ] }, { "country": "Finland", "city": "Helsinki", "server_name": "FI#1", "hostname": "fi-01.protonvpn.net", - "entry_ip": "194.34.132.56" + "ips": [ + "194.34.132.56" + ] }, { "country": "Finland", "city": "Helsinki", "server_name": "FI#2", "hostname": "node-fi-01.protonvpn.net", - "entry_ip": "194.34.132.55" + "ips": [ + "194.34.132.55", + "194.34.132.55", + "194.34.132.55" + ] }, { "country": "Finland", "city": "Helsinki", "server_name": "FI#5", "hostname": "node-fi-02.protonvpn.net", - "entry_ip": "196.196.203.202" + "ips": [ + "196.196.203.202", + "196.196.203.202", + "196.196.203.202", + "196.196.203.202", + "196.196.203.202", + "196.196.203.202", + "196.196.203.202", + "196.196.203.202" + ] }, { "country": "France", "server_name": "CH-FR#1", "hostname": "ch-fr-01a.protonvpn.net", - "entry_ip": "185.159.157.90" + "ips": [ + "185.159.157.90" + ] }, { "country": "France", "server_name": "CH-FR#1", "hostname": "ch-fr-01b.protonvpn.net", - "entry_ip": "185.159.157.126" + "ips": [ + "185.159.157.126" + ] }, { "country": "France", "server_name": "CH-FR#1", "hostname": "ch-fr-01c.protonvpn.net", - "entry_ip": "185.159.157.148" + "ips": [ + "185.159.157.148" + ] }, { "country": "France", "server_name": "CH-FR#1", "hostname": "ch-fr-01d.protonvpn.net", - "entry_ip": "185.159.157.149" + "ips": [ + "185.159.157.149" + ] }, { "country": "France", "server_name": "CH-FR#1", "hostname": "ch-fr-01e.protonvpn.net", - "entry_ip": "185.159.157.150" + "ips": [ + "185.159.157.150" + ] }, { "country": "France", "server_name": "CH-FR#1", "hostname": "ch-fr-01f.protonvpn.net", - "entry_ip": "185.159.157.63" + "ips": [ + "185.159.157.63" + ] }, { "country": "France", "server_name": "FR#13-TOR", "hostname": "fr-13-tor.protonvpn.net", - "entry_ip": "45.128.134.199" + "ips": [ + "45.128.134.199" + ] }, { "country": "France", "server_name": "IS-FR#1", "hostname": "is-fr-01a.protonvpn.net", - "entry_ip": "185.159.158.166" + "ips": [ + "185.159.158.166" + ] }, { "country": "France", "server_name": "SE-FR#1", "hostname": "se-fr-01a.protonvpn.net", - "entry_ip": "185.159.156.93" + "ips": [ + "185.159.156.93" + ] }, { "country": "France", "server_name": "SE-FR#1", "hostname": "se-fr-01b.protonvpn.net", - "entry_ip": "185.159.156.94" + "ips": [ + "185.159.156.94" + ] }, { "country": "France", "server_name": "SE-FR#1", "hostname": "se-fr-01c.protonvpn.net", - "entry_ip": "185.159.156.21" + "ips": [ + "185.159.156.21" + ] }, { "country": "France", "server_name": "SE-FR#1", "hostname": "se-fr-01e.protonvpn.net", - "entry_ip": "185.159.156.68" + "ips": [ + "185.159.156.68" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#21", "hostname": "fr-21.protonvpn.net", - "entry_ip": "217.138.207.227" + "ips": [ + "217.138.207.227", + "217.138.207.227", + "217.138.207.227" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#24", "hostname": "node-fr-05.protonvpn.net", - "entry_ip": "217.138.207.226" + "ips": [ + "217.138.207.226", + "217.138.207.226", + "217.138.207.226", + "217.138.207.226", + "217.138.207.226" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#29", "hostname": "fr-29.protonvpn.net", - "entry_ip": "45.89.174.67" + "ips": [ + "45.89.174.67", + "45.89.174.67", + "45.89.174.67" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#32", "hostname": "node-fr-06.protonvpn.net", - "entry_ip": "45.89.174.66" + "ips": [ + "45.89.174.66", + "45.89.174.66", + "45.89.174.66", + "45.89.174.66", + "45.89.174.66" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#37", "hostname": "fr-37.protonvpn.net", - "entry_ip": "45.128.134.195" + "ips": [ + "45.128.134.195", + "45.128.134.195" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#39", "hostname": "node-fr-07.protonvpn.net", - "entry_ip": "45.128.134.194" + "ips": [ + "45.128.134.194", + "45.128.134.194" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#41", "hostname": "fr-41.protonvpn.net", - "entry_ip": "45.83.90.147" + "ips": [ + "45.83.90.147" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#42", "hostname": "node-fr-08.protonvpn.net", - "entry_ip": "45.83.90.146" + "ips": [ + "45.83.90.146", + "45.83.90.146", + "45.83.90.146" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#45", "hostname": "fr-45.protonvpn.net", - "entry_ip": "188.241.83.115" + "ips": [ + "188.241.83.115" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#46", "hostname": "node-fr-09.protonvpn.net", - "entry_ip": "188.241.83.114" + "ips": [ + "188.241.83.114", + "188.241.83.114", + "188.241.83.114" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#49", "hostname": "fr-49.protonvpn.net", - "entry_ip": "188.241.83.123" + "ips": [ + "188.241.83.123" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#50", "hostname": "node-fr-10.protonvpn.net", - "entry_ip": "188.241.83.122" + "ips": [ + "188.241.83.122", + "188.241.83.122", + "188.241.83.122" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#53", "hostname": "fr-53.protonvpn.net", - "entry_ip": "188.241.83.99" + "ips": [ + "188.241.83.99" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#54", "hostname": "node-fr-11.protonvpn.net", - "entry_ip": "188.241.83.98" + "ips": [ + "188.241.83.98", + "188.241.83.98", + "188.241.83.98" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#57", "hostname": "fr-57.protonvpn.net", - "entry_ip": "188.241.83.107" + "ips": [ + "188.241.83.107" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#58", "hostname": "node-fr-12.protonvpn.net", - "entry_ip": "188.241.83.106" + "ips": [ + "188.241.83.106", + "188.241.83.106", + "188.241.83.106" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#61", "hostname": "node-fr-13.protonvpn.net", - "entry_ip": "185.246.211.193" + "ips": [ + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193", + "185.246.211.193" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#73", "hostname": "node-fr-14.protonvpn.net", - "entry_ip": "185.246.211.72" + "ips": [ + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72", + "185.246.211.72" + ] }, { "country": "France", "city": "Paris", "server_name": "FR#9", "hostname": "node-fr-03.protonvpn.net", - "entry_ip": "194.59.249.18" + "ips": [ + "194.59.249.18", + "194.59.249.18", + "194.59.249.18", + "194.59.249.18" + ] }, { "country": "Georgia", "city": "Tbilisi", "server_name": "GE#1", "hostname": "node-ge-01.protonvpn.net", - "entry_ip": "194.135.119.7" + "ips": [ + "194.135.119.7", + "194.135.119.7", + "194.135.119.7", + "194.135.119.7", + "194.135.119.7", + "194.135.119.7" + ] }, { "country": "Germany", "server_name": "CH-DE#1", "hostname": "ch-de-01a.protonvpn.net", - "entry_ip": "185.159.157.77" + "ips": [ + "185.159.157.77" + ] }, { "country": "Germany", "server_name": "CH-DE#1", "hostname": "ch-de-01b.protonvpn.net", - "entry_ip": "185.159.157.183" + "ips": [ + "185.159.157.183" + ] }, { "country": "Germany", "server_name": "CH-DE#1", "hostname": "ch-de-01d.protonvpn.net", - "entry_ip": "185.159.157.184" + "ips": [ + "185.159.157.184" + ] }, { "country": "Germany", "server_name": "DE#53-TOR", "hostname": "de-53-tor.protonvpn.net", - "entry_ip": "194.126.177.9" + "ips": [ + "194.126.177.9" + ] }, { "country": "Germany", "server_name": "DE#7-TOR", "hostname": "de-07-tor.protonvpn.net", - "entry_ip": "37.120.217.87" + "ips": [ + "37.120.217.87" + ] }, { "country": "Germany", "server_name": "IS-DE#1", "hostname": "is-de-01b.protonvpn.net", - "entry_ip": "185.159.158.178" + "ips": [ + "185.159.158.178" + ] }, { "country": "Germany", "server_name": "IS-DE#1", "hostname": "is-de-01c.protonvpn.net", - "entry_ip": "185.159.158.139" + "ips": [ + "185.159.158.139" + ] }, { "country": "Germany", "server_name": "IS-DE#1", "hostname": "is-de-01d.protonvpn.net", - "entry_ip": "185.159.158.144" + "ips": [ + "185.159.158.144" + ] }, { "country": "Germany", "server_name": "IS-DE#1", "hostname": "is-de-01g.protonvpn.net", - "entry_ip": "185.159.158.179" + "ips": [ + "185.159.158.179" + ] }, { "country": "Germany", "server_name": "IS-DE#1", "hostname": "is-de-01h.protonvpn.net", - "entry_ip": "185.159.158.180" + "ips": [ + "185.159.158.180" + ] }, { "country": "Germany", "server_name": "SE-DE#1", "hostname": "se-de-01a.protonvpn.net", - "entry_ip": "185.159.156.98" + "ips": [ + "185.159.156.98" + ] }, { "country": "Germany", "city": "Berlin", "server_name": "DE#13", "hostname": "de-13.protonvpn.net", - "entry_ip": "37.120.217.163" + "ips": [ + "37.120.217.163", + "37.120.217.163", + "37.120.217.163" + ] }, { "country": "Germany", "city": "Berlin", "server_name": "DE#16", "hostname": "node-de-04.protonvpn.net", - "entry_ip": "37.120.217.162" + "ips": [ + "37.120.217.162", + "37.120.217.162", + "37.120.217.162", + "37.120.217.162", + "37.120.217.162" + ] }, { "country": "Germany", "city": "Berlin", "server_name": "DE#33", "hostname": "de-33.protonvpn.net", - "entry_ip": "37.120.217.83" + "ips": [ + "37.120.217.83" + ] }, { "country": "Germany", "city": "Berlin", "server_name": "DE#34", "hostname": "node-de-07.protonvpn.net", - "entry_ip": "37.120.217.82" + "ips": [ + "37.120.217.82", + "37.120.217.82", + "37.120.217.82" + ] }, { "country": "Germany", "city": "Berlin", "server_name": "DE#90", "hostname": "node-de-15.protonvpn.net", - "entry_ip": "89.36.76.130" + "ips": [ + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130", + "89.36.76.130" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#102", "hostname": "de-102.protonvpn.net", - "entry_ip": "194.126.177.64" + "ips": [ + "194.126.177.64", + "194.126.177.64", + "194.126.177.64" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#105", "hostname": "node-de-16.protonvpn.net", - "entry_ip": "194.126.177.13" + "ips": [ + "194.126.177.13", + "194.126.177.13", + "194.126.177.13", + "194.126.177.13", + "194.126.177.13", + "194.126.177.13", + "194.126.177.13", + "194.126.177.13", + "194.126.177.13" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#114", "hostname": "node-de-17.protonvpn.net", - "entry_ip": "194.126.177.14" + "ips": [ + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14", + "194.126.177.14" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#54", "hostname": "de-54.protonvpn.net", - "entry_ip": "194.126.177.10" + "ips": [ + "194.126.177.10", + "194.126.177.10", + "194.126.177.10", + "194.126.177.10" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#58", "hostname": "node-de-12.protonvpn.net", - "entry_ip": "194.126.177.6" + "ips": [ + "194.126.177.6", + "194.126.177.6", + "194.126.177.6", + "194.126.177.6", + "194.126.177.6", + "194.126.177.6", + "194.126.177.6", + "194.126.177.6" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#65", "hostname": "de-65.protonvpn.net", - "entry_ip": "194.126.177.11" + "ips": [ + "194.126.177.11", + "194.126.177.11", + "194.126.177.11", + "194.126.177.11" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#69", "hostname": "node-de-13.protonvpn.net", - "entry_ip": "194.126.177.7" + "ips": [ + "194.126.177.7", + "194.126.177.7", + "194.126.177.7", + "194.126.177.7", + "194.126.177.7", + "194.126.177.7", + "194.126.177.7", + "194.126.177.7" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#77", "hostname": "de-77.protonvpn.net", - "entry_ip": "194.126.177.12" + "ips": [ + "194.126.177.12", + "194.126.177.12", + "194.126.177.12", + "194.126.177.12" + ] }, { "country": "Germany", "city": "Frankfurt", "server_name": "DE#81", "hostname": "node-de-14.protonvpn.net", - "entry_ip": "194.126.177.8" + "ips": [ + "194.126.177.8", + "194.126.177.8", + "194.126.177.8", + "194.126.177.8", + "194.126.177.8", + "194.126.177.8", + "194.126.177.8", + "194.126.177.8" + ] }, { "country": "Greece", "server_name": "CH-GR#1", "hostname": "ch-gr-01a.protonvpn.net", - "entry_ip": "185.159.157.65" + "ips": [ + "185.159.157.65" + ] }, { "country": "Greece", "city": "Athens", "server_name": "GR#1", "hostname": "gr-01.protonvpn.net", - "entry_ip": "185.51.134.195" + "ips": [ + "185.51.134.195", + "185.51.134.195", + "185.51.134.195" + ] }, { "country": "Greece", "city": "Athens", "server_name": "GR#4", "hostname": "node-gr-01.protonvpn.net", - "entry_ip": "185.51.134.194" + "ips": [ + "185.51.134.194", + "185.51.134.194", + "185.51.134.194", + "185.51.134.194", + "185.51.134.194" + ] }, { "country": "Hong Kong", "server_name": "IS-HK#1", "hostname": "is-hk-01a.protonvpn.net", - "entry_ip": "185.159.158.152" + "ips": [ + "185.159.158.152" + ] }, { "country": "Hong Kong", "server_name": "IS-HK#1", "hostname": "is-hk-01b.protonvpn.net", - "entry_ip": "185.159.158.195" + "ips": [ + "185.159.158.195" + ] }, { "country": "Hong Kong", "server_name": "SE-HK#1", "hostname": "se-hk-01c.protonvpn.net", - "entry_ip": "185.159.156.65" + "ips": [ + "185.159.156.65" + ] }, { "country": "Hong Kong", "city": "Hong Kong", "server_name": "HK#14", "hostname": "hk-14.protonvpn.net", - "entry_ip": "45.133.181.251" + "ips": [ + "45.133.181.251" + ] }, { "country": "Hong Kong", "city": "Hong Kong", "server_name": "HK#15", "hostname": "node-hk-03.protonvpn.net", - "entry_ip": "45.133.181.250" + "ips": [ + "45.133.181.250", + "45.133.181.250", + "45.133.181.250" + ] }, { "country": "Hong Kong", "city": "Hong Kong", "server_name": "HK#18", "hostname": "hk-18.protonvpn.net", - "entry_ip": "156.146.45.130" + "ips": [ + "156.146.45.130", + "156.146.45.130", + "156.146.45.130" + ] }, { "country": "Hong Kong", "city": "Hong Kong", "server_name": "HK#21", "hostname": "node-hk-04.protonvpn.net", - "entry_ip": "156.146.45.129" + "ips": [ + "156.146.45.129", + "156.146.45.129", + "156.146.45.129", + "156.146.45.129", + "156.146.45.129", + "156.146.45.129", + "156.146.45.129" + ] }, { "country": "Hong Kong", "city": "Hong Kong", "server_name": "HK#6", "hostname": "hk-06.protonvpn.net", - "entry_ip": "193.239.86.3" + "ips": [ + "193.239.86.3", + "193.239.86.3", + "193.239.86.3" + ] }, { "country": "Hong Kong", "city": "Hong Kong", "server_name": "HK#9", "hostname": "node-hk-02.protonvpn.net", - "entry_ip": "193.239.86.2" + "ips": [ + "193.239.86.2", + "193.239.86.2", + "193.239.86.2", + "193.239.86.2", + "193.239.86.2" + ] }, { "country": "Hungary", "server_name": "CH-HU#1", "hostname": "ch-hu-01a.protonvpn.net", - "entry_ip": "185.159.157.105" + "ips": [ + "185.159.157.105" + ] }, { "country": "Hungary", "server_name": "IS-HU#1", "hostname": "is-hu-01a.protonvpn.net", - "entry_ip": "185.159.158.155" + "ips": [ + "185.159.158.155" + ] }, { "country": "Hungary", "city": "Budapest", "server_name": "HU#1", "hostname": "hu-01.protonvpn.net", - "entry_ip": "185.128.26.211" + "ips": [ + "185.128.26.211", + "185.128.26.211", + "185.128.26.211" + ] }, { "country": "Hungary", "city": "Budapest", "server_name": "HU#10", "hostname": "node-hu-02.protonvpn.net", - "entry_ip": "86.106.74.210" + "ips": [ + "86.106.74.210", + "86.106.74.210", + "86.106.74.210" + ] }, { "country": "Hungary", "city": "Budapest", "server_name": "HU#4", "hostname": "node-hu-01.protonvpn.net", - "entry_ip": "185.128.26.210" + "ips": [ + "185.128.26.210", + "185.128.26.210", + "185.128.26.210", + "185.128.26.210", + "185.128.26.210" + ] }, { "country": "Hungary", "city": "Budapest", "server_name": "HU#9", "hostname": "hu-09.protonvpn.net", - "entry_ip": "86.106.74.211" + "ips": [ + "86.106.74.211" + ] }, { "country": "Iceland", "server_name": "IS#9-TOR", "hostname": "is-09-tor.protonvpn.net", - "entry_ip": "185.159.158.193" + "ips": [ + "185.159.158.193" + ] }, { "country": "Iceland", "city": "Reykjavik", "server_name": "IS#1", "hostname": "is-01.protonvpn.net", - "entry_ip": "185.159.158.100" + "ips": [ + "185.159.158.100", + "185.159.158.100" + ] }, { "country": "Iceland", "city": "Reykjavik", "server_name": "IS#3", "hostname": "node-is-02.protonvpn.net", - "entry_ip": "185.159.158.2" + "ips": [ + "185.159.158.2", + "185.159.158.2" + ] }, { "country": "Iceland", "city": "Reykjavik", "server_name": "IS#5", "hostname": "is-05.protonvpn.net", - "entry_ip": "185.159.158.57" + "ips": [ + "185.159.158.57", + "185.159.158.57" + ] }, { "country": "Iceland", "city": "Reykjavik", "server_name": "IS#7", "hostname": "node-is-01.protonvpn.net", - "entry_ip": "185.159.158.1" + "ips": [ + "185.159.158.1", + "185.159.158.1" + ] }, { "country": "India", "server_name": "CH-IN#1", "hostname": "ch-in-01a.protonvpn.net", - "entry_ip": "185.159.157.185" + "ips": [ + "185.159.157.185" + ] }, { "country": "India", "server_name": "CH-IN#1", "hostname": "ch-in-01c.protonvpn.net", - "entry_ip": "185.159.157.40" + "ips": [ + "185.159.157.40" + ] }, { "country": "India", "city": "Mumbai", "server_name": "IN#11", "hostname": "in-11.protonvpn.net", - "entry_ip": "43.251.180.195" + "ips": [ + "43.251.180.195", + "43.251.180.195" + ] }, { "country": "India", "city": "Mumbai", "server_name": "IN#13", "hostname": "node-in-03.protonvpn.net", - "entry_ip": "43.251.180.194" + "ips": [ + "43.251.180.194", + "43.251.180.194", + "43.251.180.194", + "43.251.180.194", + "43.251.180.194", + "43.251.180.194" + ] }, { "country": "India", "city": "Pune", "server_name": "IN#1", "hostname": "in-01b.protonvpn.net", - "entry_ip": "103.156.50.161" + "ips": [ + "103.156.50.161" + ] }, { "country": "India", "city": "Pune", "server_name": "IN#2", "hostname": "node-in-01b.protonvpn.net", - "entry_ip": "103.156.50.7" + "ips": [ + "103.156.50.7" + ] }, { "country": "Ireland", "server_name": "CH-IE#1", "hostname": "ch-ie-01a.protonvpn.net", - "entry_ip": "185.159.157.89" + "ips": [ + "185.159.157.89" + ] }, { "country": "Ireland", "server_name": "IS-IE#1", "hostname": "is-ie-01a.protonvpn.net", - "entry_ip": "185.159.158.118" + "ips": [ + "185.159.158.118" + ] }, { "country": "Ireland", "server_name": "IS-IE#1", "hostname": "is-ie-01c.protonvpn.net", - "entry_ip": "185.159.158.120" + "ips": [ + "185.159.158.120" + ] }, { "country": "Ireland", "city": "Dublin", "server_name": "IE#1", "hostname": "ie-01.protonvpn.net", - "entry_ip": "5.157.13.3" + "ips": [ + "5.157.13.3" + ] }, { "country": "Ireland", "city": "Dublin", "server_name": "IE#2", "hostname": "node-ie-01.protonvpn.net", - "entry_ip": "5.157.13.2" + "ips": [ + "5.157.13.2", + "5.157.13.2", + "5.157.13.2" + ] }, { "country": "Ireland", "city": "Dublin", "server_name": "IE#5", "hostname": "ie-05.protonvpn.net", - "entry_ip": "84.247.48.163" + "ips": [ + "84.247.48.163", + "84.247.48.163", + "84.247.48.163" + ] }, { "country": "Ireland", "city": "Dublin", "server_name": "IE#8", "hostname": "node-ie-02.protonvpn.net", - "entry_ip": "84.247.48.162" + "ips": [ + "84.247.48.162", + "84.247.48.162", + "84.247.48.162", + "84.247.48.162", + "84.247.48.162" + ] }, { "country": "Israel", "server_name": "IS-IL#1", "hostname": "is-il-01a.protonvpn.net", - "entry_ip": "185.159.158.194" + "ips": [ + "185.159.158.194" + ] }, { "country": "Israel", "city": "Petah Tikva", "server_name": "IL#10", "hostname": "node-il-03.protonvpn.net", - "entry_ip": "185.185.134.74" + "ips": [ + "185.185.134.74", + "185.185.134.74", + "185.185.134.74" + ] }, { "country": "Israel", "city": "Petah Tikva", "server_name": "IL#9", "hostname": "il-09.protonvpn.net", - "entry_ip": "185.185.134.75" + "ips": [ + "185.185.134.75" + ] }, { "country": "Israel", "region": "South", "server_name": "CH-IL#1", "hostname": "ch-il-01a.protonvpn.net", - "entry_ip": "185.159.157.168" + "ips": [ + "185.159.157.168" + ] }, { "country": "Israel", @@ -84305,7 +96185,9 @@ "city": "Petah Tikva", "server_name": "IL#5", "hostname": "il-05.protonvpn.net", - "entry_ip": "185.185.134.115" + "ips": [ + "185.185.134.115" + ] }, { "country": "Israel", @@ -84313,3466 +96195,5617 @@ "city": "Petah Tikva", "server_name": "IL#6", "hostname": "node-il-02.protonvpn.net", - "entry_ip": "185.185.134.114" + "ips": [ + "185.185.134.114", + "185.185.134.114", + "185.185.134.114" + ] }, { "country": "Italy", "server_name": "CH-IT#1", "hostname": "ch-it-01a.protonvpn.net", - "entry_ip": "185.159.157.18" + "ips": [ + "185.159.157.18" + ] }, { "country": "Italy", "server_name": "CH-IT#1", "hostname": "ch-it-01b.protonvpn.net", - "entry_ip": "185.159.157.87" + "ips": [ + "185.159.157.87" + ] }, { "country": "Italy", "server_name": "IS-IT#1", "hostname": "is-it-01a.protonvpn.net", - "entry_ip": "185.159.158.154" + "ips": [ + "185.159.158.154" + ] }, { "country": "Italy", "city": "Milan", "server_name": "IT#1", "hostname": "it-01.protonvpn.net", - "entry_ip": "185.128.27.99" + "ips": [ + "185.128.27.99", + "185.128.27.99" + ] }, { "country": "Italy", "city": "Milan", "server_name": "IT#13", "hostname": "it-13.protonvpn.net", - "entry_ip": "185.94.193.147" + "ips": [ + "185.94.193.147" + ] }, { "country": "Italy", "city": "Milan", "server_name": "IT#14", "hostname": "node-it-03.protonvpn.net", - "entry_ip": "185.94.193.146" + "ips": [ + "185.94.193.146", + "185.94.193.146", + "185.94.193.146" + ] }, { "country": "Italy", "city": "Milan", "server_name": "IT#3", "hostname": "node-it-01.protonvpn.net", - "entry_ip": "185.128.27.98" + "ips": [ + "185.128.27.98", + "185.128.27.98" + ] }, { "country": "Italy", "city": "Milan", "server_name": "IT#5", "hostname": "it-05.protonvpn.net", - "entry_ip": "217.138.219.179" + "ips": [ + "217.138.219.179", + "217.138.219.179", + "217.138.219.179" + ] }, { "country": "Italy", "city": "Milan", "server_name": "IT#8", "hostname": "node-it-02.protonvpn.net", - "entry_ip": "217.138.219.178" + "ips": [ + "217.138.219.178", + "217.138.219.178", + "217.138.219.178", + "217.138.219.178", + "217.138.219.178" + ] }, { "country": "Japan", "server_name": "CH-JP#1", "hostname": "ch-jp-01a.protonvpn.net", - "entry_ip": "185.159.157.80" + "ips": [ + "185.159.157.80" + ] }, { "country": "Japan", "server_name": "JP-FREE#1", "hostname": "node-jp-11.protonvpn.net", - "entry_ip": "103.125.235.18" + "ips": [ + "103.125.235.18", + "103.125.235.18", + "103.125.235.18", + "103.125.235.18" + ] }, { "country": "Japan", "server_name": "JP-FREE#2", "hostname": "node-jp-16.protonvpn.net", - "entry_ip": "138.199.22.102" + "ips": [ + "138.199.22.102", + "138.199.22.102", + "138.199.22.102", + "138.199.22.102" + ] }, { "country": "Japan", "server_name": "JP-FREE#3", "hostname": "node-jp-13.protonvpn.net", - "entry_ip": "45.14.71.5" + "ips": [ + "45.14.71.5", + "45.14.71.5", + "45.14.71.5", + "45.14.71.5" + ] }, { "country": "Japan", "server_name": "JP-FREE#4", "hostname": "node-jp-18.protonvpn.net", - "entry_ip": "138.199.21.193" + "ips": [ + "138.199.21.193", + "138.199.21.193", + "138.199.21.193", + "138.199.21.193" + ] }, { "country": "Japan", "server_name": "JP-FREE#5", "hostname": "node-jp-19.protonvpn.net", - "entry_ip": "138.199.21.206" + "ips": [ + "138.199.21.206", + "138.199.21.206", + "138.199.21.206", + "138.199.21.206" + ] }, { "country": "Japan", "server_name": "JP-FREE#6", "hostname": "node-jp-20.protonvpn.net", - "entry_ip": "138.199.21.211" + "ips": [ + "138.199.21.211", + "138.199.21.211", + "138.199.21.211", + "138.199.21.211" + ] }, { "country": "Japan", "server_name": "JP-FREE#7", "hostname": "node-jp-15.protonvpn.net", - "entry_ip": "45.14.71.7" + "ips": [ + "45.14.71.7", + "45.14.71.7", + "45.14.71.7", + "45.14.71.7" + ] }, { "country": "Japan", "server_name": "JP-FREE#8", "hostname": "node-jp-21.protonvpn.net", - "entry_ip": "212.102.51.241" + "ips": [ + "212.102.51.241", + "212.102.51.241", + "212.102.51.241", + "212.102.51.241" + ] }, { "country": "Japan", "server_name": "SE-JP#1", "hostname": "se-jp-01a.protonvpn.net", - "entry_ip": "185.159.156.56" + "ips": [ + "185.159.156.56" + ] }, { "country": "Japan", "server_name": "SE-JP#1", "hostname": "se-jp-01d.protonvpn.net", - "entry_ip": "185.159.156.37" + "ips": [ + "185.159.156.37" + ] }, { "country": "Japan", "city": "Osaka", "server_name": "JP#51", "hostname": "jp-51.protonvpn.net", - "entry_ip": "45.14.71.12" + "ips": [ + "45.14.71.12", + "45.14.71.12", + "45.14.71.12" + ] }, { "country": "Japan", "city": "Osaka", "server_name": "JP#54", "hostname": "node-jp-14.protonvpn.net", - "entry_ip": "45.14.71.6" + "ips": [ + "45.14.71.6", + "45.14.71.6", + "45.14.71.6", + "45.14.71.6", + "45.14.71.6" + ] }, { "country": "Japan", "city": "Tokyo", "server_name": "JP#43", "hostname": "jp-43.protonvpn.net", - "entry_ip": "103.125.235.25" + "ips": [ + "103.125.235.25", + "103.125.235.25" + ] }, { "country": "Japan", "city": "Tokyo", "server_name": "JP#45", "hostname": "node-jp-12.protonvpn.net", - "entry_ip": "103.125.235.19" + "ips": [ + "103.125.235.19", + "103.125.235.19", + "103.125.235.19", + "103.125.235.19", + "103.125.235.19", + "103.125.235.19" + ] }, { "country": "Japan", "city": "Tokyo", "server_name": "JP#59", "hostname": "jp-59.protonvpn.net", - "entry_ip": "37.19.205.242" + "ips": [ + "37.19.205.242", + "37.19.205.242", + "37.19.205.242", + "37.19.205.242" + ] }, { "country": "Japan", "city": "Tokyo", "server_name": "JP#69", "hostname": "node-jp-17.protonvpn.net", - "entry_ip": "138.199.22.97" + "ips": [ + "138.199.22.97", + "138.199.22.97", + "138.199.22.97", + "138.199.22.97", + "138.199.22.97", + "138.199.22.97", + "138.199.22.97", + "138.199.22.97" + ] }, { "country": "Korea", "server_name": "SE-KR#2", "hostname": "se-kr-01a.protonvpn.net", - "entry_ip": "185.159.156.87" + "ips": [ + "185.159.156.87" + ] }, { "country": "Korea", "city": "Seoul", "server_name": "KR#13", "hostname": "node-kr-03.protonvpn.net", - "entry_ip": "79.110.55.2" + "ips": [ + "79.110.55.2", + "79.110.55.2", + "79.110.55.2", + "79.110.55.2", + "79.110.55.2", + "79.110.55.2", + "79.110.55.2", + "79.110.55.2" + ] }, { "country": "Latvia", "server_name": "CH-LV#1", "hostname": "ch-lv-01a.protonvpn.net", - "entry_ip": "185.159.157.61" + "ips": [ + "185.159.157.61" + ] }, { "country": "Latvia", "server_name": "CH-LV#1", "hostname": "ch-lv-01b.protonvpn.net", - "entry_ip": "185.159.157.81" + "ips": [ + "185.159.157.81" + ] }, { "country": "Latvia", "city": "Riga", "server_name": "LV#1", "hostname": "lv-01.protonvpn.net", - "entry_ip": "196.240.54.115" + "ips": [ + "196.240.54.115", + "196.240.54.115", + "196.240.54.115" + ] }, { "country": "Latvia", "city": "Riga", "server_name": "LV#4", "hostname": "node-lv-01.protonvpn.net", - "entry_ip": "196.240.54.114" + "ips": [ + "196.240.54.114", + "196.240.54.114", + "196.240.54.114", + "196.240.54.114", + "196.240.54.114" + ] }, { "country": "Lithuania", "server_name": "CH-LT#1", "hostname": "ch-lt-01a.protonvpn.net", - "entry_ip": "185.159.157.110" + "ips": [ + "185.159.157.110" + ] }, { "country": "Lithuania", "server_name": "SE-LT#1", "hostname": "se-lt-01a.protonvpn.net", - "entry_ip": "185.159.156.43" + "ips": [ + "185.159.156.43" + ] }, { "country": "Lithuania", "city": "Siauliai", "server_name": "LT#1", "hostname": "lt-01.protonvpn.net", - "entry_ip": "85.206.163.145" + "ips": [ + "85.206.163.145", + "85.206.163.145", + "85.206.163.145" + ] }, { "country": "Lithuania", "city": "Siauliai", "server_name": "LT#4", "hostname": "node-lt-01.protonvpn.net", - "entry_ip": "85.206.163.144" + "ips": [ + "85.206.163.144", + "85.206.163.144", + "85.206.163.144", + "85.206.163.144", + "85.206.163.144" + ] }, { "country": "Luxembourg", "server_name": "CH-LU#1", "hostname": "ch-lu-01d.protonvpn.net", - "entry_ip": "185.159.157.66" + "ips": [ + "185.159.157.66" + ] }, { "country": "Luxembourg", "server_name": "IS-LU#1", "hostname": "is-lu-01a.protonvpn.net", - "entry_ip": "185.159.158.147" + "ips": [ + "185.159.158.147" + ] }, { "country": "Luxembourg", "city": "Luxembourg City", "server_name": "LU#13", "hostname": "lu-13.protonvpn.net", - "entry_ip": "92.223.89.134" + "ips": [ + "92.223.89.134" + ] }, { "country": "Luxembourg", "city": "Luxembourg City", "server_name": "LU#14", "hostname": "node-lu-03.protonvpn.net", - "entry_ip": "92.223.89.133" + "ips": [ + "92.223.89.133", + "92.223.89.133", + "92.223.89.133" + ] }, { "country": "Luxembourg", "city": "Luxembourg City", "server_name": "LU#5", "hostname": "lu-05.protonvpn.net", - "entry_ip": "92.223.89.145" + "ips": [ + "92.223.89.145", + "92.223.89.145", + "92.223.89.145" + ] }, { "country": "Luxembourg", "city": "Luxembourg City", "server_name": "LU#8", "hostname": "node-lu-02.protonvpn.net", - "entry_ip": "92.223.89.141" + "ips": [ + "92.223.89.141", + "92.223.89.141", + "92.223.89.141", + "92.223.89.141", + "92.223.89.141" + ] }, { "country": "Malaysia", "server_name": "CH-MY#1", "hostname": "ch-my-01a.protonvpn.net", - "entry_ip": "185.159.157.95" + "ips": [ + "185.159.157.95" + ] }, { "country": "Malaysia", "city": "Johor Bahru", "server_name": "MY#1", "hostname": "my-01.protonvpn.net", - "entry_ip": "103.230.142.227" + "ips": [ + "103.230.142.227", + "103.230.142.227", + "103.230.142.227" + ] }, { "country": "Malaysia", "city": "Johor Bahru", "server_name": "MY#4", "hostname": "node-my-01.protonvpn.net", - "entry_ip": "103.230.142.226" + "ips": [ + "103.230.142.226", + "103.230.142.226", + "103.230.142.226", + "103.230.142.226", + "103.230.142.226" + ] }, { "country": "Mexico", "server_name": "CH-MX#1", "hostname": "ch-mx-01a.protonvpn.net", - "entry_ip": "185.159.157.91" + "ips": [ + "185.159.157.91" + ] }, { "country": "Mexico", "city": "Chiapas", "server_name": "MX#1", "hostname": "mx-01.protonvpn.net", - "entry_ip": "191.96.145.239" + "ips": [ + "191.96.145.239", + "191.96.145.239", + "191.96.145.239" + ] }, { - "country": "Mexico", - "city": "Chiapas", - "server_name": "MX#4", - "hostname": "node-mx-01.protonvpn.net", - "entry_ip": "191.96.145.238" + "country": "Moldova", + "server_name": "CH-MD#1", + "hostname": "ch-md-01a.protonvpn.net", + "ips": [ + "185.159.157.111" + ] + }, + { + "country": "Moldova", + "server_name": "SE-MD#1", + "hostname": "se-md-01a.protonvpn.net", + "ips": [ + "185.159.156.45" + ] }, { "country": "Moldova", "city": "Chisinau", "server_name": "MD#1", "hostname": "md-01.protonvpn.net", - "entry_ip": "178.17.168.163" - }, - { - "country": "Moldova", - "city": "Chisinau", - "server_name": "MD#4", - "hostname": "node-md-01.protonvpn.net", - "entry_ip": "178.17.168.162" + "ips": [ + "178.17.168.163", + "178.17.168.163", + "178.17.168.163" + ] }, { "country": "Netherlands", "server_name": "CH-NL#1", "hostname": "ch-nl-01a.protonvpn.net", - "entry_ip": "185.159.157.28" + "ips": [ + "185.159.157.28" + ] }, { "country": "Netherlands", "server_name": "CH-NL#1", "hostname": "ch-nl-01b.protonvpn.net", - "entry_ip": "185.159.157.83" + "ips": [ + "185.159.157.83" + ] }, { "country": "Netherlands", "server_name": "CH-NL#1", "hostname": "ch-nl-01c.protonvpn.net", - "entry_ip": "185.159.157.178" + "ips": [ + "185.159.157.178" + ] }, { "country": "Netherlands", "server_name": "CH-NL#1", "hostname": "ch-nl-01d.protonvpn.net", - "entry_ip": "185.159.157.179" + "ips": [ + "185.159.157.179" + ] }, { "country": "Netherlands", "server_name": "IS-NL#1", "hostname": "is-nl-01a.protonvpn.net", - "entry_ip": "185.159.158.105" + "ips": [ + "185.159.158.105" + ] }, { "country": "Netherlands", "server_name": "IS-NL#1", "hostname": "is-nl-01b.protonvpn.net", - "entry_ip": "185.159.158.55" + "ips": [ + "185.159.158.55" + ] }, { "country": "Netherlands", "server_name": "IS-NL#1", "hostname": "is-nl-01c.protonvpn.net", - "entry_ip": "185.159.158.134" + "ips": [ + "185.159.158.134" + ] }, { "country": "Netherlands", "server_name": "IS-NL#1", "hostname": "is-nl-01d.protonvpn.net", - "entry_ip": "185.159.158.135" + "ips": [ + "185.159.158.135" + ] }, { "country": "Netherlands", "server_name": "IS-NL#1", "hostname": "is-nl-01e.protonvpn.net", - "entry_ip": "185.159.158.146" + "ips": [ + "185.159.158.146" + ] }, { "country": "Netherlands", "server_name": "IS-NL#1", "hostname": "is-nl-01f.protonvpn.net", - "entry_ip": "185.159.158.173" + "ips": [ + "185.159.158.173" + ] }, { "country": "Netherlands", "server_name": "IS-NL#1", "hostname": "is-nl-01i.protonvpn.net", - "entry_ip": "185.159.158.176" + "ips": [ + "185.159.158.176" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#1", "hostname": "node-nl-02.protonvpn.net", - "entry_ip": "217.23.3.76" + "ips": [ + "217.23.3.76", + "217.23.3.76", + "217.23.3.76", + "217.23.3.76" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#10", "hostname": "node-nl-50.protonvpn.net", - "entry_ip": "185.107.57.51" + "ips": [ + "185.107.57.51", + "185.107.57.51", + "185.107.57.51", + "185.107.57.51" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#11", "hostname": "node-nl-21.protonvpn.net", - "entry_ip": "185.107.95.225" + "ips": [ + "185.107.95.225", + "185.107.95.225", + "185.107.95.225", + "185.107.95.225" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#12", "hostname": "node-nl-57.protonvpn.net", - "entry_ip": "138.199.7.159" + "ips": [ + "138.199.7.159", + "138.199.7.159", + "138.199.7.159", + "138.199.7.159" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#13", "hostname": "node-nl-03.protonvpn.net", - "entry_ip": "89.39.107.188" + "ips": [ + "89.39.107.188", + "89.39.107.188", + "89.39.107.188", + "89.39.107.188" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#14", "hostname": "node-nl-04.protonvpn.net", - "entry_ip": "89.39.107.109" + "ips": [ + "89.39.107.109", + "89.39.107.109", + "89.39.107.109", + "89.39.107.109" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#15", "hostname": "node-nl-05.protonvpn.net", - "entry_ip": "89.39.107.113" + "ips": [ + "89.39.107.113", + "89.39.107.113", + "89.39.107.113", + "89.39.107.113" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#16", "hostname": "node-nl-06.protonvpn.net", - "entry_ip": "89.39.107.185" + "ips": [ + "89.39.107.185", + "89.39.107.185", + "89.39.107.185", + "89.39.107.185" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#17", "hostname": "node-nl-09.protonvpn.net", - "entry_ip": "109.201.133.20" + "ips": [ + "109.201.133.20", + "109.201.133.20", + "109.201.133.20", + "109.201.133.20" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#18", "hostname": "node-nl-23.protonvpn.net", - "entry_ip": "89.38.97.115" + "ips": [ + "89.38.97.115", + "89.38.97.115", + "89.38.97.115", + "89.38.97.115" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#19", "hostname": "node-nl-24.protonvpn.net", - "entry_ip": "190.2.131.198" + "ips": [ + "190.2.131.198", + "190.2.131.198", + "190.2.131.198", + "190.2.131.198" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#2", "hostname": "node-nl-51.protonvpn.net", - "entry_ip": "185.107.57.61" + "ips": [ + "185.107.57.61", + "185.107.57.61", + "185.107.57.61", + "185.107.57.61" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#20", "hostname": "node-nl-26.protonvpn.net", - "entry_ip": "190.2.131.200" + "ips": [ + "190.2.131.200", + "190.2.131.200", + "190.2.131.200", + "190.2.131.200" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#21", "hostname": "node-nl-27.protonvpn.net", - "entry_ip": "190.2.130.161" + "ips": [ + "190.2.130.161", + "190.2.130.161", + "190.2.130.161", + "190.2.130.161" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#22", "hostname": "node-nl-34.protonvpn.net", - "entry_ip": "46.166.182.59" + "ips": [ + "46.166.182.59", + "46.166.182.59", + "46.166.182.59", + "46.166.182.59" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#23", "hostname": "node-nl-35.protonvpn.net", - "entry_ip": "46.166.182.31" + "ips": [ + "46.166.182.31", + "46.166.182.31", + "46.166.182.31", + "46.166.182.31" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#24", "hostname": "node-nl-38.protonvpn.net", - "entry_ip": "107.181.180.167" + "ips": [ + "107.181.180.167", + "107.181.180.167", + "107.181.180.167", + "107.181.180.167" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#25", "hostname": "node-nl-16.protonvpn.net", - "entry_ip": "192.40.57.226" + "ips": [ + "192.40.57.226", + "192.40.57.226", + "192.40.57.226", + "192.40.57.226" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#26", "hostname": "node-nl-17.protonvpn.net", - "entry_ip": "192.40.57.231" + "ips": [ + "192.40.57.231", + "192.40.57.231", + "192.40.57.231", + "192.40.57.231" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#27", "hostname": "node-nl-52.protonvpn.net", - "entry_ip": "92.119.179.82" + "ips": [ + "92.119.179.82", + "92.119.179.82", + "92.119.179.82", + "92.119.179.82" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#28", "hostname": "node-nl-58.protonvpn.net", - "entry_ip": "138.199.7.170" + "ips": [ + "138.199.7.170", + "138.199.7.170", + "138.199.7.170", + "138.199.7.170" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#29", "hostname": "node-nl-59.protonvpn.net", - "entry_ip": "138.199.7.171" + "ips": [ + "138.199.7.171", + "138.199.7.171", + "138.199.7.171", + "138.199.7.171" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#3", "hostname": "node-nl-12.protonvpn.net", - "entry_ip": "185.165.241.34" + "ips": [ + "185.165.241.34", + "185.165.241.34", + "185.165.241.34", + "185.165.241.34" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#30", "hostname": "node-nl-60.protonvpn.net", - "entry_ip": "138.199.7.172" + "ips": [ + "138.199.7.172", + "138.199.7.172", + "138.199.7.172", + "138.199.7.172" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#31", "hostname": "node-nl-61.protonvpn.net", - "entry_ip": "138.199.7.173" + "ips": [ + "138.199.7.173", + "138.199.7.173", + "138.199.7.173", + "138.199.7.173" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#32", "hostname": "node-nl-62.protonvpn.net", - "entry_ip": "138.199.7.225" + "ips": [ + "138.199.7.225", + "138.199.7.225", + "138.199.7.225", + "138.199.7.225" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#33", "hostname": "node-nl-63.protonvpn.net", - "entry_ip": "138.199.7.240" + "ips": [ + "138.199.7.240", + "138.199.7.240", + "138.199.7.240", + "138.199.7.240" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#34", "hostname": "node-nl-64.protonvpn.net", - "entry_ip": "138.199.7.239" + "ips": [ + "138.199.7.239", + "138.199.7.239", + "138.199.7.239", + "138.199.7.239" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#35", "hostname": "node-nl-65.protonvpn.net", - "entry_ip": "138.199.7.245" + "ips": [ + "138.199.7.245", + "138.199.7.245", + "138.199.7.245", + "138.199.7.245" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#36", "hostname": "node-nl-99.protonvpn.net", - "entry_ip": "185.180.222.45" + "ips": [ + "185.180.222.45", + "185.180.222.45", + "185.180.222.45", + "185.180.222.45" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#37", "hostname": "node-nl-100.protonvpn.net", - "entry_ip": "212.8.253.56" + "ips": [ + "212.8.253.56", + "212.8.253.56", + "212.8.253.56", + "212.8.253.56" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#38", "hostname": "node-nl-101.protonvpn.net", - "entry_ip": "190.2.153.209" + "ips": [ + "190.2.153.209", + "190.2.153.209", + "190.2.153.209", + "190.2.153.209" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#39", "hostname": "node-nl-66.protonvpn.net", - "entry_ip": "212.102.35.225" + "ips": [ + "212.102.35.225", + "212.102.35.225", + "212.102.35.225", + "212.102.35.225" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#4", "hostname": "node-nl-22.protonvpn.net", - "entry_ip": "190.2.132.198" + "ips": [ + "190.2.132.198", + "190.2.132.198", + "190.2.132.198", + "190.2.132.198" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#40", "hostname": "node-nl-67.protonvpn.net", - "entry_ip": "212.102.35.230" + "ips": [ + "212.102.35.230", + "212.102.35.230", + "212.102.35.230", + "212.102.35.230" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#41", "hostname": "node-nl-68.protonvpn.net", - "entry_ip": "212.102.35.244" + "ips": [ + "212.102.35.244", + "212.102.35.244", + "212.102.35.244", + "212.102.35.244" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#42", "hostname": "node-nl-69.protonvpn.net", - "entry_ip": "169.150.196.65" + "ips": [ + "169.150.196.65", + "169.150.196.65", + "169.150.196.65", + "169.150.196.65" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#43", "hostname": "node-nl-70.protonvpn.net", - "entry_ip": "169.150.196.71" + "ips": [ + "169.150.196.71", + "169.150.196.71", + "169.150.196.71", + "169.150.196.71" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#44", "hostname": "node-nl-71.protonvpn.net", - "entry_ip": "169.150.196.77" + "ips": [ + "169.150.196.77", + "169.150.196.77", + "169.150.196.77", + "169.150.196.77" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#45", "hostname": "node-nl-72.protonvpn.net", - "entry_ip": "169.150.196.83" + "ips": [ + "169.150.196.83", + "169.150.196.83", + "169.150.196.83", + "169.150.196.83" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#46", "hostname": "node-nl-73.protonvpn.net", - "entry_ip": "169.150.196.89" + "ips": [ + "169.150.196.89", + "169.150.196.89", + "169.150.196.89", + "169.150.196.89" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#47", "hostname": "node-nl-36.protonvpn.net", - "entry_ip": "185.107.80.216" + "ips": [ + "185.107.80.216", + "185.107.80.216", + "185.107.80.216", + "185.107.80.216" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#48", "hostname": "node-nl-74.protonvpn.net", - "entry_ip": "169.150.196.95" + "ips": [ + "169.150.196.95", + "169.150.196.95", + "169.150.196.95", + "169.150.196.95" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#49", "hostname": "node-nl-75.protonvpn.net", - "entry_ip": "169.150.196.96" + "ips": [ + "169.150.196.96", + "169.150.196.96", + "169.150.196.96", + "169.150.196.96" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#5", "hostname": "node-nl-25.protonvpn.net", - "entry_ip": "190.2.133.223" + "ips": [ + "190.2.133.223", + "190.2.133.223", + "190.2.133.223", + "190.2.133.223" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#50", "hostname": "node-nl-76.protonvpn.net", - "entry_ip": "169.150.196.97" + "ips": [ + "169.150.196.97", + "169.150.196.97", + "169.150.196.97", + "169.150.196.97" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#51", "hostname": "node-nl-77.protonvpn.net", - "entry_ip": "169.150.196.98" + "ips": [ + "169.150.196.98", + "169.150.196.98", + "169.150.196.98", + "169.150.196.98" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#52", "hostname": "node-nl-78.protonvpn.net", - "entry_ip": "169.150.196.99" + "ips": [ + "169.150.196.99", + "169.150.196.99", + "169.150.196.99", + "169.150.196.99" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#53", "hostname": "node-nl-79.protonvpn.net", - "entry_ip": "169.150.196.100" + "ips": [ + "169.150.196.100", + "169.150.196.100", + "169.150.196.100", + "169.150.196.100" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#54", "hostname": "node-nl-80.protonvpn.net", - "entry_ip": "138.199.7.233" + "ips": [ + "138.199.7.233", + "138.199.7.233", + "138.199.7.233", + "138.199.7.233" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#55", "hostname": "node-nl-81.protonvpn.net", - "entry_ip": "138.199.7.234" + "ips": [ + "138.199.7.234", + "138.199.7.234", + "138.199.7.234", + "138.199.7.234" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#56", "hostname": "node-nl-82.protonvpn.net", - "entry_ip": "138.199.7.250" + "ips": [ + "138.199.7.250", + "138.199.7.250", + "138.199.7.250", + "138.199.7.250" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#57", "hostname": "node-nl-83.protonvpn.net", - "entry_ip": "138.199.7.251" + "ips": [ + "138.199.7.251", + "138.199.7.251", + "138.199.7.251", + "138.199.7.251" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#58", "hostname": "node-nl-84.protonvpn.net", - "entry_ip": "195.225.55.34" + "ips": [ + "195.225.55.34", + "195.225.55.34", + "195.225.55.34", + "195.225.55.34" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#59", "hostname": "node-nl-85.protonvpn.net", - "entry_ip": "195.225.55.26" + "ips": [ + "195.225.55.26", + "195.225.55.26", + "195.225.55.26", + "195.225.55.26" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#6", "hostname": "node-nl-33.protonvpn.net", - "entry_ip": "46.166.182.69" + "ips": [ + "46.166.182.69", + "46.166.182.69", + "46.166.182.69", + "46.166.182.69" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#60", "hostname": "node-nl-86.protonvpn.net", - "entry_ip": "195.225.55.18" + "ips": [ + "195.225.55.18", + "195.225.55.18", + "195.225.55.18", + "195.225.55.18" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#61", "hostname": "node-nl-87.protonvpn.net", - "entry_ip": "195.225.55.10" + "ips": [ + "195.225.55.10", + "195.225.55.10", + "195.225.55.10", + "195.225.55.10" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#62", "hostname": "node-nl-88.protonvpn.net", - "entry_ip": "195.225.55.2" + "ips": [ + "195.225.55.2", + "195.225.55.2", + "195.225.55.2", + "195.225.55.2" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#63", "hostname": "node-nl-89.protonvpn.net", - "entry_ip": "91.229.23.180" + "ips": [ + "91.229.23.180", + "91.229.23.180", + "91.229.23.180", + "91.229.23.180" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#64", "hostname": "node-nl-90.protonvpn.net", - "entry_ip": "93.190.142.102" + "ips": [ + "93.190.142.102", + "93.190.142.102", + "93.190.142.102", + "93.190.142.102" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#65", "hostname": "node-nl-91.protonvpn.net", - "entry_ip": "109.236.81.160" + "ips": [ + "109.236.81.160", + "109.236.81.160", + "109.236.81.160", + "109.236.81.160" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#66", "hostname": "node-nl-92.protonvpn.net", - "entry_ip": "93.190.141.58" + "ips": [ + "93.190.141.58", + "93.190.141.58", + "93.190.141.58", + "93.190.141.58" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#67", "hostname": "node-nl-93.protonvpn.net", - "entry_ip": "185.183.34.27" + "ips": [ + "185.183.34.27", + "185.183.34.27", + "185.183.34.27", + "185.183.34.27" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#68", "hostname": "node-nl-94.protonvpn.net", - "entry_ip": "185.183.34.149" + "ips": [ + "185.183.34.149", + "185.183.34.149", + "185.183.34.149", + "185.183.34.149" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#69", "hostname": "node-nl-95.protonvpn.net", - "entry_ip": "185.183.34.165" + "ips": [ + "185.183.34.165", + "185.183.34.165", + "185.183.34.165", + "185.183.34.165" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#7", "hostname": "node-nl-37.protonvpn.net", - "entry_ip": "107.181.180.162" + "ips": [ + "107.181.180.162", + "107.181.180.162", + "107.181.180.162", + "107.181.180.162" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#70", "hostname": "node-nl-96.protonvpn.net", - "entry_ip": "185.180.222.89" + "ips": [ + "185.180.222.89", + "185.180.222.89", + "185.180.222.89", + "185.180.222.89" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#71", "hostname": "node-nl-97.protonvpn.net", - "entry_ip": "109.236.81.166" + "ips": [ + "109.236.81.166", + "109.236.81.166", + "109.236.81.166", + "109.236.81.166" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#72", "hostname": "node-nl-98.protonvpn.net", - "entry_ip": "93.190.138.166" + "ips": [ + "93.190.138.166", + "93.190.138.166", + "93.190.138.166", + "93.190.138.166" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#73", "hostname": "node-nl-102.protonvpn.net", - "entry_ip": "190.2.147.7" + "ips": [ + "190.2.147.7", + "190.2.147.7", + "190.2.147.7", + "190.2.147.7" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#74", "hostname": "node-nl-103.protonvpn.net", - "entry_ip": "89.38.97.138" + "ips": [ + "89.38.97.138", + "89.38.97.138", + "89.38.97.138", + "89.38.97.138" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#75", "hostname": "node-nl-104.protonvpn.net", - "entry_ip": "185.183.33.217" + "ips": [ + "185.183.33.217", + "185.183.33.217", + "185.183.33.217", + "185.183.33.217" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#76", "hostname": "node-nl-105.protonvpn.net", - "entry_ip": "185.183.33.11" + "ips": [ + "185.183.33.11", + "185.183.33.11", + "185.183.33.11", + "185.183.33.11" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#77", "hostname": "node-nl-106.protonvpn.net", - "entry_ip": "212.8.252.66" + "ips": [ + "212.8.252.66", + "212.8.252.66", + "212.8.252.66", + "212.8.252.66" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#78", "hostname": "node-nl-107.protonvpn.net", - "entry_ip": "185.177.124.12" + "ips": [ + "185.177.124.12", + "185.177.124.12", + "185.177.124.12", + "185.177.124.12" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#79", "hostname": "node-nl-108.protonvpn.net", - "entry_ip": "185.177.124.84" + "ips": [ + "185.177.124.84", + "185.177.124.84", + "185.177.124.84", + "185.177.124.84" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#8", "hostname": "node-nl-55.protonvpn.net", - "entry_ip": "89.38.99.188" + "ips": [ + "89.38.99.188", + "89.38.99.188", + "89.38.99.188", + "89.38.99.188" + ] }, { "country": "Netherlands", "server_name": "NL-FREE#9", "hostname": "node-nl-56.protonvpn.net", - "entry_ip": "190.2.138.15" + "ips": [ + "190.2.138.15", + "190.2.138.15", + "190.2.138.15", + "190.2.138.15" + ] }, { "country": "Netherlands", "server_name": "SE-NL#1", "hostname": "se-nl-01a.protonvpn.net", - "entry_ip": "185.159.156.72" + "ips": [ + "185.159.156.72" + ] }, { "country": "Netherlands", "server_name": "SE-NL#1", "hostname": "se-nl-01b.protonvpn.net", - "entry_ip": "185.159.156.73" + "ips": [ + "185.159.156.73" + ] }, { "country": "Netherlands", "server_name": "SE-NL#1", "hostname": "se-nl-01c.protonvpn.net", - "entry_ip": "185.159.156.74" + "ips": [ + "185.159.156.74" + ] }, { "country": "Netherlands", "server_name": "SE-NL#1", "hostname": "se-nl-01d.protonvpn.net", - "entry_ip": "185.159.156.75" + "ips": [ + "185.159.156.75" + ] }, { "country": "Netherlands", "server_name": "SE-NL#1", "hostname": "se-nl-01e.protonvpn.net", - "entry_ip": "185.159.156.76" + "ips": [ + "185.159.156.76" + ] }, { "country": "Netherlands", "server_name": "SE-NL#1", "hostname": "se-nl-01f.protonvpn.net", - "entry_ip": "185.159.156.91" + "ips": [ + "185.159.156.91" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#1", "hostname": "nl-01.protonvpn.net", - "entry_ip": "62.112.9.165" + "ips": [ + "62.112.9.165", + "62.112.9.165" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#13", "hostname": "nl-13.protonvpn.net", - "entry_ip": "190.2.146.228" + "ips": [ + "190.2.146.228" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#14", "hostname": "node-nl-13.protonvpn.net", - "entry_ip": "190.2.146.180" + "ips": [ + "190.2.146.180", + "190.2.146.180", + "190.2.146.180" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#17", "hostname": "node-nl-14.protonvpn.net", - "entry_ip": "192.40.57.50" + "ips": [ + "192.40.57.50", + "192.40.57.50", + "192.40.57.50", + "192.40.57.50" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#21", "hostname": "node-nl-15.protonvpn.net", - "entry_ip": "192.40.57.55" + "ips": [ + "192.40.57.55", + "192.40.57.55", + "192.40.57.55", + "192.40.57.55" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#227", "hostname": "nl-227.protonvpn.net", - "entry_ip": "146.70.86.115" + "ips": [ + "146.70.86.115" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#228", "hostname": "node-nl-53.protonvpn.net", - "entry_ip": "146.70.86.114" + "ips": [ + "146.70.86.114", + "146.70.86.114", + "146.70.86.114", + "146.70.86.114", + "146.70.86.114", + "146.70.86.114", + "146.70.86.114", + "146.70.86.114", + "146.70.86.114", + "146.70.86.114", + "146.70.86.114" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#25", "hostname": "nl-25.protonvpn.net", - "entry_ip": "192.40.57.237" + "ips": [ + "192.40.57.237" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#26", "hostname": "node-nl-18.protonvpn.net", - "entry_ip": "192.40.57.236" + "ips": [ + "192.40.57.236", + "192.40.57.236", + "192.40.57.236" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#3", "hostname": "node-nl-01.protonvpn.net", - "entry_ip": "62.112.9.164" + "ips": [ + "62.112.9.164", + "62.112.9.164" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#37", "hostname": "nl-37.protonvpn.net", - "entry_ip": "190.2.132.141" + "ips": [ + "190.2.132.141", + "190.2.132.141" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#39", "hostname": "node-nl-28.protonvpn.net", - "entry_ip": "190.2.132.139" + "ips": [ + "190.2.132.139", + "190.2.132.139" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#41", "hostname": "node-nl-29.protonvpn.net", - "entry_ip": "190.2.132.124" + "ips": [ + "190.2.132.124", + "190.2.132.124", + "190.2.132.124", + "190.2.132.124" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#45", "hostname": "nl-45.protonvpn.net", - "entry_ip": "190.2.131.157" + "ips": [ + "190.2.131.157" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#46", "hostname": "node-nl-30.protonvpn.net", - "entry_ip": "190.2.131.156" + "ips": [ + "190.2.131.156", + "190.2.131.156", + "190.2.131.156" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#49", "hostname": "node-nl-31.protonvpn.net", - "entry_ip": "85.159.237.72" + "ips": [ + "85.159.237.72", + "85.159.237.72", + "85.159.237.72", + "85.159.237.72" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#5", "hostname": "node-nl-08.protonvpn.net", - "entry_ip": "77.247.178.180" + "ips": [ + "77.247.178.180", + "77.247.178.180", + "77.247.178.180", + "77.247.178.180" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#57", "hostname": "nl-57.protonvpn.net", - "entry_ip": "107.181.180.173" + "ips": [ + "107.181.180.173" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#58", "hostname": "node-nl-39.protonvpn.net", - "entry_ip": "107.181.180.172" + "ips": [ + "107.181.180.172", + "107.181.180.172", + "107.181.180.172" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#69", "hostname": "nl-69.protonvpn.net", - "entry_ip": "46.166.182.101" + "ips": [ + "46.166.182.101" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#70", "hostname": "node-nl-43.protonvpn.net", - "entry_ip": "46.166.182.100" + "ips": [ + "46.166.182.100", + "46.166.182.100", + "46.166.182.100" + ] }, { "country": "Netherlands", "city": "Amsterdam", "server_name": "NL#85", "hostname": "node-nl-47.protonvpn.net", - "entry_ip": "138.199.7.129" + "ips": [ + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129", + "138.199.7.129" + ] }, { "country": "Netherlands", "city": "Rotterdam", "server_name": "NL#219", "hostname": "nl-219.protonvpn.net", - "entry_ip": "185.107.57.62" + "ips": [ + "185.107.57.62" + ] }, { "country": "Netherlands", "city": "Rotterdam", "server_name": "NL#220", "hostname": "node-nl-48.protonvpn.net", - "entry_ip": "185.107.57.49" + "ips": [ + "185.107.57.49", + "185.107.57.49", + "185.107.57.49" + ] }, { "country": "Netherlands", "city": "Rotterdam", "server_name": "NL#223", "hostname": "nl-223.protonvpn.net", - "entry_ip": "185.107.57.71" + "ips": [ + "185.107.57.71" + ] }, { "country": "Netherlands", "city": "Rotterdam", "server_name": "NL#224", "hostname": "node-nl-49.protonvpn.net", - "entry_ip": "185.107.57.50" + "ips": [ + "185.107.57.50", + "185.107.57.50", + "185.107.57.50" + ] }, { "country": "Netherlands", "city": "Steenbergen", "server_name": "NL#29", "hostname": "nl-29.protonvpn.net", - "entry_ip": "185.107.95.210" + "ips": [ + "185.107.95.210", + "185.107.95.210", + "185.107.95.210" + ] }, { "country": "Netherlands", "city": "Steenbergen", "server_name": "NL#32", "hostname": "node-nl-20.protonvpn.net", - "entry_ip": "185.107.95.209" + "ips": [ + "185.107.95.209", + "185.107.95.209", + "185.107.95.209", + "185.107.95.209", + "185.107.95.209" + ] }, { "country": "Netherlands", "city": "Steenbergen", "server_name": "NL#53", "hostname": "nl-53.protonvpn.net", - "entry_ip": "185.107.80.191" + "ips": [ + "185.107.80.191" + ] }, { "country": "Netherlands", "city": "Steenbergen", "server_name": "NL#54", "hostname": "node-nl-32.protonvpn.net", - "entry_ip": "185.107.80.190" + "ips": [ + "185.107.80.190", + "185.107.80.190", + "185.107.80.190" + ] }, { "country": "Netherlands", "city": "Steenbergen", "server_name": "NL#81", "hostname": "nl-81.protonvpn.net", - "entry_ip": "185.107.57.2" + "ips": [ + "185.107.57.2" + ] }, { "country": "Netherlands", "city": "Steenbergen", "server_name": "NL#82", "hostname": "node-nl-46.protonvpn.net", - "entry_ip": "185.107.57.1" + "ips": [ + "185.107.57.1", + "185.107.57.1", + "185.107.57.1" + ] }, { "country": "New Zealand", "server_name": "CH-NZ#1", "hostname": "ch-nz-01a.protonvpn.net", - "entry_ip": "185.159.157.97" + "ips": [ + "185.159.157.97" + ] }, { "country": "New Zealand", "server_name": "SE-NZ#1", "hostname": "se-nz-01b.protonvpn.net", - "entry_ip": "185.159.156.41" + "ips": [ + "185.159.156.41" + ] }, { "country": "New Zealand", "city": "Auckland", "server_name": "NZ#13", "hostname": "nz-13.protonvpn.net", - "entry_ip": "116.90.74.179" + "ips": [ + "116.90.74.179", + "116.90.74.179", + "116.90.74.179" + ] }, { "country": "New Zealand", "city": "Auckland", "server_name": "NZ#16", "hostname": "node-nz-03.protonvpn.net", - "entry_ip": "116.90.74.178" + "ips": [ + "116.90.74.178", + "116.90.74.178", + "116.90.74.178", + "116.90.74.178", + "116.90.74.178" + ] }, { "country": "New Zealand", "city": "Auckland", "server_name": "NZ#5", "hostname": "nz-05.protonvpn.net", - "entry_ip": "116.90.74.243" + "ips": [ + "116.90.74.243", + "116.90.74.243", + "116.90.74.243" + ] }, { "country": "New Zealand", "city": "Auckland", "server_name": "NZ#8", "hostname": "node-nz-02.protonvpn.net", - "entry_ip": "116.90.74.242" + "ips": [ + "116.90.74.242", + "116.90.74.242", + "116.90.74.242", + "116.90.74.242", + "116.90.74.242" + ] }, { "country": "Nigeria", "server_name": "SE-NG#1", "hostname": "se-es-01a.protonvpn.net", - "entry_ip": "185.159.156.88" + "ips": [ + "185.159.156.88" + ] }, { "country": "Nigeria", "city": "Abuja", "server_name": "NG#1", "hostname": "node-es-07.protonvpn.net", - "entry_ip": "185.76.11.27" + "ips": [ + "185.76.11.27", + "185.76.11.27", + "185.76.11.27", + "185.76.11.27", + "185.76.11.27" + ] }, { "country": "Norway", "server_name": "CH-NO#1", "hostname": "ch-no-01a.protonvpn.net", - "entry_ip": "185.159.157.156" + "ips": [ + "185.159.157.156" + ] }, { "country": "Norway", "server_name": "IS-NO#1", "hostname": "is-no-01b.protonvpn.net", - "entry_ip": "185.159.158.122" + "ips": [ + "185.159.158.122" + ] }, { "country": "Norway", "server_name": "IS-NO#1", "hostname": "is-no-01d.protonvpn.net", - "entry_ip": "185.159.158.145" + "ips": [ + "185.159.158.145" + ] }, { "country": "Norway", "server_name": "SE-NO#1", "hostname": "se-no-01a.protonvpn.net", - "entry_ip": "185.159.156.48" + "ips": [ + "185.159.156.48" + ] }, { "country": "Norway", "city": "Oslo", "server_name": "NO#1", "hostname": "no-01.protonvpn.net", - "entry_ip": "95.174.66.59" + "ips": [ + "95.174.66.59" + ] }, { "country": "Norway", "city": "Oslo", "server_name": "NO#13", "hostname": "no-13.protonvpn.net", - "entry_ip": "84.247.50.179" + "ips": [ + "84.247.50.179" + ] }, { "country": "Norway", "city": "Oslo", "server_name": "NO#14", "hostname": "node-no-03.protonvpn.net", - "entry_ip": "84.247.50.178" + "ips": [ + "84.247.50.178", + "84.247.50.178", + "84.247.50.178" + ] }, { "country": "Norway", "city": "Oslo", "server_name": "NO#17", "hostname": "no-17.protonvpn.net", - "entry_ip": "91.219.215.155" + "ips": [ + "91.219.215.155" + ] }, { "country": "Norway", "city": "Oslo", "server_name": "NO#18", "hostname": "node-no-04.protonvpn.net", - "entry_ip": "91.219.215.154" + "ips": [ + "91.219.215.154", + "91.219.215.154", + "91.219.215.154" + ] }, { "country": "Norway", "city": "Oslo", "server_name": "NO#2", "hostname": "node-no-01.protonvpn.net", - "entry_ip": "95.174.66.58" + "ips": [ + "95.174.66.58", + "95.174.66.58", + "95.174.66.58" + ] }, { "country": "Norway", "city": "Oslo", "server_name": "NO#5", "hostname": "no-05.protonvpn.net", - "entry_ip": "37.120.203.83" + "ips": [ + "37.120.203.83", + "37.120.203.83", + "37.120.203.83" + ] }, { "country": "Norway", "city": "Oslo", "server_name": "NO#8", "hostname": "node-no-02.protonvpn.net", - "entry_ip": "37.120.203.82" + "ips": [ + "37.120.203.82", + "37.120.203.82", + "37.120.203.82", + "37.120.203.82", + "37.120.203.82" + ] }, { "country": "Peru", "server_name": "IS-PE#1", "hostname": "is-pe-01a.protonvpn.net", - "entry_ip": "185.159.158.198" + "ips": [ + "185.159.158.198" + ] }, { "country": "Peru", "city": "Lima", "server_name": "PE#17", "hostname": "pe-17.protonvpn.net", - "entry_ip": "200.25.28.187" + "ips": [ + "200.25.28.187", + "200.25.28.187", + "200.25.28.187" + ] }, { "country": "Peru", "city": "Lima", "server_name": "PE#20", "hostname": "node-pe-03.protonvpn.net", - "entry_ip": "200.25.28.186" + "ips": [ + "200.25.28.186", + "200.25.28.186", + "200.25.28.186", + "200.25.28.186", + "200.25.28.186" + ] }, { "country": "Philippines", "server_name": "SE-PH#1", "hostname": "se-ph-01a.protonvpn.net", - "entry_ip": "185.159.156.86" + "ips": [ + "185.159.156.86" + ] }, { "country": "Philippines", "city": "Manila", "server_name": "PH#1", "hostname": "node-ph-01.protonvpn.net", - "entry_ip": "188.214.125.162" + "ips": [ + "188.214.125.162", + "188.214.125.162", + "188.214.125.162", + "188.214.125.162", + "188.214.125.162", + "188.214.125.162", + "188.214.125.162", + "188.214.125.162" + ] }, { "country": "Poland", "server_name": "CH-PL#1", "hostname": "ch-pl-01a.protonvpn.net", - "entry_ip": "185.159.157.32" + "ips": [ + "185.159.157.32" + ] }, { "country": "Poland", "server_name": "CH-PL#1", "hostname": "ch-pl-01b.protonvpn.net", - "entry_ip": "185.159.157.33" + "ips": [ + "185.159.157.33" + ] }, { "country": "Poland", "server_name": "CH-PL#1", "hostname": "ch-pl-01c.protonvpn.net", - "entry_ip": "185.159.157.96" + "ips": [ + "185.159.157.96" + ] }, { "country": "Poland", "server_name": "CH-PL#1", "hostname": "ch-pl-01d.protonvpn.net", - "entry_ip": "185.159.157.151" + "ips": [ + "185.159.157.151" + ] }, { "country": "Poland", "city": "Warsaw", "server_name": "PL#1", "hostname": "pl-01.protonvpn.net", - "entry_ip": "194.99.105.75" + "ips": [ + "194.99.105.75", + "194.99.105.75" + ] }, { "country": "Poland", "city": "Warsaw", "server_name": "PL#13", "hostname": "pl-13.protonvpn.net", - "entry_ip": "217.138.209.147" + "ips": [ + "217.138.209.147", + "217.138.209.147", + "217.138.209.147" + ] }, { "country": "Poland", "city": "Warsaw", "server_name": "PL#16", "hostname": "node-pl-03.protonvpn.net", - "entry_ip": "217.138.209.146" + "ips": [ + "217.138.209.146", + "217.138.209.146", + "217.138.209.146", + "217.138.209.146", + "217.138.209.146" + ] }, { "country": "Poland", "city": "Warsaw", "server_name": "PL#21", "hostname": "pl-21.protonvpn.net", - "entry_ip": "193.56.254.35" + "ips": [ + "193.56.254.35" + ] }, { "country": "Poland", "city": "Warsaw", "server_name": "PL#22", "hostname": "node-pl-04.protonvpn.net", - "entry_ip": "193.56.254.34" + "ips": [ + "193.56.254.34", + "193.56.254.34", + "193.56.254.34" + ] }, { "country": "Poland", "city": "Warsaw", "server_name": "PL#3", "hostname": "node-pl-01.protonvpn.net", - "entry_ip": "194.99.105.74" + "ips": [ + "194.99.105.74", + "194.99.105.74" + ] }, { "country": "Portugal", "server_name": "CH-PT#1", "hostname": "ch-pt-01d.protonvpn.net", - "entry_ip": "185.159.157.113" + "ips": [ + "185.159.157.113" + ] }, { "country": "Portugal", "server_name": "SE-PT#1", "hostname": "se-pt-01d.protonvpn.net", - "entry_ip": "185.159.156.58" + "ips": [ + "185.159.156.58" + ] }, { "country": "Portugal", "city": "Lisbon", "server_name": "PT#5", "hostname": "pt-05b.protonvpn.net", - "entry_ip": "195.158.248.227" + "ips": [ + "195.158.248.227", + "195.158.248.227", + "195.158.248.227" + ] }, { "country": "Portugal", "city": "Lisbon", "server_name": "PT#8", "hostname": "node-pt-02b.protonvpn.net", - "entry_ip": "195.158.248.226" + "ips": [ + "195.158.248.226", + "195.158.248.226", + "195.158.248.226", + "195.158.248.226", + "195.158.248.226" + ] }, { "country": "Puerto Rico", "server_name": "IS-PR#1", "hostname": "is-pr-01a.protonvpn.net", - "entry_ip": "185.159.158.181" + "ips": [ + "185.159.158.181" + ] }, { "country": "Puerto Rico", "city": "San Juan", "server_name": "PR#1", "hostname": "node-pr-01.protonvpn.net", - "entry_ip": "138.199.50.97" + "ips": [ + "138.199.50.97", + "138.199.50.97", + "138.199.50.97", + "138.199.50.97", + "138.199.50.97", + "138.199.50.97", + "138.199.50.97", + "138.199.50.97" + ] }, { "country": "Romania", "server_name": "SE-RO#1", "hostname": "se-ro-01a.protonvpn.net", - "entry_ip": "185.159.156.81" + "ips": [ + "185.159.156.81" + ] }, { "country": "Romania", "city": "Bucharest", "server_name": "RO#16", "hostname": "ro-16.protonvpn.net", - "entry_ip": "138.199.53.233" + "ips": [ + "138.199.53.233", + "138.199.53.233", + "138.199.53.233" + ] }, { "country": "Romania", "city": "Bucharest", "server_name": "RO#9", "hostname": "node-ro-02.protonvpn.net", - "entry_ip": "138.199.53.225" + "ips": [ + "138.199.53.225", + "138.199.53.225", + "138.199.53.225", + "138.199.53.225", + "138.199.53.225", + "138.199.53.225", + "138.199.53.225" + ] }, { "country": "Russian Federation", "server_name": "IS-RU#1", "hostname": "is-ru-01a.protonvpn.net", - "entry_ip": "185.159.158.132" + "ips": [ + "185.159.158.132" + ] }, { "country": "Russian Federation", "server_name": "IS-RU#1", "hostname": "is-ru-01b.protonvpn.net", - "entry_ip": "185.159.158.140" + "ips": [ + "185.159.158.140" + ] }, { "country": "Russian Federation", "server_name": "IS-RU#1", "hostname": "is-ru-01c.protonvpn.net", - "entry_ip": "185.159.158.59" + "ips": [ + "185.159.158.59" + ] }, { "country": "Russian Federation", "server_name": "SE-RU#1", "hostname": "se-ru-01a.protonvpn.net", - "entry_ip": "185.159.156.35" + "ips": [ + "185.159.156.35" + ] }, { "country": "Russian Federation", "city": "Saint Petersburg", "server_name": "RU#1", "hostname": "ru-01.protonvpn.net", - "entry_ip": "5.8.16.235" + "ips": [ + "5.8.16.235", + "5.8.16.235" + ] }, { "country": "Russian Federation", "city": "Saint Petersburg", "server_name": "RU#13", "hostname": "ru-13.protonvpn.net", - "entry_ip": "5.8.16.147" + "ips": [ + "5.8.16.147", + "5.8.16.147" + ] }, { "country": "Russian Federation", "city": "Saint Petersburg", "server_name": "RU#15", "hostname": "node-ru-03.protonvpn.net", - "entry_ip": "5.8.16.146" + "ips": [ + "5.8.16.146", + "5.8.16.146" + ] }, { "country": "Russian Federation", "city": "Saint Petersburg", "server_name": "RU#3", "hostname": "node-ru-01.protonvpn.net", - "entry_ip": "5.8.16.234" + "ips": [ + "5.8.16.234", + "5.8.16.234" + ] }, { "country": "Russian Federation", "city": "Saint Petersburg", "server_name": "RU#5", "hostname": "ru-05.protonvpn.net", - "entry_ip": "5.8.16.163" + "ips": [ + "5.8.16.163", + "5.8.16.163", + "5.8.16.163" + ] }, { "country": "Russian Federation", "city": "Saint Petersburg", "server_name": "RU#8", "hostname": "node-ru-02.protonvpn.net", - "entry_ip": "5.8.16.162" + "ips": [ + "5.8.16.162", + "5.8.16.162", + "5.8.16.162", + "5.8.16.162", + "5.8.16.162" + ] }, { "country": "Serbia", "server_name": "CH-RS#1", "hostname": "ch-rs-01a.protonvpn.net", - "entry_ip": "185.159.157.27" + "ips": [ + "185.159.157.27" + ] }, { "country": "Serbia", "city": "Belgrade", "server_name": "RS#1", "hostname": "rs-01.protonvpn.net", - "entry_ip": "37.46.115.6" + "ips": [ + "37.46.115.6", + "37.46.115.6", + "37.46.115.6" + ] }, { "country": "Serbia", "city": "Belgrade", "server_name": "RS#4", "hostname": "node-rs-01.protonvpn.net", - "entry_ip": "37.46.115.5" + "ips": [ + "37.46.115.5", + "37.46.115.5", + "37.46.115.5", + "37.46.115.5", + "37.46.115.5" + ] }, { "country": "Singapore", "server_name": "CH-SG#1", "hostname": "ch-sg-01b.protonvpn.net", - "entry_ip": "185.159.157.138" + "ips": [ + "185.159.157.138" + ] }, { "country": "Singapore", "server_name": "CH-SG#1", "hostname": "ch-sg-01c.protonvpn.net", - "entry_ip": "185.159.157.139" + "ips": [ + "185.159.157.139" + ] }, { "country": "Singapore", "server_name": "CH-SG#1", "hostname": "ch-sg-01d.protonvpn.net", - "entry_ip": "185.159.157.56" + "ips": [ + "185.159.157.56" + ] }, { "country": "Singapore", "server_name": "CH-SG#1", "hostname": "ch-sg-01e.protonvpn.net", - "entry_ip": "185.159.157.57" + "ips": [ + "185.159.157.57" + ] }, { "country": "Singapore", "server_name": "CH-SG#1", "hostname": "ch-sg-01f.protonvpn.net", - "entry_ip": "185.159.157.58" + "ips": [ + "185.159.157.58" + ] }, { "country": "Singapore", "server_name": "CH-SG#1", "hostname": "ch-sg-01g.protonvpn.net", - "entry_ip": "185.159.157.140" + "ips": [ + "185.159.157.140" + ] }, { "country": "Singapore", "server_name": "SE-SG#1", "hostname": "se-sg-01a.protonvpn.net", - "entry_ip": "185.159.156.53" + "ips": [ + "185.159.156.53" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#21", "hostname": "sg-21.protonvpn.net", - "entry_ip": "209.58.163.227" + "ips": [ + "209.58.163.227", + "209.58.163.227" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#23", "hostname": "node-sg-06.protonvpn.net", - "entry_ip": "209.58.163.226" + "ips": [ + "209.58.163.226", + "209.58.163.226", + "209.58.163.226", + "209.58.163.226", + "209.58.163.226", + "209.58.163.226" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#29", "hostname": "node-sg-07.protonvpn.net", - "entry_ip": "103.107.198.194" + "ips": [ + "103.107.198.194", + "103.107.198.194", + "103.107.198.194", + "103.107.198.194", + "103.107.198.194", + "103.107.198.194", + "103.107.198.194", + "103.107.198.194" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#37", "hostname": "sg-37.protonvpn.net", - "entry_ip": "103.107.199.163" + "ips": [ + "103.107.199.163", + "103.107.199.163", + "103.107.199.163", + "103.107.199.163" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#41", "hostname": "node-sg-08.protonvpn.net", - "entry_ip": "103.107.199.162" + "ips": [ + "103.107.199.162", + "103.107.199.162", + "103.107.199.162", + "103.107.199.162" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#45", "hostname": "sg-45.protonvpn.net", - "entry_ip": "103.107.198.211" + "ips": [ + "103.107.198.211", + "103.107.198.211", + "103.107.198.211" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#48", "hostname": "node-sg-09.protonvpn.net", - "entry_ip": "103.107.198.210" + "ips": [ + "103.107.198.210", + "103.107.198.210", + "103.107.198.210", + "103.107.198.210", + "103.107.198.210" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#57", "hostname": "node-sg-11.protonvpn.net", - "entry_ip": "103.107.199.194" + "ips": [ + "103.107.199.194", + "103.107.199.194", + "103.107.199.194", + "103.107.199.194" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#61", "hostname": "sg-61.protonvpn.net", - "entry_ip": "103.107.199.211" + "ips": [ + "103.107.199.211", + "103.107.199.211" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#63", "hostname": "node-sg-12.protonvpn.net", - "entry_ip": "103.107.199.210" + "ips": [ + "103.107.199.210", + "103.107.199.210" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#65", "hostname": "sg-65.protonvpn.net", - "entry_ip": "103.107.198.243" + "ips": [ + "103.107.198.243" + ] }, { "country": "Singapore", "city": "Singapore", "server_name": "SG#66", "hostname": "node-sg-13.protonvpn.net", - "entry_ip": "103.107.198.242" + "ips": [ + "103.107.198.242", + "103.107.198.242", + "103.107.198.242" + ] }, { "country": "Slovakia", "server_name": "CH-SK#1", "hostname": "ch-sk-01a.protonvpn.net", - "entry_ip": "185.159.157.62" + "ips": [ + "185.159.157.62" + ] }, { "country": "Slovakia", "server_name": "CH-SK#1", "hostname": "ch-sk-01b.protonvpn.net", - "entry_ip": "185.159.157.85" + "ips": [ + "185.159.157.85" + ] }, { "country": "Slovakia", "city": "Bratislava", "server_name": "SK#1", "hostname": "sk-01.protonvpn.net", - "entry_ip": "196.245.151.211" + "ips": [ + "196.245.151.211", + "196.245.151.211", + "196.245.151.211" + ] }, { "country": "Slovakia", "city": "Bratislava", "server_name": "SK#4", "hostname": "node-sk-01.protonvpn.net", - "entry_ip": "196.245.151.210" + "ips": [ + "196.245.151.210", + "196.245.151.210", + "196.245.151.210", + "196.245.151.210", + "196.245.151.210" + ] }, { "country": "Slovenia", "server_name": "CH-SI#1", "hostname": "ch-si-01a.protonvpn.net", - "entry_ip": "185.159.157.93" + "ips": [ + "185.159.157.93" + ] }, { "country": "Slovenia", "city": "Ljubljana", "server_name": "SI#1", "hostname": "si-01.protonvpn.net", - "entry_ip": "195.80.150.227" + "ips": [ + "195.80.150.227", + "195.80.150.227", + "195.80.150.227" + ] }, { "country": "Slovenia", "city": "Ljubljana", "server_name": "SI#4", "hostname": "node-si-01.protonvpn.net", - "entry_ip": "195.80.150.226" + "ips": [ + "195.80.150.226", + "195.80.150.226", + "195.80.150.226", + "195.80.150.226", + "195.80.150.226" + ] }, { "country": "South Africa", "server_name": "IS-ZA#1", "hostname": "is-za-01a.protonvpn.net", - "entry_ip": "185.159.158.184" + "ips": [ + "185.159.158.184" + ] }, { "country": "South Africa", "city": "Johannesburg", "server_name": "ZA#13", "hostname": "za-13.protonvpn.net", - "entry_ip": "196.240.128.67" + "ips": [ + "196.240.128.67", + "196.240.128.67", + "196.240.128.67" + ] }, { "country": "South Africa", "city": "Johannesburg", "server_name": "ZA#16", "hostname": "node-za-01.protonvpn.net", - "entry_ip": "196.240.128.66" + "ips": [ + "196.240.128.66", + "196.240.128.66", + "196.240.128.66", + "196.240.128.66", + "196.240.128.66", + "196.240.128.66", + "196.240.128.66", + "196.240.128.66", + "196.240.128.66" + ] }, { "country": "Spain", "server_name": "CH-ES#1", "hostname": "ch-es-01a.protonvpn.net", - "entry_ip": "185.159.157.43" + "ips": [ + "185.159.157.43" + ] }, { "country": "Spain", "server_name": "IS-ES#1", "hostname": "is-es-01c.protonvpn.net", - "entry_ip": "185.159.158.148" + "ips": [ + "185.159.158.148" + ] }, { "country": "Spain", "server_name": "IS-ES#1", "hostname": "is-es-01d.protonvpn.net", - "entry_ip": "185.159.158.149" + "ips": [ + "185.159.158.149" + ] }, { "country": "Spain", "city": "Madrid", "server_name": "ES#12", "hostname": "node-es-03.protonvpn.net", - "entry_ip": "195.181.167.193" + "ips": [ + "195.181.167.193", + "195.181.167.193", + "195.181.167.193", + "195.181.167.193", + "195.181.167.193" + ] }, { "country": "Spain", "city": "Madrid", "server_name": "ES#17", "hostname": "es-17.protonvpn.net", - "entry_ip": "185.76.11.18" + "ips": [ + "185.76.11.18" + ] }, { "country": "Spain", "city": "Madrid", "server_name": "ES#18", "hostname": "node-es-04.protonvpn.net", - "entry_ip": "185.76.11.17" + "ips": [ + "185.76.11.17", + "185.76.11.17", + "185.76.11.17" + ] }, { "country": "Spain", "city": "Madrid", "server_name": "ES#21", "hostname": "es-21.protonvpn.net", - "entry_ip": "185.76.11.23" + "ips": [ + "185.76.11.23" + ] }, { "country": "Spain", "city": "Madrid", "server_name": "ES#22", "hostname": "node-es-05.protonvpn.net", - "entry_ip": "185.76.11.22" + "ips": [ + "185.76.11.22", + "185.76.11.22", + "185.76.11.22" + ] }, { "country": "Spain", "city": "Madrid", "server_name": "ES#25", "hostname": "node-es-06.protonvpn.net", - "entry_ip": "37.19.214.1" + "ips": [ + "37.19.214.1", + "37.19.214.1", + "37.19.214.1", + "37.19.214.1", + "37.19.214.1" + ] }, { "country": "Spain", "city": "Madrid", "server_name": "ES#9", "hostname": "es-09.protonvpn.net", - "entry_ip": "195.181.167.194" + "ips": [ + "195.181.167.194", + "195.181.167.194", + "195.181.167.194" + ] }, { "country": "Sweden", "server_name": "SE#31-TOR", "hostname": "se-09-tor.protonvpn.net", - "entry_ip": "185.159.156.90" + "ips": [ + "185.159.156.90" + ] }, { "country": "Sweden", "city": "Stockholm", "server_name": "SE#1", "hostname": "node-se-01.protonvpn.net", - "entry_ip": "195.178.172.188" + "ips": [ + "195.178.172.188", + "195.178.172.188", + "195.178.172.188", + "195.178.172.188" + ] }, { "country": "Sweden", "city": "Stockholm", "server_name": "SE#17", "hostname": "se-17.protonvpn.net", - "entry_ip": "138.199.55.34" + "ips": [ + "138.199.55.34", + "138.199.55.34", + "138.199.55.34", + "138.199.55.34" + ] }, { "country": "Sweden", "city": "Stockholm", "server_name": "SE#23", "hostname": "node-se-05.protonvpn.net", - "entry_ip": "138.199.55.33" + "ips": [ + "138.199.55.33", + "138.199.55.33", + "138.199.55.33", + "138.199.55.33", + "138.199.55.33", + "138.199.55.33", + "138.199.55.33", + "138.199.55.33" + ] }, { "country": "Sweden", "city": "Stockholm", "server_name": "SE#3", "hostname": "node-se-02.protonvpn.net", - "entry_ip": "195.178.172.189" + "ips": [ + "195.178.172.189", + "195.178.172.189", + "195.178.172.189", + "195.178.172.189" + ] }, { "country": "Switzerland", "server_name": "CH#18-TOR", "hostname": "ch-09-tor.protonvpn.net", - "entry_ip": "185.159.157.176" + "ips": [ + "185.159.157.176" + ] }, { "country": "Switzerland", "city": "Zurich", "server_name": "CH#10", "hostname": "node-ch-05.protonvpn.net", - "entry_ip": "185.159.157.128" + "ips": [ + "185.159.157.128", + "185.159.157.128" + ] }, { "country": "Switzerland", "city": "Zurich", "server_name": "CH#12", "hostname": "node-ch-06.protonvpn.net", - "entry_ip": "185.159.157.129" + "ips": [ + "185.159.157.129", + "185.159.157.129" + ] }, { "country": "Switzerland", "city": "Zurich", "server_name": "CH#14", "hostname": "node-ch-07.protonvpn.net", - "entry_ip": "185.159.157.24" + "ips": [ + "185.159.157.24", + "185.159.157.24" + ] }, { "country": "Switzerland", "city": "Zurich", "server_name": "CH#16", "hostname": "node-ch-08.protonvpn.net", - "entry_ip": "185.159.157.23" + "ips": [ + "185.159.157.23", + "185.159.157.23" + ] }, { "country": "Switzerland", "city": "Zurich", "server_name": "CH#5", "hostname": "node-ch-02.protonvpn.net", - "entry_ip": "185.159.157.6" + "ips": [ + "185.159.157.6", + "185.159.157.6" + ] }, { "country": "Switzerland", "city": "Zurich", "server_name": "CH#7", "hostname": "node-ch-03.protonvpn.net", - "entry_ip": "185.159.157.7" + "ips": [ + "185.159.157.7", + "185.159.157.7" + ] }, { "country": "Taiwan", "server_name": "CH-TW#1", "hostname": "ch-tw-01a.protonvpn.net", - "entry_ip": "185.159.157.141" + "ips": [ + "185.159.157.141" + ] }, { "country": "Taiwan", "server_name": "SE-TW#01", "hostname": "se-tw-01a.protonvpn.net", - "entry_ip": "185.159.156.82" + "ips": [ + "185.159.156.82" + ] }, { "country": "Taiwan", "city": "Taichung City", "server_name": "TW#13", "hostname": "tw-13.protonvpn.net", - "entry_ip": "2.58.241.67" + "ips": [ + "2.58.241.67", + "2.58.241.67", + "2.58.241.67" + ] }, { "country": "Taiwan", "city": "Taichung City", "server_name": "TW#16", "hostname": "node-tw-03.protonvpn.net", - "entry_ip": "2.58.241.66" + "ips": [ + "2.58.241.66", + "2.58.241.66", + "2.58.241.66", + "2.58.241.66", + "2.58.241.66" + ] }, { "country": "Taiwan", "city": "Taipei", "server_name": "TW#21", "hostname": "node-tw-04.protonvpn.net", - "entry_ip": "188.214.106.178" + "ips": [ + "188.214.106.178", + "188.214.106.178", + "188.214.106.178", + "188.214.106.178", + "188.214.106.178", + "188.214.106.178", + "188.214.106.178", + "188.214.106.178" + ] }, { "country": "Thailand", "server_name": "IS-TH#1", "hostname": "is-th-01a.protonvpn.net", - "entry_ip": "185.159.158.191" + "ips": [ + "185.159.158.191" + ] }, { "country": "Thailand", "city": "Bangkok", "server_name": "TH#1", "hostname": "node-th-01.protonvpn.net", - "entry_ip": "37.19.201.129" + "ips": [ + "37.19.201.129", + "37.19.201.129", + "37.19.201.129", + "37.19.201.129", + "37.19.201.129", + "37.19.201.129", + "37.19.201.129", + "37.19.201.129" + ] }, { "country": "Turkey", "city": "Istanbul", "server_name": "TR#17", "hostname": "tr-17.protonvpn.net", - "entry_ip": "87.249.139.162" + "ips": [ + "87.249.139.162", + "87.249.139.162", + "87.249.139.162" + ] }, { "country": "Ukraine", "server_name": "CH-UA#1", "hostname": "ch-ua-01a.protonvpn.net", - "entry_ip": "185.159.157.60" + "ips": [ + "185.159.157.60" + ] }, { "country": "Ukraine", "city": "Kyiv", "server_name": "UA#12", "hostname": "node-ua-02.protonvpn.net", - "entry_ip": "156.146.50.5" + "ips": [ + "156.146.50.5", + "156.146.50.5", + "156.146.50.5", + "156.146.50.5", + "156.146.50.5" + ] }, { "country": "Ukraine", "city": "Kyiv", "server_name": "UA#9", "hostname": "ua-09.protonvpn.net", - "entry_ip": "156.146.50.1" + "ips": [ + "156.146.50.1", + "156.146.50.1", + "156.146.50.1" + ] }, { "country": "United Arab Emirates", "server_name": "CH-AE#1", "hostname": "ch-ae-01a.protonvpn.net", - "entry_ip": "185.159.157.161" + "ips": [ + "185.159.157.161" + ] }, { "country": "United Arab Emirates", "server_name": "CH-AE#1", "hostname": "ch-ae-01b.protonvpn.net", - "entry_ip": "185.159.157.104" + "ips": [ + "185.159.157.104" + ] }, { "country": "United Arab Emirates", "city": "Dubai", "server_name": "AE#12", "hostname": "node-ae-02.protonvpn.net", - "entry_ip": "217.138.193.98" + "ips": [ + "217.138.193.98", + "217.138.193.98", + "217.138.193.98", + "217.138.193.98", + "217.138.193.98" + ] }, { "country": "United Arab Emirates", "city": "Dubai", "server_name": "AE#17", "hostname": "ae-17.protonvpn.net", - "entry_ip": "176.125.231.83" + "ips": [ + "176.125.231.83" + ] }, { "country": "United Arab Emirates", "city": "Dubai", "server_name": "AE#18", "hostname": "node-ae-03.protonvpn.net", - "entry_ip": "176.125.231.82" + "ips": [ + "176.125.231.82", + "176.125.231.82", + "176.125.231.82" + ] }, { "country": "United Arab Emirates", "city": "Dubai", "server_name": "AE#9", "hostname": "ae-09.protonvpn.net", - "entry_ip": "217.138.193.99" + "ips": [ + "217.138.193.99", + "217.138.193.99", + "217.138.193.99" + ] }, { "country": "United Kingdom", "server_name": "CH-UK#1", "hostname": "ch-uk-01a.protonvpn.net", - "entry_ip": "185.159.157.152" + "ips": [ + "185.159.157.152" + ] }, { "country": "United Kingdom", "server_name": "CH-UK#1", "hostname": "ch-uk-01b.protonvpn.net", - "entry_ip": "185.159.157.103" + "ips": [ + "185.159.157.103" + ] }, { "country": "United Kingdom", "server_name": "CH-UK#1", "hostname": "ch-uk-01c.protonvpn.net", - "entry_ip": "185.159.157.117" + "ips": [ + "185.159.157.117" + ] }, { "country": "United Kingdom", "server_name": "CH-UK#1", "hostname": "ch-uk-01d.protonvpn.net", - "entry_ip": "185.159.157.153" + "ips": [ + "185.159.157.153" + ] }, { "country": "United Kingdom", "server_name": "CH-UK#1", "hostname": "ch-uk-01h.protonvpn.net", - "entry_ip": "185.159.157.16" + "ips": [ + "185.159.157.16" + ] }, { "country": "United Kingdom", "server_name": "CH-UK#1", "hostname": "ch-uk-01i.protonvpn.net", - "entry_ip": "185.159.157.88" + "ips": [ + "185.159.157.88" + ] }, { "country": "United Kingdom", "server_name": "IS-UK#1", "hostname": "is-uk-01b.protonvpn.net", - "entry_ip": "185.159.158.187" + "ips": [ + "185.159.158.187" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "SE-UK#1", "hostname": "se-uk-01a.protonvpn.net", - "entry_ip": "185.159.156.99" + "ips": [ + "185.159.156.99" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#25", "hostname": "uk-25.protonvpn.net", - "entry_ip": "37.120.198.179" + "ips": [ + "37.120.198.179", + "37.120.198.179", + "37.120.198.179" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#28", "hostname": "node-uk-06.protonvpn.net", - "entry_ip": "37.120.198.178" + "ips": [ + "37.120.198.178", + "37.120.198.178", + "37.120.198.178", + "37.120.198.178", + "37.120.198.178" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#33", "hostname": "uk-33.protonvpn.net", - "entry_ip": "89.238.150.171" + "ips": [ + "89.238.150.171" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#34", "hostname": "node-uk-07.protonvpn.net", - "entry_ip": "89.238.150.170" + "ips": [ + "89.238.150.170", + "89.238.150.170", + "89.238.150.170" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#41", "hostname": "uk-41.protonvpn.net", - "entry_ip": "81.92.200.51" + "ips": [ + "81.92.200.51" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#42", "hostname": "node-uk-09.protonvpn.net", - "entry_ip": "81.92.200.50" + "ips": [ + "81.92.200.50", + "81.92.200.50", + "81.92.200.50" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#45", "hostname": "uk-45.protonvpn.net", - "entry_ip": "81.92.200.59" + "ips": [ + "81.92.200.59" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#46", "hostname": "node-uk-10.protonvpn.net", - "entry_ip": "81.92.200.58" + "ips": [ + "81.92.200.58", + "81.92.200.58", + "81.92.200.58" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#53", "hostname": "uk-53.protonvpn.net", - "entry_ip": "146.70.83.67" + "ips": [ + "146.70.83.67", + "146.70.83.67" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#55", "hostname": "node-uk-12.protonvpn.net", - "entry_ip": "146.70.83.66" + "ips": [ + "146.70.83.66", + "146.70.83.66", + "146.70.83.66", + "146.70.83.66", + "146.70.83.66", + "146.70.83.66", + "146.70.83.66", + "146.70.83.66", + "146.70.83.66", + "146.70.83.66" + ] }, { "country": "United Kingdom", "city": "London", "server_name": "UK#65", "hostname": "node-uk-13.protonvpn.net", - "entry_ip": "146.70.96.66" + "ips": [ + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66", + "146.70.96.66" + ] }, { "country": "United Kingdom", "city": "Manchester", "server_name": "UK#17", "hostname": "uk-17.protonvpn.net", - "entry_ip": "217.138.196.19" + "ips": [ + "217.138.196.19", + "217.138.196.19", + "217.138.196.19" + ] }, { "country": "United Kingdom", "city": "Manchester", "server_name": "UK#20", "hostname": "node-uk-05.protonvpn.net", - "entry_ip": "217.138.196.18" + "ips": [ + "217.138.196.18", + "217.138.196.18", + "217.138.196.18", + "217.138.196.18", + "217.138.196.18" + ] }, { "country": "United Kingdom", "city": "Manchester", "server_name": "UK#37", "hostname": "uk-37.protonvpn.net", - "entry_ip": "89.44.201.163" + "ips": [ + "89.44.201.163" + ] }, { "country": "United Kingdom", "city": "Manchester", "server_name": "UK#38", "hostname": "node-uk-08.protonvpn.net", - "entry_ip": "89.44.201.162" + "ips": [ + "89.44.201.162", + "89.44.201.162", + "89.44.201.162" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01a.protonvpn.net", - "entry_ip": "185.159.157.175" + "ips": [ + "185.159.157.175" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01b.protonvpn.net", - "entry_ip": "185.159.157.86" + "ips": [ + "185.159.157.86" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01c.protonvpn.net", - "entry_ip": "185.159.157.92" + "ips": [ + "185.159.157.92" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01d.protonvpn.net", - "entry_ip": "185.159.157.99" + "ips": [ + "185.159.157.99" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01g.protonvpn.net", - "entry_ip": "185.159.157.29" + "ips": [ + "185.159.157.29" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01h.protonvpn.net", - "entry_ip": "185.159.157.30" + "ips": [ + "185.159.157.30" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01i.protonvpn.net", - "entry_ip": "185.159.157.41" + "ips": [ + "185.159.157.41" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01j.protonvpn.net", - "entry_ip": "185.159.157.42" + "ips": [ + "185.159.157.42" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01k.protonvpn.net", - "entry_ip": "185.159.157.169" + "ips": [ + "185.159.157.169" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01n.protonvpn.net", - "entry_ip": "185.159.157.170" + "ips": [ + "185.159.157.170" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01p.protonvpn.net", - "entry_ip": "185.159.157.116" + "ips": [ + "185.159.157.116" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01v.protonvpn.net", - "entry_ip": "185.159.157.142" + "ips": [ + "185.159.157.142" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01w.protonvpn.net", - "entry_ip": "185.159.157.143" + "ips": [ + "185.159.157.143" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01x.protonvpn.net", - "entry_ip": "185.159.157.144" + "ips": [ + "185.159.157.144" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01y.protonvpn.net", - "entry_ip": "185.159.157.145" + "ips": [ + "185.159.157.145" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-01z.protonvpn.net", - "entry_ip": "185.159.157.146" + "ips": [ + "185.159.157.146" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02a.protonvpn.net", - "entry_ip": "185.159.157.157" + "ips": [ + "185.159.157.157" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02b.protonvpn.net", - "entry_ip": "185.159.157.158" + "ips": [ + "185.159.157.158" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02c.protonvpn.net", - "entry_ip": "185.159.157.159" + "ips": [ + "185.159.157.159" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02d.protonvpn.net", - "entry_ip": "185.159.157.160" + "ips": [ + "185.159.157.160" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02e.protonvpn.net", - "entry_ip": "185.159.157.162" + "ips": [ + "185.159.157.162" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02f.protonvpn.net", - "entry_ip": "185.159.157.163" + "ips": [ + "185.159.157.163" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02g.protonvpn.net", - "entry_ip": "185.159.157.164" + "ips": [ + "185.159.157.164" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02h.protonvpn.net", - "entry_ip": "185.159.157.171" + "ips": [ + "185.159.157.171" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02i.protonvpn.net", - "entry_ip": "185.159.157.172" + "ips": [ + "185.159.157.172" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02j.protonvpn.net", - "entry_ip": "185.159.157.173" + "ips": [ + "185.159.157.173" + ] }, { "country": "United States", "server_name": "CH-US#1", "hostname": "ch-us-02k.protonvpn.net", - "entry_ip": "185.159.157.174" + "ips": [ + "185.159.157.174" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01a.protonvpn.net", - "entry_ip": "185.159.158.150" + "ips": [ + "185.159.158.150" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01b.protonvpn.net", - "entry_ip": "185.159.158.192" + "ips": [ + "185.159.158.192" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01c.protonvpn.net", - "entry_ip": "185.159.158.185" + "ips": [ + "185.159.158.185" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01d.protonvpn.net", - "entry_ip": "185.159.158.186" + "ips": [ + "185.159.158.186" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01f.protonvpn.net", - "entry_ip": "185.159.158.151" + "ips": [ + "185.159.158.151" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01g.protonvpn.net", - "entry_ip": "185.159.158.158" + "ips": [ + "185.159.158.158" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01h.protonvpn.net", - "entry_ip": "185.159.158.159" + "ips": [ + "185.159.158.159" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01i.protonvpn.net", - "entry_ip": "185.159.158.160" + "ips": [ + "185.159.158.160" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01j.protonvpn.net", - "entry_ip": "185.159.158.161" + "ips": [ + "185.159.158.161" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01k.protonvpn.net", - "entry_ip": "185.159.158.162" + "ips": [ + "185.159.158.162" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01l.protonvpn.net", - "entry_ip": "185.159.158.163" + "ips": [ + "185.159.158.163" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01q.protonvpn.net", - "entry_ip": "185.159.158.188" + "ips": [ + "185.159.158.188" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01r.protonvpn.net", - "entry_ip": "185.159.158.189" + "ips": [ + "185.159.158.189" + ] }, { "country": "United States", "server_name": "IS-US#1", "hostname": "is-us-01s.protonvpn.net", - "entry_ip": "185.159.158.190" + "ips": [ + "185.159.158.190" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01a.protonvpn.net", - "entry_ip": "185.159.156.54" + "ips": [ + "185.159.156.54" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01b.protonvpn.net", - "entry_ip": "185.159.156.57" + "ips": [ + "185.159.156.57" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01c.protonvpn.net", - "entry_ip": "185.159.156.61" + "ips": [ + "185.159.156.61" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01d.protonvpn.net", - "entry_ip": "185.159.156.62" + "ips": [ + "185.159.156.62" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01e.protonvpn.net", - "entry_ip": "185.159.156.63" + "ips": [ + "185.159.156.63" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01f.protonvpn.net", - "entry_ip": "185.159.156.64" + "ips": [ + "185.159.156.64" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01g.protonvpn.net", - "entry_ip": "185.159.156.66" + "ips": [ + "185.159.156.66" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01h.protonvpn.net", - "entry_ip": "185.159.156.67" + "ips": [ + "185.159.156.67" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01i.protonvpn.net", - "entry_ip": "185.159.156.69" + "ips": [ + "185.159.156.69" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01j.protonvpn.net", - "entry_ip": "185.159.156.70" + "ips": [ + "185.159.156.70" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01k.protonvpn.net", - "entry_ip": "185.159.156.71" + "ips": [ + "185.159.156.71" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01l.protonvpn.net", - "entry_ip": "185.159.156.96" + "ips": [ + "185.159.156.96" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01m.protonvpn.net", - "entry_ip": "185.159.156.78" + "ips": [ + "185.159.156.78" + ] }, { "country": "United States", "server_name": "SE-US#1", "hostname": "se-us-01n.protonvpn.net", - "entry_ip": "185.159.156.100" + "ips": [ + "185.159.156.100" + ] }, { "country": "United States", "server_name": "US-FREE#1", "hostname": "node-us-132.protonvpn.net", - "entry_ip": "156.146.51.129" + "ips": [ + "156.146.51.129", + "156.146.51.129", + "156.146.51.129", + "156.146.51.129" + ] }, { "country": "United States", "server_name": "US-FREE#10", "hostname": "node-us-71.protonvpn.net", - "entry_ip": "89.187.177.71" + "ips": [ + "89.187.177.71", + "89.187.177.71", + "89.187.177.71", + "89.187.177.71" + ] }, { "country": "United States", "server_name": "US-FREE#11", "hostname": "node-us-73.protonvpn.net", - "entry_ip": "195.181.162.163" + "ips": [ + "195.181.162.163", + "195.181.162.163", + "195.181.162.163", + "195.181.162.163" + ] }, { "country": "United States", "server_name": "US-FREE#12", "hostname": "node-us-81.protonvpn.net", - "entry_ip": "185.230.126.2" + "ips": [ + "185.230.126.2", + "185.230.126.2", + "185.230.126.2", + "185.230.126.2" + ] }, { "country": "United States", "server_name": "US-FREE#13", "hostname": "node-us-54.protonvpn.net", - "entry_ip": "38.132.103.146" + "ips": [ + "38.132.103.146", + "38.132.103.146", + "38.132.103.146", + "38.132.103.146" + ] }, { "country": "United States", "server_name": "US-FREE#14", "hostname": "node-us-70.protonvpn.net", - "entry_ip": "89.187.170.159" + "ips": [ + "89.187.170.159", + "89.187.170.159", + "89.187.170.159", + "89.187.170.159" + ] }, { "country": "United States", "server_name": "US-FREE#15", "hostname": "node-us-136.protonvpn.net", - "entry_ip": "37.19.200.22" + "ips": [ + "37.19.200.22", + "37.19.200.22", + "37.19.200.22", + "37.19.200.22" + ] }, { "country": "United States", "server_name": "US-FREE#16", "hostname": "node-us-137.protonvpn.net", - "entry_ip": "37.19.200.17" + "ips": [ + "37.19.200.17", + "37.19.200.17", + "37.19.200.17", + "37.19.200.17" + ] }, { "country": "United States", "server_name": "US-FREE#17", "hostname": "node-us-138.protonvpn.net", - "entry_ip": "37.19.199.144" + "ips": [ + "37.19.199.144", + "37.19.199.144", + "37.19.199.144", + "37.19.199.144" + ] }, { "country": "United States", "server_name": "US-FREE#18", "hostname": "node-us-139.protonvpn.net", - "entry_ip": "138.199.50.98" + "ips": [ + "138.199.50.98", + "138.199.50.98", + "138.199.50.98", + "138.199.50.98" + ] }, { "country": "United States", "server_name": "US-FREE#19", "hostname": "node-us-140.protonvpn.net", - "entry_ip": "37.19.199.129" + "ips": [ + "37.19.199.129", + "37.19.199.129", + "37.19.199.129", + "37.19.199.129" + ] }, { "country": "United States", "server_name": "US-FREE#2", "hostname": "node-us-72.protonvpn.net", - "entry_ip": "89.187.185.161" + "ips": [ + "89.187.185.161", + "89.187.185.161", + "89.187.185.161", + "89.187.185.161" + ] }, { "country": "United States", "server_name": "US-FREE#20", "hostname": "node-us-141.protonvpn.net", - "entry_ip": "37.19.199.134" + "ips": [ + "37.19.199.134", + "37.19.199.134", + "37.19.199.134", + "37.19.199.134" + ] }, { "country": "United States", "server_name": "US-FREE#21", "hostname": "node-us-142.protonvpn.net", - "entry_ip": "37.19.199.139" + "ips": [ + "37.19.199.139", + "37.19.199.139", + "37.19.199.139", + "37.19.199.139" + ] }, { "country": "United States", "server_name": "US-FREE#22", "hostname": "node-us-37.protonvpn.net", - "entry_ip": "172.83.43.135" + "ips": [ + "172.83.43.135", + "172.83.43.135", + "172.83.43.135", + "172.83.43.135" + ] }, { "country": "United States", "server_name": "US-FREE#23", "hostname": "node-us-29.protonvpn.net", - "entry_ip": "192.252.222.34" + "ips": [ + "192.252.222.34", + "192.252.222.34", + "192.252.222.34", + "192.252.222.34" + ] }, { "country": "United States", "server_name": "US-FREE#24", "hostname": "node-us-41.protonvpn.net", - "entry_ip": "172.98.93.226" + "ips": [ + "172.98.93.226", + "172.98.93.226", + "172.98.93.226", + "172.98.93.226" + ] }, { "country": "United States", "server_name": "US-FREE#25", "hostname": "node-us-83.protonvpn.net", - "entry_ip": "107.152.101.210" + "ips": [ + "107.152.101.210", + "107.152.101.210", + "107.152.101.210", + "107.152.101.210" + ] }, { "country": "United States", "server_name": "US-FREE#26", "hostname": "node-us-84.protonvpn.net", - "entry_ip": "66.115.180.194" + "ips": [ + "66.115.180.194", + "66.115.180.194", + "66.115.180.194", + "66.115.180.194" + ] }, { "country": "United States", "server_name": "US-FREE#27", "hostname": "node-us-143.protonvpn.net", - "entry_ip": "37.19.199.149" + "ips": [ + "37.19.199.149", + "37.19.199.149", + "37.19.199.149", + "37.19.199.149" + ] }, { "country": "United States", "server_name": "US-FREE#28", "hostname": "node-us-148.protonvpn.net", - "entry_ip": "143.244.44.161" + "ips": [ + "143.244.44.161", + "143.244.44.161", + "143.244.44.161", + "143.244.44.161" + ] }, { "country": "United States", "server_name": "US-FREE#29", "hostname": "node-us-145.protonvpn.net", - "entry_ip": "143.244.44.166" + "ips": [ + "143.244.44.166", + "143.244.44.166", + "143.244.44.166", + "143.244.44.166" + ] }, { "country": "United States", "server_name": "US-FREE#3", "hostname": "node-us-60.protonvpn.net", - "entry_ip": "195.181.163.1" + "ips": [ + "195.181.163.1", + "195.181.163.1", + "195.181.163.1", + "195.181.163.1" + ] }, { "country": "United States", "server_name": "US-FREE#30", "hostname": "node-us-146.protonvpn.net", - "entry_ip": "143.244.44.171" + "ips": [ + "143.244.44.171", + "143.244.44.171", + "143.244.44.171", + "143.244.44.171" + ] }, { "country": "United States", "server_name": "US-FREE#31", "hostname": "node-us-147.protonvpn.net", - "entry_ip": "143.244.44.176" + "ips": [ + "143.244.44.176", + "143.244.44.176", + "143.244.44.176", + "143.244.44.176" + ] }, { "country": "United States", "server_name": "US-FREE#32", "hostname": "node-us-76.protonvpn.net", - "entry_ip": "193.148.18.58" + "ips": [ + "193.148.18.58", + "193.148.18.58", + "193.148.18.58", + "193.148.18.58" + ] }, { "country": "United States", "server_name": "US-FREE#33", "hostname": "node-us-78.protonvpn.net", - "entry_ip": "193.148.18.74" + "ips": [ + "193.148.18.74", + "193.148.18.74", + "193.148.18.74", + "193.148.18.74" + ] }, { "country": "United States", "server_name": "US-FREE#34", "hostname": "node-us-91.protonvpn.net", - "entry_ip": "45.87.214.106" + "ips": [ + "45.87.214.106", + "45.87.214.106", + "45.87.214.106", + "45.87.214.106" + ] }, { "country": "United States", "server_name": "US-FREE#36", "hostname": "node-us-55.protonvpn.net", - "entry_ip": "45.87.214.114" + "ips": [ + "45.87.214.114", + "45.87.214.114", + "45.87.214.114", + "45.87.214.114" + ] }, { "country": "United States", "server_name": "US-FREE#37", "hostname": "node-us-61.protonvpn.net", - "entry_ip": "84.17.45.156" + "ips": [ + "84.17.45.156", + "84.17.45.156", + "84.17.45.156", + "84.17.45.156" + ] }, { "country": "United States", "server_name": "US-FREE#38", "hostname": "node-us-56.protonvpn.net", - "entry_ip": "89.187.171.225" + "ips": [ + "89.187.171.225", + "89.187.171.225", + "89.187.171.225", + "89.187.171.225" + ] }, { "country": "United States", "server_name": "US-FREE#39", "hostname": "node-us-86.protonvpn.net", - "entry_ip": "162.253.68.114" + "ips": [ + "162.253.68.114", + "162.253.68.114", + "162.253.68.114", + "162.253.68.114" + ] }, { "country": "United States", "server_name": "US-FREE#4", "hostname": "node-us-47.protonvpn.net", - "entry_ip": "45.89.173.194" + "ips": [ + "45.89.173.194", + "45.89.173.194", + "45.89.173.194", + "45.89.173.194" + ] }, { "country": "United States", "server_name": "US-FREE#40", "hostname": "node-us-149.protonvpn.net", - "entry_ip": "37.19.221.193" + "ips": [ + "37.19.221.193", + "37.19.221.193", + "37.19.221.193", + "37.19.221.193" + ] }, { "country": "United States", "server_name": "US-FREE#41", "hostname": "node-us-150.protonvpn.net", - "entry_ip": "37.19.221.197" + "ips": [ + "37.19.221.197", + "37.19.221.197", + "37.19.221.197", + "37.19.221.197" + ] }, { "country": "United States", "server_name": "US-FREE#42", "hostname": "node-us-151.protonvpn.net", - "entry_ip": "37.19.221.194" + "ips": [ + "37.19.221.194", + "37.19.221.194", + "37.19.221.194", + "37.19.221.194" + ] }, { "country": "United States", "server_name": "US-FREE#43", "hostname": "node-us-152.protonvpn.net", - "entry_ip": "37.19.221.195" + "ips": [ + "37.19.221.195", + "37.19.221.195", + "37.19.221.195", + "37.19.221.195" + ] }, { "country": "United States", "server_name": "US-FREE#44", "hostname": "node-us-153.protonvpn.net", - "entry_ip": "37.19.221.196" + "ips": [ + "37.19.221.196", + "37.19.221.196", + "37.19.221.196", + "37.19.221.196" + ] }, { "country": "United States", "server_name": "US-FREE#45", "hostname": "node-us-154.protonvpn.net", - "entry_ip": "37.19.221.199" + "ips": [ + "37.19.221.199", + "37.19.221.199", + "37.19.221.199", + "37.19.221.199" + ] }, { "country": "United States", "server_name": "US-FREE#46", "hostname": "node-us-156.protonvpn.net", - "entry_ip": "89.187.180.55" + "ips": [ + "89.187.180.55", + "89.187.180.55", + "89.187.180.55", + "89.187.180.55" + ] }, { "country": "United States", "server_name": "US-FREE#47", "hostname": "node-us-155.protonvpn.net", - "entry_ip": "37.19.221.198" + "ips": [ + "37.19.221.198", + "37.19.221.198", + "37.19.221.198", + "37.19.221.198" + ] }, { "country": "United States", "server_name": "US-FREE#48", "hostname": "node-us-157.protonvpn.net", - "entry_ip": "89.187.180.54" + "ips": [ + "89.187.180.54", + "89.187.180.54", + "89.187.180.54", + "89.187.180.54" + ] }, { "country": "United States", "server_name": "US-FREE#5", "hostname": "node-us-45.protonvpn.net", - "entry_ip": "217.138.206.82" + "ips": [ + "217.138.206.82", + "217.138.206.82", + "217.138.206.82", + "217.138.206.82" + ] }, { "country": "United States", "server_name": "US-FREE#6", "hostname": "node-us-133.protonvpn.net", - "entry_ip": "37.19.200.1" + "ips": [ + "37.19.200.1", + "37.19.200.1", + "37.19.200.1", + "37.19.200.1" + ] }, { "country": "United States", "server_name": "US-FREE#7", "hostname": "node-us-62.protonvpn.net", - "entry_ip": "89.187.179.55" + "ips": [ + "89.187.179.55", + "89.187.179.55", + "89.187.179.55", + "89.187.179.55" + ] }, { "country": "United States", "server_name": "US-FREE#8", "hostname": "node-us-131.protonvpn.net", - "entry_ip": "156.146.54.81" + "ips": [ + "156.146.54.81", + "156.146.54.81", + "156.146.54.81", + "156.146.54.81" + ] }, { "country": "United States", "server_name": "US-FREE#9", "hostname": "node-us-128.protonvpn.net", - "entry_ip": "89.187.180.1" + "ips": [ + "89.187.180.1", + "89.187.180.1", + "89.187.180.1", + "89.187.180.1" + ] }, { "country": "United States", "city": "Ashburn", "server_name": "US-VA#14", "hostname": "us-va-14.protonvpn.net", - "entry_ip": "185.156.46.34" + "ips": [ + "185.156.46.34", + "185.156.46.34", + "185.156.46.34" + ] }, { "country": "United States", "city": "Ashburn", "server_name": "US-VA#17", "hostname": "node-us-119.protonvpn.net", - "entry_ip": "185.156.46.33" + "ips": [ + "185.156.46.33", + "185.156.46.33", + "185.156.46.33", + "185.156.46.33", + "185.156.46.33", + "185.156.46.33", + "185.156.46.33", + "185.156.46.33", + "185.156.46.33" + ] }, { "country": "United States", "city": "Atlanta", "server_name": "US-GA#109", "hostname": "node-us-121.protonvpn.net", - "entry_ip": "45.134.140.33" + "ips": [ + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33", + "45.134.140.33" + ] }, { "country": "United States", "city": "Atlanta", "server_name": "US-GA#13", "hostname": "us-ga-13.protonvpn.net", - "entry_ip": "89.187.171.240" + "ips": [ + "89.187.171.240", + "89.187.171.240", + "89.187.171.240" + ] }, { "country": "United States", "city": "Atlanta", "server_name": "US-GA#16", "hostname": "node-us-59.protonvpn.net", - "entry_ip": "89.187.171.239" + "ips": [ + "89.187.171.239", + "89.187.171.239", + "89.187.171.239", + "89.187.171.239", + "89.187.171.239" + ] }, { "country": "United States", "city": "Atlanta", "server_name": "US-GA#21", "hostname": "us-ga-21.protonvpn.net", - "entry_ip": "89.187.170.158" + "ips": [ + "89.187.170.158" + ] }, { "country": "United States", "city": "Atlanta", "server_name": "US-GA#22", "hostname": "node-us-69.protonvpn.net", - "entry_ip": "89.187.170.135" + "ips": [ + "89.187.170.135", + "89.187.170.135", + "89.187.170.135" + ] }, { "country": "United States", "city": "Chicago", "server_name": "US-IL#45", "hostname": "us-il-45.protonvpn.net", - "entry_ip": "89.187.180.15" + "ips": [ + "89.187.180.15", + "89.187.180.15", + "89.187.180.15" + ] }, { "country": "United States", "city": "Chicago", "server_name": "US-IL#49", "hostname": "node-us-129.protonvpn.net", - "entry_ip": "89.187.180.14" + "ips": [ + "89.187.180.14", + "89.187.180.14", + "89.187.180.14", + "89.187.180.14", + "89.187.180.14", + "89.187.180.14", + "89.187.180.14", + "89.187.180.14", + "89.187.180.14" + ] }, { "country": "United States", "city": "Chicago", "server_name": "US-IL#57", "hostname": "us-il-57.protonvpn.net", - "entry_ip": "89.187.180.28" + "ips": [ + "89.187.180.28", + "89.187.180.28", + "89.187.180.28" + ] }, { "country": "United States", "city": "Chicago", "server_name": "US-IL#60", "hostname": "node-us-130.protonvpn.net", - "entry_ip": "89.187.180.27" + "ips": [ + "89.187.180.27", + "89.187.180.27", + "89.187.180.27", + "89.187.180.27", + "89.187.180.27", + "89.187.180.27", + "89.187.180.27", + "89.187.180.27", + "89.187.180.27" + ] }, { "country": "United States", "city": "Chicago", "server_name": "US-IL#69", "hostname": "us-il-69.protonvpn.net", - "entry_ip": "89.187.180.41" + "ips": [ + "89.187.180.41" + ] }, { "country": "United States", "city": "Chicago", "server_name": "US-IL#70", "hostname": "node-us-135.protonvpn.net", - "entry_ip": "89.187.180.40" + "ips": [ + "89.187.180.40", + "89.187.180.40", + "89.187.180.40", + "89.187.180.40", + "89.187.180.40", + "89.187.180.40", + "89.187.180.40", + "89.187.180.40", + "89.187.180.40", + "89.187.180.40", + "89.187.180.40" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#12", "hostname": "node-us-57.protonvpn.net", - "entry_ip": "89.187.175.132" + "ips": [ + "89.187.175.132", + "89.187.175.132", + "89.187.175.132", + "89.187.175.132", + "89.187.175.132" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#17", "hostname": "us-tx-17.protonvpn.net", - "entry_ip": "89.187.175.130" + "ips": [ + "89.187.175.130" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#18", "hostname": "node-us-75.protonvpn.net", - "entry_ip": "89.187.175.129" + "ips": [ + "89.187.175.129", + "89.187.175.129", + "89.187.175.129" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#21", "hostname": "us-tx-21.protonvpn.net", - "entry_ip": "89.187.164.242" + "ips": [ + "89.187.164.242" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#22", "hostname": "node-us-108.protonvpn.net", - "entry_ip": "89.187.164.241" + "ips": [ + "89.187.164.241", + "89.187.164.241", + "89.187.164.241" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#25", "hostname": "us-tx-25.protonvpn.net", - "entry_ip": "89.187.164.247" + "ips": [ + "89.187.164.247" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#26", "hostname": "node-us-109.protonvpn.net", - "entry_ip": "89.187.164.246" + "ips": [ + "89.187.164.246", + "89.187.164.246", + "89.187.164.246" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#29", "hostname": "us-tx-29.protonvpn.net", - "entry_ip": "146.70.58.131" + "ips": [ + "146.70.58.131" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#30", "hostname": "node-us-125.protonvpn.net", - "entry_ip": "146.70.58.130" + "ips": [ + "146.70.58.130", + "146.70.58.130", + "146.70.58.130", + "146.70.58.130", + "146.70.58.130", + "146.70.58.130", + "146.70.58.130", + "146.70.58.130", + "146.70.58.130", + "146.70.58.130", + "146.70.58.130" + ] }, { "country": "United States", "city": "Dallas", "server_name": "US-TX#9", "hostname": "us-tx-09.protonvpn.net", - "entry_ip": "89.187.175.141" + "ips": [ + "89.187.175.141", + "89.187.175.141", + "89.187.175.141" + ] }, { "country": "United States", "city": "Denver", "server_name": "US-CO#1", "hostname": "us-co-01.protonvpn.net", - "entry_ip": "84.17.63.9" + "ips": [ + "84.17.63.9", + "84.17.63.9", + "84.17.63.9" + ] }, { "country": "United States", "city": "Denver", "server_name": "US-CO#10", "hostname": "node-us-74.protonvpn.net", - "entry_ip": "84.17.63.54" + "ips": [ + "84.17.63.54", + "84.17.63.54", + "84.17.63.54" + ] }, { "country": "United States", "city": "Denver", "server_name": "US-CO#13", "hostname": "us-co-13.protonvpn.net", - "entry_ip": "212.102.44.162" + "ips": [ + "212.102.44.162" + ] }, { "country": "United States", "city": "Denver", "server_name": "US-CO#14", "hostname": "node-us-93.protonvpn.net", - "entry_ip": "212.102.44.161" + "ips": [ + "212.102.44.161", + "212.102.44.161", + "212.102.44.161" + ] }, { "country": "United States", "city": "Denver", "server_name": "US-CO#17", "hostname": "us-co-17.protonvpn.net", - "entry_ip": "212.102.44.167" + "ips": [ + "212.102.44.167" + ] }, { "country": "United States", "city": "Denver", "server_name": "US-CO#18", "hostname": "node-us-94.protonvpn.net", - "entry_ip": "212.102.44.166" + "ips": [ + "212.102.44.166", + "212.102.44.166", + "212.102.44.166" + ] }, { "country": "United States", "city": "Denver", "server_name": "US-CO#4", "hostname": "node-us-58.protonvpn.net", - "entry_ip": "84.17.63.8" + "ips": [ + "84.17.63.8", + "84.17.63.8", + "84.17.63.8", + "84.17.63.8", + "84.17.63.8" + ] }, { "country": "United States", "city": "Denver", "server_name": "US-CO#9", "hostname": "us-co-09.protonvpn.net", - "entry_ip": "84.17.63.55" + "ips": [ + "84.17.63.55" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#17", "hostname": "us-ca-17.protonvpn.net", - "entry_ip": "45.152.182.131" + "ips": [ + "45.152.182.131", + "45.152.182.131", + "45.152.182.131" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#20", "hostname": "node-us-48.protonvpn.net", - "entry_ip": "45.152.182.130" + "ips": [ + "45.152.182.130", + "45.152.182.130", + "45.152.182.130", + "45.152.182.130", + "45.152.182.130" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#25", "hostname": "us-ca-25.protonvpn.net", - "entry_ip": "45.152.182.147" + "ips": [ + "45.152.182.147", + "45.152.182.147", + "45.152.182.147" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#28", "hostname": "node-us-49.protonvpn.net", - "entry_ip": "45.152.182.146" + "ips": [ + "45.152.182.146", + "45.152.182.146", + "45.152.182.146", + "45.152.182.146", + "45.152.182.146" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#33", "hostname": "us-ca-33.protonvpn.net", - "entry_ip": "185.230.126.19" + "ips": [ + "185.230.126.19", + "185.230.126.19", + "185.230.126.19" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#36", "hostname": "node-us-65.protonvpn.net", - "entry_ip": "185.230.126.18" + "ips": [ + "185.230.126.18", + "185.230.126.18", + "185.230.126.18", + "185.230.126.18", + "185.230.126.18" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#41", "hostname": "us-ca-41.protonvpn.net", - "entry_ip": "185.230.126.147" + "ips": [ + "185.230.126.147", + "185.230.126.147", + "185.230.126.147" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#44", "hostname": "node-us-66.protonvpn.net", - "entry_ip": "185.230.126.146" + "ips": [ + "185.230.126.146", + "185.230.126.146", + "185.230.126.146", + "185.230.126.146", + "185.230.126.146" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#49", "hostname": "us-ca-49.protonvpn.net", - "entry_ip": "185.230.126.11" + "ips": [ + "185.230.126.11" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#50", "hostname": "node-us-82.protonvpn.net", - "entry_ip": "185.230.126.10" + "ips": [ + "185.230.126.10", + "185.230.126.10", + "185.230.126.10" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#53", "hostname": "us-ca-53.protonvpn.net", - "entry_ip": "91.219.212.227" + "ips": [ + "91.219.212.227" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#54", "hostname": "node-us-95.protonvpn.net", - "entry_ip": "91.219.212.226" + "ips": [ + "91.219.212.226", + "91.219.212.226", + "91.219.212.226" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#57", "hostname": "us-ca-57.protonvpn.net", - "entry_ip": "91.219.212.219" + "ips": [ + "91.219.212.219" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#58", "hostname": "node-us-96.protonvpn.net", - "entry_ip": "91.219.212.218" + "ips": [ + "91.219.212.218", + "91.219.212.218", + "91.219.212.218" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#61", "hostname": "us-ca-61.protonvpn.net", - "entry_ip": "91.219.212.211" + "ips": [ + "91.219.212.211" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#62", "hostname": "node-us-97.protonvpn.net", - "entry_ip": "91.219.212.210" + "ips": [ + "91.219.212.210", + "91.219.212.210", + "91.219.212.210" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#65", "hostname": "us-ca-65.protonvpn.net", - "entry_ip": "91.219.212.203" + "ips": [ + "91.219.212.203" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#66", "hostname": "node-us-98.protonvpn.net", - "entry_ip": "91.219.212.202" + "ips": [ + "91.219.212.202", + "91.219.212.202", + "91.219.212.202" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#69", "hostname": "us-ca-69.protonvpn.net", - "entry_ip": "91.219.212.195" + "ips": [ + "91.219.212.195" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#70", "hostname": "node-us-99.protonvpn.net", - "entry_ip": "91.219.212.194" + "ips": [ + "91.219.212.194", + "91.219.212.194", + "91.219.212.194" + ] }, { "country": "United States", "city": "Los Angeles", "server_name": "US-CA#89", "hostname": "node-us-122.protonvpn.net", - "entry_ip": "138.199.35.97" + "ips": [ + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97", + "138.199.35.97" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#1", "hostname": "us-fl-01.protonvpn.net", - "entry_ip": "37.120.215.243" + "ips": [ + "37.120.215.243", + "37.120.215.243", + "37.120.215.243" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#12", "hostname": "node-us-51.protonvpn.net", - "entry_ip": "37.120.215.226" + "ips": [ + "37.120.215.226", + "37.120.215.226", + "37.120.215.226", + "37.120.215.226", + "37.120.215.226" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#17", "hostname": "us-fl-17.protonvpn.net", - "entry_ip": "45.87.214.195" + "ips": [ + "45.87.214.195", + "45.87.214.195", + "45.87.214.195" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#20", "hostname": "node-us-63.protonvpn.net", - "entry_ip": "45.87.214.194" + "ips": [ + "45.87.214.194", + "45.87.214.194", + "45.87.214.194", + "45.87.214.194", + "45.87.214.194" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#25", "hostname": "us-fl-25.protonvpn.net", - "entry_ip": "45.87.214.211" + "ips": [ + "45.87.214.211", + "45.87.214.211", + "45.87.214.211" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#28", "hostname": "node-us-64.protonvpn.net", - "entry_ip": "45.87.214.210" + "ips": [ + "45.87.214.210", + "45.87.214.210", + "45.87.214.210", + "45.87.214.210", + "45.87.214.210" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#33", "hostname": "us-fl-33.protonvpn.net", - "entry_ip": "45.87.214.99" + "ips": [ + "45.87.214.99" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#34", "hostname": "node-us-90.protonvpn.net", - "entry_ip": "45.87.214.98" + "ips": [ + "45.87.214.98", + "45.87.214.98", + "45.87.214.98" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#37", "hostname": "us-fl-37.protonvpn.net", - "entry_ip": "91.219.214.171" + "ips": [ + "91.219.214.171" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#38", "hostname": "node-us-100.protonvpn.net", - "entry_ip": "91.219.214.170" + "ips": [ + "91.219.214.170", + "91.219.214.170", + "91.219.214.170" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#4", "hostname": "node-us-50.protonvpn.net", - "entry_ip": "37.120.215.242" + "ips": [ + "37.120.215.242", + "37.120.215.242", + "37.120.215.242", + "37.120.215.242", + "37.120.215.242" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#41", "hostname": "us-fl-41.protonvpn.net", - "entry_ip": "91.219.214.163" + "ips": [ + "91.219.214.163" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#42", "hostname": "node-us-101.protonvpn.net", - "entry_ip": "91.219.214.162" + "ips": [ + "91.219.214.162", + "91.219.214.162", + "91.219.214.162" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#45", "hostname": "us-fl-45.protonvpn.net", - "entry_ip": "89.38.227.139" + "ips": [ + "89.38.227.139" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#46", "hostname": "node-us-102.protonvpn.net", - "entry_ip": "89.38.227.138" + "ips": [ + "89.38.227.138", + "89.38.227.138", + "89.38.227.138" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#49", "hostname": "us-fl-49.protonvpn.net", - "entry_ip": "193.27.12.251" + "ips": [ + "193.27.12.251" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#50", "hostname": "node-us-103.protonvpn.net", - "entry_ip": "193.27.12.250" + "ips": [ + "193.27.12.250", + "193.27.12.250", + "193.27.12.250" + ] }, { "country": "United States", "city": "Miami", "server_name": "US-FL#9", "hostname": "us-fl-09.protonvpn.net", - "entry_ip": "37.120.215.227" + "ips": [ + "37.120.215.227", + "37.120.215.227", + "37.120.215.227" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#126", "hostname": "node-us-134.protonvpn.net", - "entry_ip": "89.187.178.173" + "ips": [ + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173", + "89.187.178.173" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#13", "hostname": "us-ny-13.protonvpn.net", - "entry_ip": "193.148.18.35" + "ips": [ + "193.148.18.35", + "193.148.18.35", + "193.148.18.35" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#16", "hostname": "node-us-46.protonvpn.net", - "entry_ip": "193.148.18.34" + "ips": [ + "193.148.18.34", + "193.148.18.34", + "193.148.18.34", + "193.148.18.34", + "193.148.18.34" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#21", "hostname": "us-ny-21.protonvpn.net", - "entry_ip": "193.148.18.83" + "ips": [ + "193.148.18.83", + "193.148.18.83", + "193.148.18.83" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#24", "hostname": "node-us-67.protonvpn.net", - "entry_ip": "193.148.18.82" + "ips": [ + "193.148.18.82", + "193.148.18.82", + "193.148.18.82", + "193.148.18.82", + "193.148.18.82" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#29", "hostname": "us-ny-29.protonvpn.net", - "entry_ip": "193.148.18.99" + "ips": [ + "193.148.18.99", + "193.148.18.99", + "193.148.18.99" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#32", "hostname": "node-us-68.protonvpn.net", - "entry_ip": "193.148.18.98" + "ips": [ + "193.148.18.98", + "193.148.18.98", + "193.148.18.98", + "193.148.18.98", + "193.148.18.98" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#37", "hostname": "us-ny-37.protonvpn.net", - "entry_ip": "193.148.18.67" + "ips": [ + "193.148.18.67" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#38", "hostname": "node-us-77.protonvpn.net", - "entry_ip": "193.148.18.66" + "ips": [ + "193.148.18.66", + "193.148.18.66", + "193.148.18.66" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#41", "hostname": "us-ny-41.protonvpn.net", - "entry_ip": "37.120.244.62" + "ips": [ + "37.120.244.62" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#42", "hostname": "node-us-104.protonvpn.net", - "entry_ip": "37.120.244.58" + "ips": [ + "37.120.244.58", + "37.120.244.58", + "37.120.244.58" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#45", "hostname": "us-ny-45.protonvpn.net", - "entry_ip": "37.120.244.155" + "ips": [ + "37.120.244.155" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#46", "hostname": "node-us-105.protonvpn.net", - "entry_ip": "37.120.244.154" + "ips": [ + "37.120.244.154", + "37.120.244.154", + "37.120.244.154" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#49", "hostname": "us-ny-49.protonvpn.net", - "entry_ip": "37.120.244.51" + "ips": [ + "37.120.244.51" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#5", "hostname": "us-ny-05.protonvpn.net", - "entry_ip": "108.62.49.149" + "ips": [ + "108.62.49.149" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#50", "hostname": "node-us-106.protonvpn.net", - "entry_ip": "37.120.244.50" + "ips": [ + "37.120.244.50", + "37.120.244.50", + "37.120.244.50" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#53", "hostname": "us-ny-53.protonvpn.net", - "entry_ip": "37.120.244.99" + "ips": [ + "37.120.244.99" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#54", "hostname": "node-us-107.protonvpn.net", - "entry_ip": "37.120.244.98" + "ips": [ + "37.120.244.98", + "37.120.244.98", + "37.120.244.98" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#61", "hostname": "us-ny-61.protonvpn.net", - "entry_ip": "146.70.72.131" + "ips": [ + "146.70.72.131", + "146.70.72.131", + "146.70.72.131", + "146.70.72.131" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#65", "hostname": "node-us-144.protonvpn.net", - "entry_ip": "146.70.72.130" + "ips": [ + "146.70.72.130", + "146.70.72.130", + "146.70.72.130", + "146.70.72.130", + "146.70.72.130", + "146.70.72.130", + "146.70.72.130", + "146.70.72.130" + ] }, { "country": "United States", "city": "New York City", "server_name": "US-NY#73", "hostname": "node-us-118.protonvpn.net", - "entry_ip": "146.70.72.162" + "ips": [ + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162", + "146.70.72.162" + ] }, { "country": "United States", "city": "Phoenix", "server_name": "US-AZ#10", "hostname": "node-us-126.protonvpn.net", - "entry_ip": "193.37.254.66" + "ips": [ + "193.37.254.66", + "193.37.254.66", + "193.37.254.66", + "193.37.254.66", + "193.37.254.66", + "193.37.254.66", + "193.37.254.66", + "193.37.254.66", + "193.37.254.66", + "193.37.254.66", + "193.37.254.66" + ] }, { "country": "United States", "city": "Phoenix", "server_name": "US-AZ#9", "hostname": "us-az-09.protonvpn.net", - "entry_ip": "193.37.254.67" + "ips": [ + "193.37.254.67" + ] }, { "country": "United States", "city": "Salt Lake City", "server_name": "US-UT#25", "hostname": "us-ut-25b.protonvpn.net", - "entry_ip": "69.36.160.150" + "ips": [ + "69.36.160.150" + ] }, { "country": "United States", "city": "Salt Lake City", "server_name": "US-UT#26", "hostname": "node-us-110.protonvpn.net", - "entry_ip": "209.95.56.120" + "ips": [ + "209.95.56.120", + "209.95.56.120", + "209.95.56.120" + ] }, { "country": "United States", "city": "Salt Lake City", "server_name": "US-UT#29", "hostname": "us-ut-29.protonvpn.net", - "entry_ip": "173.244.209.65" + "ips": [ + "173.244.209.65" + ] }, { "country": "United States", "city": "Salt Lake City", "server_name": "US-UT#30", "hostname": "node-us-111.protonvpn.net", - "entry_ip": "174.127.84.34" + "ips": [ + "174.127.84.34", + "174.127.84.34", + "174.127.84.34" + ] }, { "country": "United States", "city": "Salt Lake City", "server_name": "US-UT#33", "hostname": "us-ut-33.protonvpn.net", - "entry_ip": "107.182.233.102" + "ips": [ + "107.182.233.102" + ] }, { "country": "United States", "city": "Salt Lake City", "server_name": "US-UT#34", "hostname": "node-us-112.protonvpn.net", - "entry_ip": "174.127.84.35" + "ips": [ + "174.127.84.35", + "174.127.84.35", + "174.127.84.35" + ] }, { "country": "United States", "city": "San Jose", "server_name": "US-CA#77", "hostname": "us-ca-77.protonvpn.net", - "entry_ip": "156.146.54.98" + "ips": [ + "156.146.54.98", + "156.146.54.98" + ] }, { "country": "United States", "city": "San Jose", "server_name": "US-CA#79", "hostname": "node-us-120.protonvpn.net", - "entry_ip": "156.146.54.97" + "ips": [ + "156.146.54.97", + "156.146.54.97", + "156.146.54.97", + "156.146.54.97", + "156.146.54.97", + "156.146.54.97", + "156.146.54.97", + "156.146.54.97", + "156.146.54.97", + "156.146.54.97" + ] }, { "country": "United States", "city": "Seattle", "server_name": "US-WA#21", "hostname": "node-us-123.protonvpn.net", - "entry_ip": "156.146.51.78" + "ips": [ + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78", + "156.146.51.78" + ] }, { "country": "United States", "city": "Seattle", "server_name": "US-WA#34", "hostname": "node-us-124.protonvpn.net", - "entry_ip": "156.146.51.65" + "ips": [ + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65", + "156.146.51.65" + ] }, { "country": "United States", "city": "Washington DC", "server_name": "US-VA#26", "hostname": "us-va-26.protonvpn.net", - "entry_ip": "185.247.68.51" + "ips": [ + "185.247.68.51", + "185.247.68.51" + ] }, { "country": "United States", "city": "Washington DC", "server_name": "US-VA#28", "hostname": "node-us-127.protonvpn.net", - "entry_ip": "185.247.68.50" + "ips": [ + "185.247.68.50", + "185.247.68.50", + "185.247.68.50", + "185.247.68.50", + "185.247.68.50", + "185.247.68.50", + "185.247.68.50", + "185.247.68.50", + "185.247.68.50", + "185.247.68.50" + ] }, { "country": "United States", @@ -87780,7 +101813,10 @@ "city": "Secaucus", "server_name": "US-NJ#11", "hostname": "node-us-31.protonvpn.net", - "entry_ip": "69.10.63.242" + "ips": [ + "69.10.63.242", + "69.10.63.242" + ] }, { "country": "United States", @@ -87788,35 +101824,53 @@ "city": "Secaucus", "server_name": "US-NJ#9", "hostname": "us-nj-09.protonvpn.net", - "entry_ip": "69.10.63.243" + "ips": [ + "69.10.63.243", + "69.10.63.243" + ] }, { "country": "United States", "region": "West", "server_name": "US-CO#21-TOR", "hostname": "us-co-21-tor.protonvpn.net", - "entry_ip": "84.17.63.17" + "ips": [ + "84.17.63.17" + ] }, { "country": "United States", "region": "West", "server_name": "US-GA#29-TOR", "hostname": "us-ga-29-tor.protonvpn.net", - "entry_ip": "89.187.171.248" + "ips": [ + "89.187.171.248" + ] }, { "country": "Vietnam", "city": "Hanoi", "server_name": "SE-VN#1", "hostname": "se-vn-01a.protonvpn.net", - "entry_ip": "185.159.156.85" + "ips": [ + "185.159.156.85" + ] }, { "country": "Vietnam", "city": "Hanoi", "server_name": "VN#1", "hostname": "node-vn-01.protonvpn.net", - "entry_ip": "188.214.152.226" + "ips": [ + "188.214.152.226", + "188.214.152.226", + "188.214.152.226", + "188.214.152.226", + "188.214.152.226", + "188.214.152.226", + "188.214.152.226", + "188.214.152.226" + ] } ] }, @@ -102695,4 +116749,4 @@ } ] } -} +} \ No newline at end of file diff --git a/internal/updater/openvpn/extract.go b/internal/updater/openvpn/extract.go index c07f3fd4..53c7e00d 100644 --- a/internal/updater/openvpn/extract.go +++ b/internal/updater/openvpn/extract.go @@ -73,21 +73,6 @@ func ExtractIPs(b []byte) (ips []net.IP, err error) { return ips, nil } -func ExtractIP(b []byte) (ip net.IP, warning string, err error) { - ips, err := ExtractIPs(b) - if err != nil { - return nil, "", err - } - - if len(ips) > 1 { - warning = fmt.Sprintf( - "only using the first IP address %s and discarding %d other hosts", - ips[0], len(ips)-1) - } - - return ips[0], warning, nil -} - func extractRemoteHosts(content []byte, rejectIP, rejectDomain bool) (hosts []string) { lines := strings.Split(string(content), "\n") for _, line := range lines { diff --git a/internal/updater/providers/mullvad/hosttoserver.go b/internal/updater/providers/mullvad/hosttoserver.go index dde5e37a..00cc6d3a 100644 --- a/internal/updater/providers/mullvad/hosttoserver.go +++ b/internal/updater/providers/mullvad/hosttoserver.go @@ -50,7 +50,7 @@ func (hts hostToServer) add(data serverData) (err error) { if ipv4 == nil || ipv4.To4() == nil { return fmt.Errorf("%w: %s", ErrParseIPv4, data.IPv4) } - server.IPs = []net.IP{ipv4} + server.IPs = append(server.IPs, ipv4) } if data.IPv6 != "" { @@ -58,7 +58,7 @@ func (hts hostToServer) add(data serverData) (err error) { if ipv6 == nil || ipv6.To4() != nil { return fmt.Errorf("%w: %s", ErrParseIPv6, data.IPv6) } - server.IPsV6 = []net.IP{ipv6} + server.IPs = append(server.IPs, ipv6) } server.Country = data.Country @@ -77,7 +77,6 @@ func (hts hostToServer) toServersSlice() (servers []models.MullvadServer) { servers = make([]models.MullvadServer, 0, len(hts)) for _, server := range hts { server.IPs = uniqueSortedIPs(server.IPs) - server.IPsV6 = uniqueSortedIPs(server.IPsV6) servers = append(servers, server) } return servers diff --git a/internal/updater/providers/nordvpn/servers.go b/internal/updater/providers/nordvpn/servers.go index ae07ce39..a7075259 100644 --- a/internal/updater/providers/nordvpn/servers.go +++ b/internal/updater/providers/nordvpn/servers.go @@ -6,6 +6,7 @@ import ( "context" "errors" "fmt" + "net" "net/http" "github.com/qdm12/gluetun/internal/models" @@ -47,7 +48,7 @@ func GetServers(ctx context.Context, client *http.Client, minServers int) ( Region: jsonServer.Country, Hostname: jsonServer.Domain, Number: number, - IP: ip, + IPs: []net.IP{ip}, TCP: jsonServer.Features.TCP, UDP: jsonServer.Features.UDP, } diff --git a/internal/updater/providers/privado/hosttoserver.go b/internal/updater/providers/privado/hosttoserver.go index 609db3f6..1bcef314 100644 --- a/internal/updater/providers/privado/hosttoserver.go +++ b/internal/updater/providers/privado/hosttoserver.go @@ -25,23 +25,17 @@ func (hts hostToServer) toHostsSlice() (hosts []string) { return hosts } -func (hts hostToServer) adaptWithIPs(hostToIPs map[string][]net.IP) ( - warnings []string) { +func (hts hostToServer) adaptWithIPs(hostToIPs map[string][]net.IP) { for host, IPs := range hostToIPs { - if len(IPs) > 1 { - warning := "more than one IP address found for host " + host - warnings = append(warnings, warning) - } server := hts[host] - server.IP = IPs[0] + server.IPs = IPs hts[host] = server } for host, server := range hts { - if server.IP == nil { + if len(server.IPs) == 0 { delete(hts, host) } } - return warnings } func (hts hostToServer) toServersSlice() (servers []models.PrivadoServer) { diff --git a/internal/updater/providers/privado/location.go b/internal/updater/providers/privado/location.go index 3998075f..0c839aa1 100644 --- a/internal/updater/providers/privado/location.go +++ b/internal/updater/providers/privado/location.go @@ -11,9 +11,9 @@ import ( func setLocationInfo(ctx context.Context, client *http.Client, servers []models.PrivadoServer) (err error) { // Get public IP address information - ipsToGetInfo := make([]net.IP, len(servers)) - for i := range servers { - ipsToGetInfo[i] = servers[i].IP + ipsToGetInfo := make([]net.IP, 0, len(servers)) + for _, server := range servers { + ipsToGetInfo = append(ipsToGetInfo, server.IPs...) } ipsInfo, err := publicip.MultiInfo(ctx, client, ipsToGetInfo) if err != nil { diff --git a/internal/updater/providers/privado/servers.go b/internal/updater/providers/privado/servers.go index caf57b24..8d368a49 100644 --- a/internal/updater/providers/privado/servers.go +++ b/internal/updater/providers/privado/servers.go @@ -62,8 +62,7 @@ func GetServers(ctx context.Context, unzipper unzip.Unzipper, return nil, warnings, err } - newWarnings = hts.adaptWithIPs(hostToIPs) - warnings = append(warnings, newWarnings...) + hts.adaptWithIPs(hostToIPs) servers = hts.toServersSlice() diff --git a/internal/updater/providers/privatevpn/servers.go b/internal/updater/providers/privatevpn/servers.go index 8f529419..a660cf51 100644 --- a/internal/updater/providers/privatevpn/servers.go +++ b/internal/updater/providers/privatevpn/servers.go @@ -6,7 +6,6 @@ import ( "context" "errors" "fmt" - "net" "strings" "github.com/qdm12/gluetun/internal/constants" @@ -60,7 +59,7 @@ func GetServers(ctx context.Context, unzipper unzip.Unzipper, continue } - ip, warning, extractIPErr := openvpn.ExtractIP(content) + ips, extractIPErr := openvpn.ExtractIPs(content) if warning != "" { warnings = append(warnings, warning) } @@ -73,7 +72,7 @@ func GetServers(ctx context.Context, unzipper unzip.Unzipper, server := models.PrivatevpnServer{ Country: country, City: city, - IPs: []net.IP{ip}, + IPs: ips, } noHostnameServers = append(noHostnameServers, server) } diff --git a/internal/updater/providers/protonvpn/iptoserver.go b/internal/updater/providers/protonvpn/iptoserver.go index b9607eac..702ddb68 100644 --- a/internal/updater/providers/protonvpn/iptoserver.go +++ b/internal/updater/providers/protonvpn/iptoserver.go @@ -19,7 +19,9 @@ func (its ipToServer) add(country, region, city, name, hostname string, server.City = city server.Name = name server.Hostname = hostname - server.EntryIP = entryIP + server.IPs = []net.IP{entryIP} + } else { + server.IPs = append(server.IPs, entryIP) } its[key] = server diff --git a/internal/updater/providers/torguard/hosttoserver.go b/internal/updater/providers/torguard/hosttoserver.go index a34f20a4..1774d5f6 100644 --- a/internal/updater/providers/torguard/hosttoserver.go +++ b/internal/updater/providers/torguard/hosttoserver.go @@ -8,14 +8,18 @@ import ( type hostToServer map[string]models.TorguardServer -func (hts hostToServer) add(host, country, city string, tcp, udp bool, ip net.IP) { +func (hts hostToServer) add(host, country, city string, + tcp, udp bool, ips []net.IP) { server, ok := hts[host] if !ok { server.Hostname = host server.Country = country server.City = city - server.IPs = append(server.IPs, ip) // used if DNS resolution fails downstream + server.IPs = ips // used if DNS resolution fails downstream + } else { + server.IPs = append(server.IPs, ips...) } + if tcp { server.TCP = tcp } diff --git a/internal/updater/providers/torguard/servers.go b/internal/updater/providers/torguard/servers.go index d5ca7601..501998a0 100644 --- a/internal/updater/providers/torguard/servers.go +++ b/internal/updater/providers/torguard/servers.go @@ -90,10 +90,7 @@ func addServerFromOvpn(fileName string, content []byte, return warnings } - ip, warning, err := openvpn.ExtractIP(content) - if warning != "" { - warnings = append(warnings, warning) - } + ips, err := openvpn.ExtractIPs(content) if err != nil { // treat error as warning and go to next file warning := err.Error() + " in " + fileName @@ -101,6 +98,6 @@ func addServerFromOvpn(fileName string, content []byte, return warnings } - hts.add(host, country, city, tcp, udp, ip) + hts.add(host, country, city, tcp, udp, ips) return warnings }