diff --git a/internal/models/server.go b/internal/models/server.go index 516eac83..6c6e6a50 100644 --- a/internal/models/server.go +++ b/internal/models/server.go @@ -5,188 +5,188 @@ import ( ) type CyberghostServer struct { - Country string `json:"country"` - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + Country string `json:"country,omitempty"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type ExpressvpnServer struct { - Country string `json:"country"` + Country string `json:"country,omitempty"` City string `json:"city,omitempty"` - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type FastestvpnServer struct { - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - Country string `json:"country"` - IPs []net.IP `json:"ips"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + Country string `json:"country,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type HideMyAssServer struct { - Country string `json:"country"` - Region string `json:"region"` - City string `json:"city"` - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + Country string `json:"country,omitempty"` + Region string `json:"region,omitempty"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type IpvanishServer struct { - Country string `json:"country"` - City string `json:"city"` - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + Country string `json:"country,omitempty"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type IvpnServer struct { - VPN string `json:"vpn"` - Country string `json:"country"` - City string `json:"city"` - ISP string `json:"isp"` - Hostname string `json:"hostname"` + VPN string `json:"vpn,omitempty"` + Country string `json:"country,omitempty"` + City string `json:"city,omitempty"` + ISP string `json:"isp,omitempty"` + Hostname string `json:"hostname,omitempty"` WgPubKey string `json:"wgpubkey,omitempty"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type MullvadServer struct { - VPN string `json:"vpn"` - IPs []net.IP `json:"ips"` - IPsV6 []net.IP `json:"ipsv6"` - Country string `json:"country"` - City string `json:"city"` - Hostname string `json:"hostname"` - ISP string `json:"isp"` - Owned bool `json:"owned"` + 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"` + ISP string `json:"isp,omitempty"` + Owned bool `json:"owned,omitempty"` WgPubKey string `json:"wgpubkey,omitempty"` } type NordvpnServer struct { //nolint:maligned - Region string `json:"region"` - Hostname string `json:"hostname"` - Number uint16 `json:"number"` - IP net.IP `json:"ip"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` + 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"` } type PerfectprivacyServer struct { - City string `json:"city"` // primary key - IPs []net.IP `json:"ips"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` + City string `json:"city,omitempty"` // primary key + IPs []net.IP `json:"ips,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` } type PrivadoServer struct { - Country string `json:"country"` - Region string `json:"region"` - City string `json:"city"` - Hostname string `json:"hostname"` - IP net.IP `json:"ip"` + 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"` } type PIAServer struct { - Region string `json:"region"` - Hostname string `json:"hostname"` - ServerName string `json:"server_name"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - PortForward bool `json:"port_forward"` - IPs []net.IP `json:"ips"` + Region string `json:"region,omitempty"` + Hostname string `json:"hostname,omitempty"` + ServerName string `json:"server_name,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + PortForward bool `json:"port_forward,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type PrivatevpnServer struct { - Country string `json:"country"` - City string `json:"city"` - Hostname string `json:"hostname"` - IPs []net.IP `json:"ip"` + Country string `json:"country,omitempty"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` + IPs []net.IP `json:"ip,omitempty"` } type ProtonvpnServer struct { - Country string `json:"country"` - Region string `json:"region"` - City string `json:"city"` - Name string `json:"name"` - Hostname string `json:"hostname"` - EntryIP net.IP `json:"entry_ip"` - ExitIPs []net.IP `json:"exit_ip"` // TODO verify it matches with public IP once connected + Country string `json:"country,omitempty"` + Region string `json:"region,omitempty"` + City string `json:"city,omitempty"` + Name string `json:"name,omitempty"` + Hostname string `json:"hostname,omitempty"` + EntryIP net.IP `json:"entry_ip,omitempty"` + ExitIPs []net.IP `json:"exit_ip,omitempty"` // TODO verify it matches with public IP once connected } type PurevpnServer struct { - Country string `json:"country"` - Region string `json:"region"` - City string `json:"city"` - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + Country string `json:"country,omitempty"` + Region string `json:"region,omitempty"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type SurfsharkServer struct { - Region string `json:"region"` - Country string `json:"country"` // Country is also used for multi-hop - City string `json:"city"` - RetroLoc string `json:"retroloc"` // TODO remove in v4 - Hostname string `json:"hostname"` - MultiHop bool `json:"multihop"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + Region string `json:"region,omitempty"` + Country string `json:"country,omitempty"` // Country is also used for multi-hop + City string `json:"city,omitempty"` + RetroLoc string `json:"retroloc,omitempty"` // TODO remove in v4 + Hostname string `json:"hostname,omitempty"` + MultiHop bool `json:"multihop,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type TorguardServer struct { - Country string `json:"country"` - City string `json:"city"` - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + Country string `json:"country,omitempty"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type VPNUnlimitedServer struct { - Country string `json:"country"` - City string `json:"city"` - Hostname string `json:"hostname"` - Free bool `json:"free"` - Stream bool `json:"stream"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + Country string `json:"country,omitempty"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` + Free bool `json:"free,omitempty"` + Stream bool `json:"stream,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type VyprvpnServer struct { - Region string `json:"region"` - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` // only support for UDP - IPs []net.IP `json:"ips"` + Region string `json:"region,omitempty"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` // only support for UDP + IPs []net.IP `json:"ips,omitempty"` } type WevpnServer struct { - City string `json:"city"` - Hostname string `json:"hostname"` - TCP bool `json:"tcp"` - UDP bool `json:"udp"` - IPs []net.IP `json:"ips"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` + TCP bool `json:"tcp,omitempty"` + UDP bool `json:"udp,omitempty"` + IPs []net.IP `json:"ips,omitempty"` } type WindscribeServer struct { - VPN string `json:"vpn"` - Region string `json:"region"` - City string `json:"city"` - Hostname string `json:"hostname"` + VPN string `json:"vpn,omitempty"` + Region string `json:"region,omitempty"` + City string `json:"city,omitempty"` + Hostname string `json:"hostname,omitempty"` OvpnX509 string `json:"x509,omitempty"` WgPubKey string `json:"wgpubkey,omitempty"` - IPs []net.IP `json:"ips"` + IPs []net.IP `json:"ips,omitempty"` } diff --git a/internal/storage/hardcoded_test.go b/internal/storage/hardcoded_test.go index dcd8cb77..53f886de 100644 --- a/internal/storage/hardcoded_test.go +++ b/internal/storage/hardcoded_test.go @@ -1,14 +1,8 @@ package storage import ( - "crypto/sha256" - "encoding/hex" - "encoding/json" - "fmt" "testing" - "github.com/qdm12/gluetun/internal/models" - "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -20,143 +14,3 @@ func Test_parseHardcodedServers(t *testing.T) { require.NoError(t, err) require.NotEmpty(t, len(servers.Cyberghost.Servers)) } - -func digestServerModelVersion(t *testing.T, server interface{}, version uint16) string { - t.Helper() - bytes, err := json.Marshal(server) - if err != nil { - t.Fatal(err) - } - bytes = append(bytes, []byte(fmt.Sprintf("%d", version))...) - arr := sha256.Sum256(bytes) - hexString := hex.EncodeToString(arr[:]) - if len(hexString) > 8 { - hexString = hexString[:8] - } - return hexString -} - -func Test_versions(t *testing.T) { - t.Parallel() - - allServers, err := parseHardcodedServers() - require.NoError(t, err) - - const format = "you forgot to update the version for %s" - testCases := map[string]struct { - model interface{} - version uint16 - digest string - }{ - "Cyberghost": { - model: models.CyberghostServer{}, - version: allServers.Cyberghost.Version, - digest: "9ce64729", - }, - "Expressvpn": { - model: models.ExpressvpnServer{}, - version: allServers.Expressvpn.Version, - digest: "6e54a351", - }, - "Fastestvpn": { - model: models.FastestvpnServer{}, - version: allServers.Fastestvpn.Version, - digest: "8825919b", - }, - "HideMyAss": { - model: models.HideMyAssServer{}, - version: allServers.HideMyAss.Version, - digest: "a93b4057", - }, - "Ipvanish": { - model: models.IpvanishServer{}, - version: allServers.Ipvanish.Version, - digest: "2eb80d28", - }, - "Ivpn": { - model: models.IvpnServer{}, - version: allServers.Ivpn.Version, - digest: "88074ceb", - }, - "Mullvad": { - model: models.MullvadServer{}, - version: allServers.Mullvad.Version, - digest: "ec56f19d", - }, - "Nordvpn": { - model: models.NordvpnServer{}, - version: allServers.Nordvpn.Version, - digest: "a8043704", - }, - "Perfect privacy": { - model: models.PerfectprivacyServer{}, - version: allServers.Perfectprivacy.Version, - digest: "233f0dd4", - }, - "Privado": { - model: models.PrivadoServer{}, - version: allServers.Privado.Version, - digest: "dba6736c", - }, - "Private Internet Access": { - model: models.PIAServer{}, - version: allServers.Pia.Version, - digest: "91db9bc9", - }, - "Privatevpn": { - model: models.PrivatevpnServer{}, - version: allServers.Privatevpn.Version, - digest: "cba13d78", - }, - "Protonvpn": { - model: models.ProtonvpnServer{}, - version: allServers.Protonvpn.Version, - digest: "4cb74c3a", - }, - "Purevpn": { - model: models.PurevpnServer{}, - version: allServers.Purevpn.Version, - digest: "23f2d422", - }, - "Surfshark": { - model: models.SurfsharkServer{}, - version: allServers.Surfshark.Version, - digest: "3ccaa772", - }, - "Torguard": { - model: models.TorguardServer{}, - version: allServers.Torguard.Version, - digest: "6eb9028e", - }, - "VPN Unlimited": { - model: models.VPNUnlimitedServer{}, - version: allServers.VPNUnlimited.Version, - digest: "5cb51319", - }, - "Vyprvpn": { - model: models.VyprvpnServer{}, - version: allServers.Vyprvpn.Version, - digest: "58de06d8", - }, - "Wevpn": { - model: models.WevpnServer{}, - version: allServers.Wevpn.Version, - digest: "f4daa186", - }, - "Windscribe": { - model: models.WindscribeServer{}, - version: allServers.Windscribe.Version, - digest: "4bd0fc4f", - }, - } - for name, testCase := range testCases { - name := name - testCase := testCase - t.Run(name, func(t *testing.T) { - t.Parallel() - digest := digestServerModelVersion(t, testCase.model, testCase.version) - failureMessage := fmt.Sprintf(format, name) - assert.Equal(t, testCase.digest, digest, failureMessage) - }) - } -} diff --git a/internal/storage/servers.json b/internal/storage/servers.json index 97dae8bf..f45c39ed 100644 --- a/internal/storage/servers.json +++ b/internal/storage/servers.json @@ -7,7 +7,6 @@ { "country": "Albania", "hostname": "87-1-al.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "31.171.155.3", @@ -26,7 +25,6 @@ "country": "Albania", "hostname": "97-1-al.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "31.171.155.4", "31.171.155.5", @@ -43,7 +41,6 @@ { "country": "Algeria", "hostname": "87-1-dz.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "176.125.228.131", @@ -62,7 +59,6 @@ "country": "Algeria", "hostname": "97-1-dz.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "176.125.228.132", "176.125.228.133", @@ -79,7 +75,6 @@ { "country": "Andorra", "hostname": "87-1-ad.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.241.82.142", @@ -98,7 +93,6 @@ "country": "Andorra", "hostname": "97-1-ad.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.241.82.132", "188.241.82.137", @@ -115,7 +109,6 @@ { "country": "Argentina", "hostname": "87-1-ar.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.38.65", @@ -134,7 +127,6 @@ "country": "Argentina", "hostname": "97-1-ar.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.38.64", "146.70.38.65", @@ -151,7 +143,6 @@ { "country": "Armenia", "hostname": "87-1-am.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "185.253.160.131", @@ -170,7 +161,6 @@ "country": "Armenia", "hostname": "97-1-am.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "185.253.160.132", "185.253.160.133", @@ -187,7 +177,6 @@ { "country": "Australia", "hostname": "87-1-au.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "43.242.68.102", @@ -206,7 +195,6 @@ "country": "Australia", "hostname": "97-1-au.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "43.242.68.68", "43.242.68.87", @@ -223,7 +211,6 @@ { "country": "Austria", "hostname": "87-1-at.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "37.19.223.5", @@ -251,7 +238,6 @@ "country": "Austria", "hostname": "97-1-at.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "37.19.223.26", "37.19.223.30", @@ -268,7 +254,6 @@ { "country": "Bahamas", "hostname": "87-1-bs.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.181.238.157", @@ -287,7 +272,6 @@ "country": "Bahamas", "hostname": "97-1-bs.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.181.238.157", "95.181.238.158", @@ -304,7 +288,6 @@ { "country": "Bangladesh", "hostname": "87-1-bd.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "84.252.93.132", @@ -323,7 +306,6 @@ "country": "Bangladesh", "hostname": "97-1-bd.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.252.93.133", "84.252.93.134", @@ -340,7 +322,6 @@ { "country": "Belarus", "hostname": "87-1-by.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "45.132.194.12", @@ -359,7 +340,6 @@ "country": "Belarus", "hostname": "97-1-by.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "45.132.194.3", "45.132.194.4", @@ -376,7 +356,6 @@ { "country": "Belgium", "hostname": "87-1-be.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "37.120.143.56", @@ -395,7 +374,6 @@ "country": "Belgium", "hostname": "97-1-be.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "5.253.205.22", "5.253.205.28", @@ -412,7 +390,6 @@ { "country": "Bosnia and Herzegovina", "hostname": "87-1-ba.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "185.99.3.57", @@ -431,7 +408,6 @@ "country": "Bosnia and Herzegovina", "hostname": "97-1-ba.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "185.99.3.57", "185.99.3.58", @@ -448,7 +424,6 @@ { "country": "Brazil", "hostname": "87-1-br.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.241.177.4", @@ -467,7 +442,6 @@ "country": "Brazil", "hostname": "97-1-br.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.241.177.4", "188.241.177.7", @@ -484,7 +458,6 @@ { "country": "Bulgaria", "hostname": "87-1-bg.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "37.120.152.109", @@ -503,7 +476,6 @@ "country": "Bulgaria", "hostname": "97-1-bg.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "37.120.152.105", "37.120.152.106", @@ -520,7 +492,6 @@ { "country": "Cambodia", "hostname": "87-1-kh.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.215.235.39", @@ -539,7 +510,6 @@ "country": "Cambodia", "hostname": "97-1-kh.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.215.235.35", "188.215.235.37", @@ -556,7 +526,6 @@ { "country": "Canada", "hostname": "87-1-ca.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "66.115.142.158", @@ -575,7 +544,6 @@ "country": "Canada", "hostname": "97-1-ca.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "66.115.142.138", "66.115.142.168", @@ -592,7 +560,6 @@ { "country": "Chile", "hostname": "87-1-cl.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.11.3", @@ -611,7 +578,6 @@ "country": "Chile", "hostname": "97-1-cl.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.11.3", "146.70.11.5", @@ -628,7 +594,6 @@ { "country": "China", "hostname": "87-1-cn.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.241.80.131", @@ -647,7 +612,6 @@ "country": "China", "hostname": "97-1-cn.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.241.80.131", "188.241.80.132", @@ -664,7 +628,6 @@ { "country": "Colombia", "hostname": "87-1-co.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.9.3", @@ -683,7 +646,6 @@ "country": "Colombia", "hostname": "97-1-co.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.9.4", "146.70.9.5", @@ -700,7 +662,6 @@ { "country": "Costa Rica", "hostname": "87-1-cr.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.10.3", @@ -719,7 +680,6 @@ "country": "Costa Rica", "hostname": "97-1-cr.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.10.3", "146.70.10.4", @@ -736,7 +696,6 @@ { "country": "Croatia", "hostname": "87-1-hr.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.8.3", @@ -755,7 +714,6 @@ "country": "Croatia", "hostname": "97-1-hr.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.8.4", "146.70.8.5", @@ -772,7 +730,6 @@ { "country": "Cyprus", "hostname": "87-1-cy.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "185.253.162.132", @@ -791,7 +748,6 @@ "country": "Cyprus", "hostname": "97-1-cy.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "185.253.162.132", "185.253.162.133", @@ -808,7 +764,6 @@ { "country": "Czech Republic", "hostname": "87-1-cz.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "138.199.56.225", @@ -827,7 +782,6 @@ "country": "Czech Republic", "hostname": "97-1-cz.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "138.199.56.238", "138.199.56.245", @@ -844,7 +798,6 @@ { "country": "Denmark", "hostname": "87-1-dk.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "37.120.145.88", @@ -863,7 +816,6 @@ "country": "Denmark", "hostname": "97-1-dk.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "37.120.145.88", "37.120.145.91", @@ -880,7 +832,6 @@ { "country": "Egypt", "hostname": "87-1-eg.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.214.122.37", @@ -899,7 +850,6 @@ "country": "Egypt", "hostname": "97-1-eg.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.214.122.35", "188.214.122.41", @@ -916,7 +866,6 @@ { "country": "Estonia", "hostname": "87-1-ee.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.153.32.84", @@ -935,7 +884,6 @@ "country": "Estonia", "hostname": "97-1-ee.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.153.32.84", "95.153.32.85", @@ -952,7 +900,6 @@ { "country": "Finland", "hostname": "87-1-fi.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.126.89.100", @@ -971,7 +918,6 @@ "country": "Finland", "hostname": "97-1-fi.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.126.89.110", "188.126.89.111", @@ -988,7 +934,6 @@ { "country": "France", "hostname": "87-1-fr.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "92.204.175.85", @@ -1007,7 +952,6 @@ "country": "France", "hostname": "97-1-fr.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.17.43.163", "84.17.60.34", @@ -1034,7 +978,6 @@ { "country": "Georgia", "hostname": "87-1-ge.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.181.236.131", @@ -1053,7 +996,6 @@ "country": "Georgia", "hostname": "97-1-ge.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.181.236.131", "95.181.236.133", @@ -1070,7 +1012,6 @@ { "country": "Germany", "hostname": "87-1-de.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "84.17.48.96", @@ -1089,7 +1030,6 @@ "country": "Germany", "hostname": "97-1-de.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.17.48.108", "84.17.48.123", @@ -1106,7 +1046,6 @@ { "country": "Greece", "hostname": "87-1-gr.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "185.51.134.165", @@ -1125,7 +1064,6 @@ "country": "Greece", "hostname": "97-1-gr.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "185.51.134.164", "185.51.134.166", @@ -1142,7 +1080,6 @@ { "country": "Greenland", "hostname": "87-1-gl.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "91.90.120.3", @@ -1161,7 +1098,6 @@ "country": "Greenland", "hostname": "97-1-gl.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "91.90.120.3", "91.90.120.4", @@ -1178,7 +1114,6 @@ { "country": "Hong Kong", "hostname": "87-1-hk.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "84.17.56.141", @@ -1197,7 +1132,6 @@ "country": "Hong Kong", "hostname": "97-1-hk.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.17.56.130", "84.17.56.135", @@ -1214,7 +1148,6 @@ { "country": "Hungary", "hostname": "87-1-hu.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "86.106.74.247", @@ -1233,7 +1166,6 @@ "country": "Hungary", "hostname": "97-1-hu.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "86.106.74.243", "86.106.74.245", @@ -1250,7 +1182,6 @@ { "country": "Iceland", "hostname": "87-1-is.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "45.133.193.3", @@ -1269,7 +1200,6 @@ "country": "Iceland", "hostname": "97-1-is.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "45.133.193.3", "45.133.193.4", @@ -1286,7 +1216,6 @@ { "country": "India", "hostname": "87-1-in.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "103.13.112.66", @@ -1305,7 +1234,6 @@ "country": "India", "hostname": "97-1-in.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "103.13.112.70", "103.13.112.74", @@ -1322,7 +1250,6 @@ { "country": "Indonesia", "hostname": "87-1-id.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.14.3", @@ -1341,7 +1268,6 @@ "country": "Indonesia", "hostname": "97-1-id.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.14.4", "146.70.14.5", @@ -1358,7 +1284,6 @@ { "country": "Iran", "hostname": "87-1-ir.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "62.133.46.6", @@ -1377,7 +1302,6 @@ "country": "Iran", "hostname": "97-1-ir.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "62.133.46.4", "62.133.46.6", @@ -1394,7 +1318,6 @@ { "country": "Ireland", "hostname": "87-1-ie.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "37.120.235.151", @@ -1413,7 +1336,6 @@ "country": "Ireland", "hostname": "97-1-ie.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "37.120.235.151", "37.120.235.158", @@ -1430,7 +1352,6 @@ { "country": "Isle of Man", "hostname": "87-1-im.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "91.90.124.147", @@ -1452,7 +1373,6 @@ "country": "Isle of Man", "hostname": "97-1-im.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "91.90.124.147", "91.90.124.148", @@ -1469,7 +1389,6 @@ { "country": "Israel", "hostname": "87-1-il.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "160.116.0.164", @@ -1488,7 +1407,6 @@ "country": "Israel", "hostname": "97-1-il.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "160.116.0.163", "160.116.0.172", @@ -1505,7 +1423,6 @@ { "country": "Italy", "hostname": "87-1-it.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "84.17.58.11", @@ -1524,7 +1441,6 @@ "country": "Italy", "hostname": "97-1-it.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.17.58.15", "84.17.58.99", @@ -1541,7 +1457,6 @@ { "country": "Japan", "hostname": "87-1-jp.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "156.146.35.3", @@ -1560,7 +1475,6 @@ "country": "Japan", "hostname": "97-1-jp.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "156.146.35.7", "156.146.35.10", @@ -1577,7 +1491,6 @@ { "country": "Kazakhstan", "hostname": "87-1-kz.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "62.133.47.132", @@ -1596,7 +1509,6 @@ "country": "Kazakhstan", "hostname": "97-1-kz.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "62.133.47.131", "62.133.47.132", @@ -1613,7 +1525,6 @@ { "country": "Kenya", "hostname": "87-1-ke.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "62.12.118.195", @@ -1632,7 +1543,6 @@ "country": "Kenya", "hostname": "97-1-ke.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "62.12.118.195", "62.12.118.196", @@ -1649,7 +1559,6 @@ { "country": "Korea", "hostname": "87-1-kr.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "79.110.55.136", @@ -1668,7 +1577,6 @@ "country": "Korea", "hostname": "97-1-kr.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "79.110.55.131", "79.110.55.133", @@ -1685,7 +1593,6 @@ { "country": "Latvia", "hostname": "87-1-lv.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "46.183.220.230", @@ -1704,7 +1611,6 @@ "country": "Latvia", "hostname": "97-1-lv.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "46.183.220.227", "46.183.220.228", @@ -1721,7 +1627,6 @@ { "country": "Liechtenstein", "hostname": "87-1-li.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "91.90.122.131", @@ -1740,7 +1645,6 @@ "country": "Liechtenstein", "hostname": "97-1-li.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "91.90.122.131", "91.90.122.132", @@ -1757,7 +1661,6 @@ { "country": "Lithuania", "hostname": "87-1-lt.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "85.206.162.210", @@ -1776,7 +1679,6 @@ "country": "Lithuania", "hostname": "97-1-lt.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "85.206.162.213", "85.206.162.214", @@ -1793,7 +1695,6 @@ { "country": "Luxembourg", "hostname": "87-1-lu.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "5.253.204.4", @@ -1812,7 +1713,6 @@ "country": "Luxembourg", "hostname": "97-1-lu.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "5.253.204.3", "5.253.204.9", @@ -1829,7 +1729,6 @@ { "country": "Macao", "hostname": "87-1-mo.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "84.252.92.131", @@ -1848,7 +1747,6 @@ "country": "Macao", "hostname": "97-1-mo.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.252.92.131", "84.252.92.132", @@ -1865,7 +1763,6 @@ { "country": "Macedonia", "hostname": "87-1-mk.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "185.225.28.3", @@ -1884,7 +1781,6 @@ "country": "Macedonia", "hostname": "97-1-mk.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "185.225.28.3", "185.225.28.4", @@ -1901,7 +1797,6 @@ { "country": "Malaysia", "hostname": "87-1-my.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.15.3", @@ -1920,7 +1815,6 @@ "country": "Malaysia", "hostname": "97-1-my.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.15.3", "146.70.15.4", @@ -1937,7 +1831,6 @@ { "country": "Malta", "hostname": "87-1-mt.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "176.125.230.132", @@ -1956,7 +1849,6 @@ "country": "Malta", "hostname": "97-1-mt.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "176.125.230.131", "176.125.230.133", @@ -1973,7 +1865,6 @@ { "country": "Mexico", "hostname": "87-1-mx.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "77.81.142.135", @@ -1992,7 +1883,6 @@ "country": "Mexico", "hostname": "97-1-mx.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "77.81.142.132", "77.81.142.133", @@ -2009,7 +1899,6 @@ { "country": "Moldova", "hostname": "87-1-md.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "178.175.130.243", @@ -2028,7 +1917,6 @@ "country": "Moldova", "hostname": "97-1-md.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "178.175.130.243", "178.175.130.244", @@ -2045,7 +1933,6 @@ { "country": "Monaco", "hostname": "87-1-mc.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.181.233.131", @@ -2064,7 +1951,6 @@ "country": "Monaco", "hostname": "97-1-mc.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.181.233.131", "95.181.233.133", @@ -2081,7 +1967,6 @@ { "country": "Mongolia", "hostname": "87-1-mn.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "185.253.163.131", @@ -2100,7 +1985,6 @@ "country": "Mongolia", "hostname": "97-1-mn.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "185.253.163.133", "185.253.163.134", @@ -2117,7 +2001,6 @@ { "country": "Montenegro", "hostname": "87-1-me.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "176.125.229.131", @@ -2136,7 +2019,6 @@ "country": "Montenegro", "hostname": "97-1-me.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "176.125.229.131", "176.125.229.133", @@ -2155,7 +2037,6 @@ { "country": "Morocco", "hostname": "87-1-ma.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.181.232.131", @@ -2174,7 +2055,6 @@ "country": "Morocco", "hostname": "97-1-ma.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.181.232.131", "95.181.232.133", @@ -2191,7 +2071,6 @@ { "country": "Netherlands", "hostname": "87-1-nl.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "84.17.47.112", @@ -2210,7 +2089,6 @@ "country": "Netherlands", "hostname": "97-1-nl.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.17.47.110", "84.17.47.116", @@ -2227,7 +2105,6 @@ { "country": "New Zealand", "hostname": "87-1-nz.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "43.250.207.98", @@ -2246,7 +2123,6 @@ "country": "New Zealand", "hostname": "97-1-nz.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "43.250.207.98", "43.250.207.99", @@ -2263,7 +2139,6 @@ { "country": "Nigeria", "hostname": "87-1-ng.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.65.4", @@ -2282,7 +2157,6 @@ "country": "Nigeria", "hostname": "97-1-ng.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.65.3", "146.70.65.4", @@ -2299,7 +2173,6 @@ { "country": "Norway", "hostname": "87-1-no.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "82.102.27.91", @@ -2318,7 +2191,6 @@ "country": "Norway", "hostname": "97-1-no.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "185.206.225.27", "185.206.225.29", @@ -2335,7 +2207,6 @@ { "country": "Pakistan", "hostname": "87-1-pk.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.12.4", @@ -2354,7 +2225,6 @@ "country": "Pakistan", "hostname": "97-1-pk.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.12.3", "146.70.12.4", @@ -2371,7 +2241,6 @@ { "country": "Panama", "hostname": "87-1-pa.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "91.90.126.132", @@ -2390,7 +2259,6 @@ "country": "Panama", "hostname": "97-1-pa.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "91.90.126.132", "91.90.126.133", @@ -2407,7 +2275,6 @@ { "country": "Philippines", "hostname": "87-1-ph.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.214.125.35", @@ -2426,7 +2293,6 @@ "country": "Philippines", "hostname": "97-1-ph.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.214.125.36", "188.214.125.37", @@ -2443,7 +2309,6 @@ { "country": "Poland", "hostname": "87-1-pl.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "138.199.59.137", @@ -2462,7 +2327,6 @@ "country": "Poland", "hostname": "97-1-pl.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "138.199.59.135", "138.199.59.138", @@ -2479,7 +2343,6 @@ { "country": "Portugal", "hostname": "87-1-pt.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.59.131", @@ -2498,7 +2361,6 @@ "country": "Portugal", "hostname": "97-1-pt.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.59.134", "146.70.59.140", @@ -2515,7 +2377,6 @@ { "country": "Qatar", "hostname": "87-1-qa.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.181.234.131", @@ -2534,7 +2395,6 @@ "country": "Qatar", "hostname": "97-1-qa.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.181.234.131", "95.181.234.132", @@ -2551,7 +2411,6 @@ { "country": "Romania", "hostname": "87-1-ro.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "193.176.84.82", @@ -2569,7 +2428,6 @@ { "country": "Romania", "hostname": "87-8-ro.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "85.9.20.131", @@ -2588,7 +2446,6 @@ "country": "Romania", "hostname": "97-1-ro.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "193.176.84.81", "193.176.84.86", @@ -2615,7 +2472,6 @@ "country": "Romania", "hostname": "97-8-ro.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "85.9.20.138", "85.9.20.139", @@ -2632,7 +2488,6 @@ { "country": "Russian Federation", "hostname": "87-1-ru.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.52.8", @@ -2651,7 +2506,6 @@ "country": "Russian Federation", "hostname": "97-1-ru.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.52.5", "146.70.52.8", @@ -2668,7 +2522,6 @@ { "country": "Saudi Arabia", "hostname": "87-1-sa.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.181.235.131", @@ -2687,7 +2540,6 @@ "country": "Saudi Arabia", "hostname": "97-1-sa.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.181.235.131", "95.181.235.133", @@ -2704,7 +2556,6 @@ { "country": "Serbia", "hostname": "87-1-rs.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "141.98.103.35", @@ -2723,7 +2574,6 @@ "country": "Serbia", "hostname": "97-1-rs.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "141.98.103.35", "141.98.103.36", @@ -2740,7 +2590,6 @@ { "country": "Singapore", "hostname": "87-1-sg.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "84.17.39.163", @@ -2759,7 +2608,6 @@ "country": "Singapore", "hostname": "97-1-sg.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.17.39.164", "84.17.39.168", @@ -2776,7 +2624,6 @@ { "country": "Slovakia", "hostname": "87-1-sk.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "185.245.85.227", @@ -2795,7 +2642,6 @@ "country": "Slovakia", "hostname": "97-1-sk.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "185.245.85.227", "185.245.85.228", @@ -2812,7 +2658,6 @@ { "country": "Slovenia", "hostname": "87-1-si.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "195.80.150.211", @@ -2831,7 +2676,6 @@ "country": "Slovenia", "hostname": "97-1-si.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "195.80.150.211", "195.80.150.212", @@ -2848,7 +2692,6 @@ { "country": "South Africa", "hostname": "87-1-za.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.214.158.39", @@ -2867,7 +2710,6 @@ "country": "South Africa", "hostname": "97-1-za.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.214.158.39", "188.214.158.40", @@ -2884,7 +2726,6 @@ { "country": "Spain", "hostname": "87-1-es.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "37.120.142.36", @@ -2903,7 +2744,6 @@ "country": "Spain", "hostname": "97-1-es.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "37.120.142.163", "82.102.26.199", @@ -2920,7 +2760,6 @@ { "country": "Sri Lanka", "hostname": "87-1-lk.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.181.239.133", @@ -2939,7 +2778,6 @@ "country": "Sri Lanka", "hostname": "97-1-lk.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.181.239.131", "95.181.239.132", @@ -2956,7 +2794,6 @@ { "country": "Sweden", "hostname": "87-1-se.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.126.73.199", @@ -2975,7 +2812,6 @@ "country": "Sweden", "hostname": "97-1-se.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.126.73.198", "188.126.73.208", @@ -2992,7 +2828,6 @@ { "country": "Switzerland", "hostname": "87-1-ch.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "84.17.52.7", @@ -3011,7 +2846,6 @@ "country": "Switzerland", "hostname": "97-1-ch.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "84.17.52.11", "84.17.52.19", @@ -3028,7 +2862,6 @@ { "country": "Taiwan", "hostname": "87-1-tw.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "45.133.181.100", @@ -3047,7 +2880,6 @@ "country": "Taiwan", "hostname": "97-1-tw.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "45.133.181.101", "45.133.181.103", @@ -3064,7 +2896,6 @@ { "country": "Thailand", "hostname": "87-1-th.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "146.70.13.3", @@ -3083,7 +2914,6 @@ "country": "Thailand", "hostname": "97-1-th.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "146.70.13.3", "146.70.13.4", @@ -3100,7 +2930,6 @@ { "country": "Turkey", "hostname": "87-1-tr.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.213.34.6", @@ -3119,7 +2948,6 @@ "country": "Turkey", "hostname": "97-1-tr.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.213.34.4", "188.213.34.13", @@ -3136,7 +2964,6 @@ { "country": "Ukraine", "hostname": "87-1-ua.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "156.146.50.34", @@ -3155,7 +2982,6 @@ "country": "Ukraine", "hostname": "97-1-ua.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "156.146.50.18", "156.146.50.33", @@ -3172,7 +2998,6 @@ { "country": "United Arab Emirates", "hostname": "87-1-ae.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "217.138.193.179", @@ -3191,7 +3016,6 @@ "country": "United Arab Emirates", "hostname": "97-1-ae.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "217.138.193.179", "217.138.193.180", @@ -3208,7 +3032,6 @@ { "country": "United Kingdom", "hostname": "87-1-gb.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "45.133.172.109", @@ -3227,7 +3050,6 @@ "country": "United Kingdom", "hostname": "97-1-gb.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "45.133.172.108", "45.133.173.54", @@ -3244,7 +3066,6 @@ { "country": "United States", "hostname": "87-1-us.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "89.187.171.153", @@ -3263,7 +3084,6 @@ "country": "United States", "hostname": "97-1-us.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "45.89.173.219", "84.17.45.112", @@ -3280,7 +3100,6 @@ { "country": "Venezuela", "hostname": "87-1-ve.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "95.181.237.131", @@ -3299,7 +3118,6 @@ "country": "Venezuela", "hostname": "97-1-ve.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "95.181.237.132", "95.181.237.133", @@ -3316,7 +3134,6 @@ { "country": "Vietnam", "hostname": "87-1-vn.cg-dialup.net", - "tcp": false, "udp": true, "ips": [ "188.214.152.99", @@ -3335,7 +3152,6 @@ "country": "Vietnam", "hostname": "97-1-vn.cg-dialup.net", "tcp": true, - "udp": false, "ips": [ "188.214.152.99", "188.214.152.100", @@ -3358,7 +3174,6 @@ { "country": "Albania", "hostname": "albania-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "31.171.152.54" @@ -3367,7 +3182,6 @@ { "country": "Algeria", "hostname": "algeria-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.39" @@ -3376,7 +3190,6 @@ { "country": "Andorra", "hostname": "andorra-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.26" @@ -3385,7 +3198,6 @@ { "country": "Argentina", "hostname": "argentina-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.134", @@ -3395,7 +3207,6 @@ { "country": "Armenia", "hostname": "armenia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.56" @@ -3405,7 +3216,6 @@ "country": "Australia", "city": "Brisbane", "hostname": "australia-brisbane-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.132.224.33", @@ -3426,7 +3236,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "australia-melbourne-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.132.225.3", @@ -3439,7 +3248,6 @@ "country": "Australia", "city": "Perth", "hostname": "australia-perth-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.133.6.4", @@ -3453,7 +3261,6 @@ "country": "Australia", "city": "Sydney", "hostname": "australia-sydney-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.133.4.5", @@ -3465,7 +3272,6 @@ "country": "Australia", "city": "Sydney", "hostname": "australia-sydney-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.67.96.2", @@ -3476,7 +3282,6 @@ { "country": "Austria", "hostname": "austria-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "86.107.21.201", @@ -3490,7 +3295,6 @@ { "country": "Bahamas", "hostname": "bahamas-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "154.6.23.10" @@ -3499,7 +3303,6 @@ { "country": "Bangladesh", "hostname": "bangladesh-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.218" @@ -3508,7 +3311,6 @@ { "country": "Belarus", "hostname": "belarus-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.68", @@ -3518,7 +3320,6 @@ { "country": "Belgium", "hostname": "belgium-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "194.110.115.108", @@ -3528,7 +3329,6 @@ { "country": "Bhutan", "hostname": "bhutan-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "193.37.32.115" @@ -3538,7 +3338,6 @@ "country": "Bosnia And Herzegovina", "city": "Bosnia And Herzegovina", "hostname": "bosniaandherzegovina-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.98" @@ -3547,7 +3346,6 @@ { "country": "Brazil", "hostname": "brazil-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "191.101.252.94", @@ -3557,7 +3355,6 @@ { "country": "Brazil", "hostname": "brazil-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.150", @@ -3567,7 +3364,6 @@ { "country": "Brunei", "hostname": "brunei-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.28" @@ -3576,7 +3372,6 @@ { "country": "Cambodia", "hostname": "cambodia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.54" @@ -3586,7 +3381,6 @@ "country": "Canada", "city": "Montreal", "hostname": "canada-montreal-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "23.236.224.148", @@ -3605,7 +3399,6 @@ "country": "Canada", "city": "Montreal", "hostname": "canada-montreal-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "23.236.224.148", @@ -3624,7 +3417,6 @@ "country": "Canada", "city": "Toronto", "hostname": "canada-toronto-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "185.92.26.109", @@ -3638,7 +3430,6 @@ "country": "Canada", "city": "Toronto", "hostname": "canada-toronto-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "198.144.145.17", @@ -3650,7 +3441,6 @@ "country": "Canada", "city": "Vancouver", "hostname": "canada-vancouver-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "71.19.249.220", @@ -3662,7 +3452,6 @@ { "country": "Chile", "hostname": "chile-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.112" @@ -3671,7 +3460,6 @@ { "country": "Colombia", "hostname": "colombia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.85", @@ -3681,7 +3469,6 @@ { "country": "Croatia", "hostname": "croatia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.10.56.232", @@ -3691,7 +3478,6 @@ { "country": "Cyprus", "hostname": "cyprus-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "185.205.186.3" @@ -3701,7 +3487,6 @@ "country": "Czech Republic", "city": "Czech Republic", "hostname": "czechrepublic-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "82.118.30.150" @@ -3710,7 +3495,6 @@ { "country": "Denmark", "hostname": "denmark-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "193.29.107.4", @@ -3721,7 +3505,6 @@ { "country": "Ecuador", "hostname": "ecuador-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.122" @@ -3730,7 +3513,6 @@ { "country": "Egypt", "hostname": "egypt-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.119" @@ -3739,7 +3521,6 @@ { "country": "Estonia", "hostname": "estonia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "185.195.237.154" @@ -3748,7 +3529,6 @@ { "country": "Finland", "hostname": "finland-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "196.244.192.2", @@ -3759,7 +3539,6 @@ "country": "France", "city": "Paris", "hostname": "france-paris-1-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.91.22.7", @@ -3772,7 +3551,6 @@ "country": "France", "city": "Paris", "hostname": "france-paris-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "193.68.91.77", @@ -3785,7 +3563,6 @@ "country": "France", "city": "Strasbourg", "hostname": "france-strasbourg-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "191.96.180.110", @@ -3797,7 +3574,6 @@ { "country": "Georgia", "hostname": "georgia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "91.239.206.88" @@ -3807,7 +3583,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "germany-darmstadt-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "84.247.59.208", @@ -3820,7 +3595,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "germany-frankfurt-1-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.86.203.3", @@ -3838,7 +3612,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "germany-frankfurt-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "194.195.91.26", @@ -3851,7 +3624,6 @@ "country": "Germany", "city": "Nuremberg", "hostname": "germany-nuremberg-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.15.2", @@ -3862,7 +3634,6 @@ { "country": "Greece", "hostname": "greece-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "185.51.134.226" @@ -3871,7 +3642,6 @@ { "country": "Guatemala", "hostname": "guatemala-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.229" @@ -3881,7 +3651,6 @@ "country": "Hong Kong", "city": "Hong Kong", "hostname": "hongkong-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "193.176.211.105" @@ -3890,7 +3659,6 @@ { "country": "Hungary", "hostname": "hungary-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "91.219.236.214", @@ -3902,7 +3670,6 @@ { "country": "Iceland", "hostname": "iceland-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.133.193.136", @@ -3915,7 +3682,6 @@ "country": "India", "city": "Chennai", "hostname": "india-chennai-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.137.126.2", @@ -3928,7 +3694,6 @@ "country": "India", "city": "Mumbai", "hostname": "india-mumbai-1-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "43.241.61.241", @@ -3940,7 +3705,6 @@ { "country": "Indonesia", "hostname": "indonesia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "64.64.121.91", @@ -3950,7 +3714,6 @@ { "country": "Ireland", "hostname": "ireland-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "37.120.235.19", @@ -3967,7 +3730,6 @@ "country": "Isle Of Man", "city": "Isle Of Man", "hostname": "isleofman-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.137" @@ -3976,7 +3738,6 @@ { "country": "Israel", "hostname": "israel-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "31.168.162.18", @@ -3988,7 +3749,6 @@ "country": "Italy", "city": "Cosenza", "hostname": "italy-cosenza-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "213.21.226.42", @@ -4001,7 +3761,6 @@ "country": "Italy", "city": "Milan", "hostname": "italy-milan-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.91.20.82", @@ -4014,7 +3773,6 @@ "country": "Japan", "city": "Kawasaki", "hostname": "japan-kawasaki-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "194.5.48.19", @@ -4028,7 +3786,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "japan-tokyo-1-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "185.208.11.10", @@ -4041,7 +3798,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "japan-tokyo-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.8.68.17", @@ -4051,7 +3807,6 @@ { "country": "Jersey", "hostname": "jersey-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.165" @@ -4060,7 +3815,6 @@ { "country": "Kazakhstan", "hostname": "kazakhstan-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "84.17.39.5" @@ -4069,7 +3823,6 @@ { "country": "Kenya", "hostname": "kenya-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "62.12.114.42" @@ -4078,7 +3831,6 @@ { "country": "Kyrgyzstan", "hostname": "kyrgyzstan-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "91.213.233.146" @@ -4087,7 +3839,6 @@ { "country": "Laos", "hostname": "laos-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.181" @@ -4096,7 +3847,6 @@ { "country": "Liechtenstein", "hostname": "liechtenstein-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.180" @@ -4105,7 +3855,6 @@ { "country": "Lithuania", "hostname": "lithuania-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.206.175.222" @@ -4114,7 +3863,6 @@ { "country": "Luxembourg", "hostname": "luxembourg-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "94.242.218.139", @@ -4125,7 +3873,6 @@ { "country": "Macau", "hostname": "macau-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.134" @@ -4134,7 +3881,6 @@ { "country": "Malaysia", "hostname": "malaysia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "5.182.16.49", @@ -4144,7 +3890,6 @@ { "country": "Malta", "hostname": "malta-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.10" @@ -4153,7 +3898,6 @@ { "country": "Mexico", "hostname": "mexico-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "179.61.245.3", @@ -4164,7 +3908,6 @@ { "country": "Moldova", "hostname": "moldova-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "178.17.168.130" @@ -4173,7 +3916,6 @@ { "country": "Monaco", "hostname": "monaco-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.210" @@ -4182,7 +3924,6 @@ { "country": "Mongolia", "hostname": "mongolia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.144" @@ -4191,7 +3932,6 @@ { "country": "Montenegro", "hostname": "montenegro-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.233" @@ -4200,7 +3940,6 @@ { "country": "Myanmar", "hostname": "myanmar-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.166" @@ -4209,7 +3948,6 @@ { "country": "Nepal", "hostname": "nepal-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "193.37.32.82" @@ -4219,7 +3957,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "netherlands-amsterdam-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "185.82.72.47", @@ -4231,7 +3968,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "netherlands-amsterdam-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.128.199.183", @@ -4244,7 +3980,6 @@ "country": "Netherlands", "city": "Rotterdam", "hostname": "netherlands-rotterdam-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "31.204.151.90", @@ -4256,7 +3991,6 @@ "country": "Netherlands", "city": "The Hague", "hostname": "netherlands-thehague-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.134.20.9", @@ -4274,7 +4008,6 @@ "country": "New Zealand", "city": "New Zealand", "hostname": "newzealand-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.133.7.15", @@ -4288,7 +4021,6 @@ "country": "North Macedonia", "city": "North Macedonia", "hostname": "macedonia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.204" @@ -4297,7 +4029,6 @@ { "country": "Norway", "hostname": "norway-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "37.120.149.131", @@ -4309,7 +4040,6 @@ { "country": "Pakistan", "hostname": "pakistan-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "193.37.32.121" @@ -4318,7 +4048,6 @@ { "country": "Panama", "hostname": "panama-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.73" @@ -4327,7 +4056,6 @@ { "country": "Peru", "hostname": "peru-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.251" @@ -4337,7 +4065,6 @@ "country": "Philippines Via Singapore", "city": "Philippines Via Singapore", "hostname": "ph-via-sing-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "84.17.38.71", @@ -4350,7 +4077,6 @@ { "country": "Poland", "hostname": "poland-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "188.212.135.239" @@ -4359,7 +4085,6 @@ { "country": "Portugal", "hostname": "portugal-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "94.46.13.79", @@ -4371,7 +4096,6 @@ { "country": "Romania", "hostname": "romania-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.204.124.83", @@ -4387,7 +4111,6 @@ { "country": "Serbia", "hostname": "serbia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "89.38.224.163" @@ -4397,7 +4120,6 @@ "country": "Singapore", "city": "CBD", "hostname": "singapore-cbd-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "193.37.33.3", @@ -4415,7 +4137,6 @@ "country": "Singapore", "city": "Jurong", "hostname": "singapore-jurong-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "84.17.39.94", @@ -4428,7 +4149,6 @@ "country": "Singapore", "city": "Marina Bay", "hostname": "singapore-marinabay-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.85.107.33", @@ -4441,7 +4161,6 @@ { "country": "Slovakia", "hostname": "slovakia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "193.37.255.214" @@ -4450,7 +4169,6 @@ { "country": "Slovenia", "hostname": "slovenia-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.133" @@ -4460,7 +4178,6 @@ "country": "South Africa", "city": "South Africa", "hostname": "southafrica-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "154.16.95.4", @@ -4475,7 +4192,6 @@ "country": "South Korea", "city": "South Korea", "hostname": "southkorea2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.67.97.40", @@ -4492,7 +4208,6 @@ "country": "Spain", "city": "Barcelona", "hostname": "spain-barcelona-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.130.136.4", @@ -4511,7 +4226,6 @@ "country": "Spain", "city": "Madrid", "hostname": "spain-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "89.38.226.132", @@ -4524,7 +4238,6 @@ "country": "Sri Lanka", "city": "Sri Lanka", "hostname": "srilanka-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.203" @@ -4533,7 +4246,6 @@ { "country": "Sweden", "hostname": "sweden-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.135.187.121", @@ -4544,7 +4256,6 @@ { "country": "Switzerland", "hostname": "switzerland-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.45.8", @@ -4555,7 +4266,6 @@ { "country": "Switzerland", "hostname": "switzerland-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.132.226.145", @@ -4565,7 +4275,6 @@ { "country": "Taiwan", "hostname": "taiwan-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "194.5.52.84", @@ -4575,7 +4284,6 @@ { "country": "Thailand", "hostname": "thailand-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "84.17.38.84", @@ -4589,7 +4297,6 @@ "country": "UK", "city": "Docklands", "hostname": "uk-berkshire-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.36.2", @@ -4611,7 +4318,6 @@ "country": "UK", "city": "London", "hostname": "uk-east-london-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.80.158.244", @@ -4624,7 +4330,6 @@ "country": "UK", "city": "London", "hostname": "uk-london-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "5.157.128.96", @@ -4645,7 +4350,6 @@ "country": "USA", "city": "Atlanta", "hostname": "usa-atlanta-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.80.157.30", @@ -4658,7 +4362,6 @@ "country": "USA", "city": "Chicago", "hostname": "usa-chicago-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "154.6.21.204", @@ -4671,7 +4374,6 @@ "country": "USA", "city": "Dallas", "hostname": "usa-dallas-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "23.230.233.54", @@ -4684,7 +4386,6 @@ "country": "USA", "city": "Dallas", "hostname": "usa-dallas-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.132.115.4", @@ -4700,7 +4401,6 @@ "country": "USA", "city": "Denver", "hostname": "usa-denver-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "70.39.83.10", @@ -4712,7 +4412,6 @@ "country": "USA", "city": "Los Angeles", "hostname": "usa-losangeles-1-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "104.237.51.205", @@ -4725,7 +4424,6 @@ "country": "USA", "city": "Los Angeles", "hostname": "usa-losangeles-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "69.12.68.54", @@ -4737,7 +4435,6 @@ "country": "USA", "city": "Los Angeles", "hostname": "usa-losangeles-3-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "199.101.192.141", @@ -4750,7 +4447,6 @@ "country": "USA", "city": "Los Angeles", "hostname": "usa-losangeles-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.38.57.8", @@ -4769,7 +4465,6 @@ "country": "USA", "city": "Los Angeles", "hostname": "usa-losangeles5-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.84.215.83", @@ -4782,7 +4477,6 @@ "country": "USA", "city": "Miami", "hostname": "usa-miami-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "136.144.19.226", @@ -4795,7 +4489,6 @@ "country": "USA", "city": "New Jersey", "hostname": "usa-newjersey-1-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.38.140.51", @@ -4808,7 +4501,6 @@ "country": "USA", "city": "New Jersey", "hostname": "usa-newjersey-3-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "136.144.35.4", @@ -4825,7 +4517,6 @@ "country": "USA", "city": "New Jersey", "hostname": "usa-newjersey2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "191.101.174.166", @@ -4838,7 +4529,6 @@ "country": "USA", "city": "New York", "hostname": "us-new-york-2-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "191.101.41.2", @@ -4851,7 +4541,6 @@ "country": "USA", "city": "New York", "hostname": "usa-newyork-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "173.239.207.14", @@ -4868,7 +4557,6 @@ "country": "USA", "city": "Salt Lake City", "hostname": "usa-saltlakecity-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "191.96.206.4", @@ -4882,7 +4570,6 @@ "country": "USA", "city": "San Francisco", "hostname": "usa-sanfrancisco-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.38.178.18", @@ -4895,7 +4582,6 @@ "country": "USA", "city": "Seattle", "hostname": "usa-seattle-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "104.140.17.147", @@ -4908,7 +4594,6 @@ "country": "USA", "city": "Tampa", "hostname": "usa-tampa-1-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "191.96.170.33", @@ -4927,7 +4612,6 @@ "country": "USA", "city": "Washington DC", "hostname": "usa-washingtondc-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "45.132.227.106", @@ -4945,7 +4629,6 @@ { "country": "Ukraine", "hostname": "ukraine-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "95.214.235.51" @@ -4954,7 +4637,6 @@ { "country": "Uruguay", "hostname": "uruguay-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.141" @@ -4963,7 +4645,6 @@ { "country": "Uzbekistan", "hostname": "uzbekistan-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.22.80" @@ -4972,7 +4653,6 @@ { "country": "Venezuela", "hostname": "venezuela-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "2.57.171.241" @@ -4981,7 +4661,6 @@ { "country": "Vietnam", "hostname": "vietnam-ca-version-2.expressnetw.com", - "tcp": false, "udp": true, "ips": [ "85.203.21.41" @@ -5041,7 +4720,6 @@ { "hostname": "br-jp-ovtcp-01.jumptoserver.com", "tcp": true, - "udp": false, "country": "Brazil", "ips": [ "45.179.88.31" @@ -5049,7 +4727,6 @@ }, { "hostname": "br-jp-ovudp-01.jumptoserver.com", - "tcp": false, "udp": true, "country": "Brazil", "ips": [ @@ -5113,7 +4790,6 @@ { "hostname": "fr-rb-ovtcp-01.jumptoserver.com", "tcp": true, - "udp": false, "country": "France", "ips": [ "37.59.172.213" @@ -5121,7 +4797,6 @@ }, { "hostname": "fr-rb-ovudp-01.jumptoserver.com", - "tcp": false, "udp": true, "country": "France", "ips": [ @@ -5577,7 +5252,6 @@ "servers": [ { "country": "Afghanistan", - "region": "", "city": "Kabul", "hostname": "af.hma.rocks", "tcp": true, @@ -5589,7 +5263,6 @@ }, { "country": "Aland Islands", - "region": "", "city": "Mariehamn", "hostname": "ax.hma.rocks", "tcp": true, @@ -5601,7 +5274,6 @@ }, { "country": "Albania", - "region": "", "city": "Tirana", "hostname": "al.hma.rocks", "tcp": true, @@ -5613,7 +5285,6 @@ }, { "country": "Algeria", - "region": "", "city": "Annaba", "hostname": "dz.hma.rocks", "tcp": true, @@ -5625,7 +5296,6 @@ }, { "country": "American Samoa", - "region": "", "city": "Pago Pago", "hostname": "as.hma.rocks", "tcp": true, @@ -5637,7 +5307,6 @@ }, { "country": "Andorra", - "region": "", "city": "Andorrala Vella", "hostname": "ad.hma.rocks", "tcp": true, @@ -5649,7 +5318,6 @@ }, { "country": "Angola", - "region": "", "city": "Luanda", "hostname": "ao.hma.rocks", "tcp": true, @@ -5661,7 +5329,6 @@ }, { "country": "Anguilla", - "region": "", "city": "The Valley", "hostname": "ai.hma.rocks", "tcp": true, @@ -5673,7 +5340,6 @@ }, { "country": "Antiguaand Barbuda", - "region": "", "city": "Saint John's", "hostname": "ag.hma.rocks", "tcp": true, @@ -5685,7 +5351,6 @@ }, { "country": "Argentina", - "region": "", "city": "Buenos Aires", "hostname": "ar.hma.rocks", "tcp": true, @@ -5697,7 +5362,6 @@ }, { "country": "Armenia", - "region": "", "city": "Tsaghkadzor", "hostname": "am.hma.rocks", "tcp": true, @@ -5709,7 +5373,6 @@ }, { "country": "Aruba", - "region": "", "city": "Palm Beach", "hostname": "aw.hma.rocks", "tcp": true, @@ -5753,7 +5416,6 @@ }, { "country": "Azerbaijan", - "region": "", "city": "Qusar", "hostname": "az.hma.rocks", "tcp": true, @@ -5765,7 +5427,6 @@ }, { "country": "Bahamas", - "region": "", "city": "Freeport", "hostname": "bs.hma.rocks", "tcp": true, @@ -5777,7 +5438,6 @@ }, { "country": "Bahrain", - "region": "", "city": "Manama", "hostname": "bh.hma.rocks", "tcp": true, @@ -5789,7 +5449,6 @@ }, { "country": "Bangladesh", - "region": "", "city": "Dhaka", "hostname": "bd.hma.rocks", "tcp": true, @@ -5801,7 +5460,6 @@ }, { "country": "Barbados", - "region": "", "city": "Worthing", "hostname": "bb.hma.rocks", "tcp": true, @@ -5813,7 +5471,6 @@ }, { "country": "Belarus", - "region": "", "city": "Minsk", "hostname": "by.hma.rocks", "tcp": true, @@ -5825,7 +5482,6 @@ }, { "country": "Belgium", - "region": "", "city": "Brussels", "hostname": "be.hma.rocks", "tcp": true, @@ -5839,7 +5495,6 @@ }, { "country": "Belize", - "region": "", "city": "Belize City", "hostname": "bz.hma.rocks", "tcp": true, @@ -5851,7 +5506,6 @@ }, { "country": "Benin", - "region": "", "city": "Cotonou", "hostname": "bj.hma.rocks", "tcp": true, @@ -5863,7 +5517,6 @@ }, { "country": "Bermuda", - "region": "", "city": "Hamilton", "hostname": "bm.hma.rocks", "tcp": true, @@ -5875,7 +5528,6 @@ }, { "country": "Bhutan", - "region": "", "city": "Thimphu", "hostname": "bt.hma.rocks", "tcp": true, @@ -5887,7 +5539,6 @@ }, { "country": "Bolivia", - "region": "", "city": "Santa Cruz", "hostname": "bo.hma.rocks", "tcp": true, @@ -5899,7 +5550,6 @@ }, { "country": "Bosnia", - "region": "", "city": "Sarajevo", "hostname": "ba.hma.rocks", "tcp": true, @@ -5911,7 +5561,6 @@ }, { "country": "Botswana", - "region": "", "city": "Gaborone", "hostname": "bw.hma.rocks", "tcp": true, @@ -5923,7 +5572,6 @@ }, { "country": "Brazil", - "region": "", "city": "Joao Pessoa", "hostname": "br.hma.rocks", "tcp": true, @@ -5937,7 +5585,6 @@ }, { "country": "British Virgin Islands", - "region": "", "city": "Tortola", "hostname": "vg.hma.rocks", "tcp": true, @@ -5949,7 +5596,6 @@ }, { "country": "Brunei", - "region": "", "city": "Jerudong", "hostname": "bn.hma.rocks", "tcp": true, @@ -5961,7 +5607,6 @@ }, { "country": "Bulgaria", - "region": "", "city": "Sofia", "hostname": "bg.hma.rocks", "tcp": true, @@ -5973,7 +5618,6 @@ }, { "country": "Burkina Faso", - "region": "", "city": "Ouagadougou", "hostname": "bf.hma.rocks", "tcp": true, @@ -5985,7 +5629,6 @@ }, { "country": "Burundi", - "region": "", "city": "Bujumbura", "hostname": "bi.hma.rocks", "tcp": true, @@ -5997,7 +5640,6 @@ }, { "country": "Cambodia", - "region": "", "city": "Phnom Penh", "hostname": "kh.hma.rocks", "tcp": true, @@ -6009,7 +5651,6 @@ }, { "country": "Cameroon", - "region": "", "city": "Yaounde", "hostname": "cm.hma.rocks", "tcp": true, @@ -6038,7 +5679,6 @@ }, { "country": "Cape Verde", - "region": "", "city": "Cidade Velha", "hostname": "cv.hma.rocks", "tcp": true, @@ -6050,7 +5690,6 @@ }, { "country": "Cayman Islands", - "region": "", "city": "Spot Bay", "hostname": "ky.hma.rocks", "tcp": true, @@ -6062,7 +5701,6 @@ }, { "country": "Central African Republic", - "region": "", "city": "Bangassou", "hostname": "cf.hma.rocks", "tcp": true, @@ -6074,7 +5712,6 @@ }, { "country": "Chad", - "region": "", "city": "N'Djamena", "hostname": "td.hma.rocks", "tcp": true, @@ -6086,7 +5723,6 @@ }, { "country": "Chile", - "region": "", "city": "Santiago", "hostname": "cl.hma.rocks", "tcp": true, @@ -6115,7 +5751,6 @@ }, { "country": "Christmas Island", - "region": "", "city": "Flying Fish Cove", "hostname": "cx.hma.rocks", "tcp": true, @@ -6127,7 +5762,6 @@ }, { "country": "Cocos Islands", - "region": "", "city": "West Island", "hostname": "cc.hma.rocks", "tcp": true, @@ -6139,7 +5773,6 @@ }, { "country": "Colombia", - "region": "", "city": "San Andres", "hostname": "co.hma.rocks", "tcp": true, @@ -6151,7 +5784,6 @@ }, { "country": "Comoros", - "region": "", "city": "Ouani", "hostname": "km.hma.rocks", "tcp": true, @@ -6163,7 +5795,6 @@ }, { "country": "Congo", - "region": "", "city": "Kinshasa", "hostname": "cd.hma.rocks", "tcp": true, @@ -6175,7 +5806,6 @@ }, { "country": "Cook Islands", - "region": "", "city": "Avarua", "hostname": "ck.hma.rocks", "tcp": true, @@ -6187,7 +5817,6 @@ }, { "country": "Costa Rica", - "region": "", "city": "San Jose", "hostname": "cr.hma.rocks", "tcp": true, @@ -6199,7 +5828,6 @@ }, { "country": "Coted`Ivoire", - "region": "", "city": "Yamoussoukro", "hostname": "ci.hma.rocks", "tcp": true, @@ -6211,7 +5839,6 @@ }, { "country": "Croatia", - "region": "", "city": "Zagreb", "hostname": "hr.hma.rocks", "tcp": true, @@ -6223,7 +5850,6 @@ }, { "country": "Cuba", - "region": "", "city": "Havana", "hostname": "cu.hma.rocks", "tcp": true, @@ -6235,7 +5861,6 @@ }, { "country": "Cyprus", - "region": "", "city": "Limassol", "hostname": "cy.hma.rocks", "tcp": true, @@ -6247,7 +5872,6 @@ }, { "country": "Czech Republic", - "region": "", "city": "Prague", "hostname": "cz.hma.rocks", "tcp": true, @@ -6261,7 +5885,6 @@ }, { "country": "Denmark", - "region": "", "city": "Copenhagen", "hostname": "dk.hma.rocks", "tcp": true, @@ -6281,7 +5904,6 @@ }, { "country": "Dominica", - "region": "", "city": "Marigot", "hostname": "dm.hma.rocks", "tcp": true, @@ -6293,7 +5915,6 @@ }, { "country": "Dominican Republic", - "region": "", "city": "Punta Cana", "hostname": "do.hma.rocks", "tcp": true, @@ -6305,7 +5926,6 @@ }, { "country": "Ecuador", - "region": "", "city": "Quito", "hostname": "ec.hma.rocks", "tcp": true, @@ -6317,7 +5937,6 @@ }, { "country": "Egypt", - "region": "", "city": "Cairo", "hostname": "eg.hma.rocks", "tcp": true, @@ -6329,7 +5948,6 @@ }, { "country": "El Salvador", - "region": "", "city": "San Miguel", "hostname": "sv.hma.rocks", "tcp": true, @@ -6341,7 +5959,6 @@ }, { "country": "Equatorial Guinea", - "region": "", "city": "Malabo", "hostname": "gq.hma.rocks", "tcp": true, @@ -6353,7 +5970,6 @@ }, { "country": "Eritrea", - "region": "", "city": "Asmara", "hostname": "er.hma.rocks", "tcp": true, @@ -6365,7 +5981,6 @@ }, { "country": "Estonia", - "region": "", "city": "Tallinn", "hostname": "ee.hma.rocks", "tcp": true, @@ -6377,7 +5992,6 @@ }, { "country": "Ethiopia", - "region": "", "city": "Gondar", "hostname": "et.hma.rocks", "tcp": true, @@ -6389,7 +6003,6 @@ }, { "country": "Falkland Islands", - "region": "", "city": "Stanley", "hostname": "fk.hma.rocks", "tcp": true, @@ -6401,7 +6014,6 @@ }, { "country": "Faroe Islands", - "region": "", "city": "Torshavn", "hostname": "fo.hma.rocks", "tcp": true, @@ -6413,7 +6025,6 @@ }, { "country": "Fiji", - "region": "", "city": "Nadi", "hostname": "fj.hma.rocks", "tcp": true, @@ -6425,7 +6036,6 @@ }, { "country": "Finland", - "region": "", "city": "Helsinki", "hostname": "fi.hma.rocks", "tcp": true, @@ -6441,7 +6051,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "hostname": "fr.hma.rocks", "tcp": true, @@ -6457,7 +6066,6 @@ }, { "country": "Gabon", - "region": "", "city": "Libreville", "hostname": "ga.hma.rocks", "tcp": true, @@ -6469,7 +6077,6 @@ }, { "country": "Gambia", - "region": "", "city": "Serekunda", "hostname": "gm.hma.rocks", "tcp": true, @@ -6481,7 +6088,6 @@ }, { "country": "Georgia", - "region": "", "city": "Tbilisi", "hostname": "ge.hma.rocks", "tcp": true, @@ -6508,7 +6114,6 @@ }, { "country": "Ghana", - "region": "", "city": "Accra", "hostname": "gh.hma.rocks", "tcp": true, @@ -6520,7 +6125,6 @@ }, { "country": "Gibraltar", - "region": "", "city": "Catalan", "hostname": "gi.hma.rocks", "tcp": true, @@ -6532,7 +6136,6 @@ }, { "country": "Greece", - "region": "", "city": "Patras", "hostname": "gr.hma.rocks", "tcp": true, @@ -6544,7 +6147,6 @@ }, { "country": "Greenland", - "region": "", "city": "Ilulissat", "hostname": "gl.hma.rocks", "tcp": true, @@ -6556,7 +6158,6 @@ }, { "country": "Grenada", - "region": "", "city": "Saint George", "hostname": "gd.hma.rocks", "tcp": true, @@ -6568,7 +6169,6 @@ }, { "country": "Guadeloupe", - "region": "", "city": "Le Gosier", "hostname": "gp.hma.rocks", "tcp": true, @@ -6580,7 +6180,6 @@ }, { "country": "Guam", - "region": "", "city": "Tamuning", "hostname": "gu.hma.rocks", "tcp": true, @@ -6592,7 +6191,6 @@ }, { "country": "Guatemala", - "region": "", "city": "Guatemala City", "hostname": "gt.hma.rocks", "tcp": true, @@ -6604,7 +6202,6 @@ }, { "country": "Guinea", - "region": "", "city": "Conakry", "hostname": "gn.hma.rocks", "tcp": true, @@ -6616,7 +6213,6 @@ }, { "country": "Guinea-Bissau", - "region": "", "city": "Bissau", "hostname": "gw.hma.rocks", "tcp": true, @@ -6628,7 +6224,6 @@ }, { "country": "Guyana", - "region": "", "city": "Barima-Waini", "hostname": "gy.hma.rocks", "tcp": true, @@ -6640,7 +6235,6 @@ }, { "country": "Haiti", - "region": "", "city": "Cap-Haitien", "hostname": "ht.hma.rocks", "tcp": true, @@ -6652,7 +6246,6 @@ }, { "country": "Honduras", - "region": "", "city": "Tegucigalpa", "hostname": "hn.hma.rocks", "tcp": true, @@ -6664,7 +6257,6 @@ }, { "country": "Hungary", - "region": "", "city": "Budapest", "hostname": "hu.hma.rocks", "tcp": true, @@ -6677,7 +6269,6 @@ }, { "country": "Iceland", - "region": "", "city": "Reykjavik", "hostname": "is.hma.rocks", "tcp": true, @@ -6707,7 +6298,6 @@ }, { "country": "Indonesia", - "region": "", "city": "Jakarta", "hostname": "id.hma.rocks", "tcp": true, @@ -6729,7 +6319,6 @@ }, { "country": "Iran", - "region": "", "city": "Isfahan", "hostname": "ir.hma.rocks", "tcp": true, @@ -6741,7 +6330,6 @@ }, { "country": "Iraq", - "region": "", "city": "Baghdad", "hostname": "iq.hma.rocks", "tcp": true, @@ -6753,7 +6341,6 @@ }, { "country": "Ireland", - "region": "", "city": "Dublin", "hostname": "ie.hma.rocks", "tcp": true, @@ -6769,7 +6356,6 @@ }, { "country": "Israel", - "region": "", "city": "Petah Tikva", "hostname": "il.hma.rocks", "tcp": true, @@ -6801,7 +6387,6 @@ }, { "country": "Jamaica", - "region": "", "city": "Montego Bay", "hostname": "jm.hma.rocks", "tcp": true, @@ -6813,7 +6398,6 @@ }, { "country": "Japan", - "region": "", "city": "Tokyo", "hostname": "jp.hma.rocks", "tcp": true, @@ -6827,7 +6411,6 @@ }, { "country": "Jordan", - "region": "", "city": "Amman", "hostname": "jo.hma.rocks", "tcp": true, @@ -6839,7 +6422,6 @@ }, { "country": "Kazakhstan", - "region": "", "city": "Shymkent", "hostname": "kz.hma.rocks", "tcp": true, @@ -6851,7 +6433,6 @@ }, { "country": "Kenya", - "region": "", "city": "Nairobi", "hostname": "ke.hma.rocks", "tcp": true, @@ -6863,7 +6444,6 @@ }, { "country": "Kiribati", - "region": "", "city": "Umwa Village", "hostname": "ki.hma.rocks", "tcp": true, @@ -6875,7 +6455,6 @@ }, { "country": "Kuwait", - "region": "", "city": "Kuwait City", "hostname": "kw.hma.rocks", "tcp": true, @@ -6887,7 +6466,6 @@ }, { "country": "Kyrgyzstan", - "region": "", "city": "Bishkek", "hostname": "kg.hma.rocks", "tcp": true, @@ -6899,7 +6477,6 @@ }, { "country": "Laos", - "region": "", "city": "Thakhek", "hostname": "la.hma.rocks", "tcp": true, @@ -6911,7 +6488,6 @@ }, { "country": "Latvia", - "region": "", "city": "Riga", "hostname": "lv.hma.rocks", "tcp": true, @@ -6923,7 +6499,6 @@ }, { "country": "Lebanon", - "region": "", "city": "Beirut", "hostname": "lb.hma.rocks", "tcp": true, @@ -6935,7 +6510,6 @@ }, { "country": "Lesotho", - "region": "", "city": "Peka", "hostname": "ls.hma.rocks", "tcp": true, @@ -6947,7 +6521,6 @@ }, { "country": "Liberia", - "region": "", "city": "Monrovia", "hostname": "lr.hma.rocks", "tcp": true, @@ -6959,7 +6532,6 @@ }, { "country": "Libya", - "region": "", "city": "Ghadames", "hostname": "ly.hma.rocks", "tcp": true, @@ -6971,7 +6543,6 @@ }, { "country": "Liechtenstein", - "region": "", "city": "Vaduz", "hostname": "li.hma.rocks", "tcp": true, @@ -6983,7 +6554,6 @@ }, { "country": "Lithuania", - "region": "", "city": "Siauliai", "hostname": "lt.hma.rocks", "tcp": true, @@ -6995,8 +6565,6 @@ }, { "country": "Luxembourg", - "region": "", - "city": "", "hostname": "lu.hma.rocks", "tcp": true, "udp": true, @@ -7009,7 +6577,6 @@ }, { "country": "Macau", - "region": "", "city": "Macau", "hostname": "mo.hma.rocks", "tcp": true, @@ -7021,7 +6588,6 @@ }, { "country": "Macedonia", - "region": "", "city": "Skopje", "hostname": "mk.hma.rocks", "tcp": true, @@ -7033,7 +6599,6 @@ }, { "country": "Madagascar", - "region": "", "city": "Antsiranana", "hostname": "mg.hma.rocks", "tcp": true, @@ -7045,7 +6610,6 @@ }, { "country": "Malawi", - "region": "", "city": "Lilongwe", "hostname": "mw.hma.rocks", "tcp": true, @@ -7057,7 +6621,6 @@ }, { "country": "Malaysia", - "region": "", "city": "Kuala Lumpur", "hostname": "my.hma.rocks", "tcp": true, @@ -7072,7 +6635,6 @@ }, { "country": "Maldives", - "region": "", "city": "Male", "hostname": "mv.hma.rocks", "tcp": true, @@ -7084,7 +6646,6 @@ }, { "country": "Mali", - "region": "", "city": "Bamako", "hostname": "ml.hma.rocks", "tcp": true, @@ -7096,7 +6657,6 @@ }, { "country": "Malta", - "region": "", "city": "Cospicua", "hostname": "mt.hma.rocks", "tcp": true, @@ -7108,7 +6668,6 @@ }, { "country": "Mauritius", - "region": "", "city": "Port Louis", "hostname": "mu.hma.rocks", "tcp": true, @@ -7135,7 +6694,6 @@ }, { "country": "Moldova", - "region": "", "city": "Chisinau", "hostname": "md.hma.rocks", "tcp": true, @@ -7147,7 +6705,6 @@ }, { "country": "Monaco", - "region": "", "city": "Monaco", "hostname": "mc.hma.rocks", "tcp": true, @@ -7159,7 +6716,6 @@ }, { "country": "Mongolia", - "region": "", "city": "Suhbaatar", "hostname": "mn.hma.rocks", "tcp": true, @@ -7171,7 +6727,6 @@ }, { "country": "Montenegro", - "region": "", "city": "Becici", "hostname": "me.hma.rocks", "tcp": true, @@ -7183,7 +6738,6 @@ }, { "country": "Montserrat", - "region": "", "city": "Plymouth", "hostname": "ms.hma.rocks", "tcp": true, @@ -7195,7 +6749,6 @@ }, { "country": "Morocco", - "region": "", "city": "Fes", "hostname": "ma.hma.rocks", "tcp": true, @@ -7207,7 +6760,6 @@ }, { "country": "Mozambique", - "region": "", "city": "Pemba", "hostname": "mz.hma.rocks", "tcp": true, @@ -7219,7 +6771,6 @@ }, { "country": "Myanmar", - "region": "", "city": "Yangon", "hostname": "mm.hma.rocks", "tcp": true, @@ -7231,7 +6782,6 @@ }, { "country": "Namibia", - "region": "", "city": "Windhoek", "hostname": "na.hma.rocks", "tcp": true, @@ -7243,7 +6793,6 @@ }, { "country": "Nauru", - "region": "", "city": "Anabar", "hostname": "nr.hma.rocks", "tcp": true, @@ -7255,7 +6804,6 @@ }, { "country": "Nepal", - "region": "", "city": "Janakpur", "hostname": "np.hma.rocks", "tcp": true, @@ -7267,7 +6815,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "hostname": "nl.hma.rocks", "tcp": true, @@ -7281,7 +6828,6 @@ }, { "country": "New Caledonia", - "region": "", "city": "Noumea", "hostname": "nc.hma.rocks", "tcp": true, @@ -7293,7 +6839,6 @@ }, { "country": "New Zealand", - "region": "", "city": "Auckland", "hostname": "nz.hma.rocks", "tcp": true, @@ -7307,7 +6852,6 @@ }, { "country": "Nicaragua", - "region": "", "city": "Managua", "hostname": "ni.hma.rocks", "tcp": true, @@ -7319,7 +6863,6 @@ }, { "country": "Niger", - "region": "", "city": "Niamey", "hostname": "ne.hma.rocks", "tcp": true, @@ -7331,7 +6874,6 @@ }, { "country": "Nigeria", - "region": "", "city": "Lagos", "hostname": "ng.hma.rocks", "tcp": true, @@ -7343,7 +6885,6 @@ }, { "country": "Niue", - "region": "", "city": "Alofi", "hostname": "nu.hma.rocks", "tcp": true, @@ -7355,7 +6896,6 @@ }, { "country": "Norfolk Island", - "region": "", "city": "Kingston", "hostname": "nf.hma.rocks", "tcp": true, @@ -7367,7 +6907,6 @@ }, { "country": "North Korea", - "region": "", "city": "Manpo", "hostname": "kp.hma.rocks", "tcp": true, @@ -7379,7 +6918,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "hostname": "no.hma.rocks", "tcp": true, @@ -7395,7 +6933,6 @@ }, { "country": "Oman", - "region": "", "city": "Salalah", "hostname": "om.hma.rocks", "tcp": true, @@ -7407,7 +6944,6 @@ }, { "country": "Pakistan", - "region": "", "city": "Karachi", "hostname": "pk.hma.rocks", "tcp": true, @@ -7419,7 +6955,6 @@ }, { "country": "Palau", - "region": "", "city": "Melekeok", "hostname": "pw.hma.rocks", "tcp": true, @@ -7431,7 +6966,6 @@ }, { "country": "Palestine", - "region": "", "city": "Bethlehem", "hostname": "ps.hma.rocks", "tcp": true, @@ -7443,7 +6977,6 @@ }, { "country": "Panama", - "region": "", "city": "Panama City", "hostname": "pa.hma.rocks", "tcp": true, @@ -7455,7 +6988,6 @@ }, { "country": "Papua New Guinea", - "region": "", "city": "Alotau", "hostname": "pg.hma.rocks", "tcp": true, @@ -7467,7 +6999,6 @@ }, { "country": "Paraguay", - "region": "", "city": "Boqueron", "hostname": "py.hma.rocks", "tcp": true, @@ -7479,7 +7010,6 @@ }, { "country": "Peru", - "region": "", "city": "Cusco", "hostname": "pe.hma.rocks", "tcp": true, @@ -7491,7 +7021,6 @@ }, { "country": "Philippines", - "region": "", "city": "Baguio", "hostname": "ph.hma.rocks", "tcp": true, @@ -7503,7 +7032,6 @@ }, { "country": "Pitcairn Islands", - "region": "", "city": "Adamstown", "hostname": "pn.hma.rocks", "tcp": true, @@ -7515,7 +7043,6 @@ }, { "country": "Poland", - "region": "", "city": "Warsaw", "hostname": "pl.hma.rocks", "tcp": true, @@ -7529,7 +7056,6 @@ }, { "country": "Portugal", - "region": "", "city": "Leiria", "hostname": "pt.hma.rocks", "tcp": true, @@ -7542,7 +7068,6 @@ }, { "country": "Puerto Rico", - "region": "", "city": "San Juan", "hostname": "pr.hma.rocks", "tcp": true, @@ -7554,7 +7079,6 @@ }, { "country": "Qatar", - "region": "", "city": "Doha", "hostname": "qa.hma.rocks", "tcp": true, @@ -7566,7 +7090,6 @@ }, { "country": "Republicof Djibouti", - "region": "", "city": "Djibouti", "hostname": "dj.hma.rocks", "tcp": true, @@ -7578,7 +7101,6 @@ }, { "country": "Republicof Singapore", - "region": "", "city": "Singapore", "hostname": "sg.hma.rocks", "tcp": true, @@ -7595,7 +7117,6 @@ }, { "country": "Republicofthe Congo", - "region": "", "city": "Brazzaville", "hostname": "cg.hma.rocks", "tcp": true, @@ -7607,7 +7128,6 @@ }, { "country": "Romania", - "region": "", "city": "Bucharest", "hostname": "ro.hma.rocks", "tcp": true, @@ -7619,7 +7139,6 @@ }, { "country": "Russia", - "region": "", "city": "Moscow", "hostname": "ru.hma.rocks", "tcp": true, @@ -7632,7 +7151,6 @@ }, { "country": "Rwanda", - "region": "", "city": "Kigali", "hostname": "rw.hma.rocks", "tcp": true, @@ -7644,7 +7162,6 @@ }, { "country": "Saint Helena", - "region": "", "city": "Tristan Da Cunha", "hostname": "sh.hma.rocks", "tcp": true, @@ -7656,7 +7173,6 @@ }, { "country": "Saint Kittsand Nevis", - "region": "", "city": "Basseterre", "hostname": "kn.hma.rocks", "tcp": true, @@ -7668,7 +7184,6 @@ }, { "country": "Saint Lucia", - "region": "", "city": "Gros Islet", "hostname": "lc.hma.rocks", "tcp": true, @@ -7680,7 +7195,6 @@ }, { "country": "Saint Pierreand Miquelon", - "region": "", "city": "Saint-Pierre", "hostname": "pm.hma.rocks", "tcp": true, @@ -7692,7 +7206,6 @@ }, { "country": "Saint Vincentandthe Grenadines", - "region": "", "city": "Kingstown", "hostname": "vc.hma.rocks", "tcp": true, @@ -7704,7 +7217,6 @@ }, { "country": "Samoa", - "region": "", "city": "Matatufu", "hostname": "ws.hma.rocks", "tcp": true, @@ -7716,7 +7228,6 @@ }, { "country": "San Marino", - "region": "", "city": "San Marino", "hostname": "sm.hma.rocks", "tcp": true, @@ -7728,7 +7239,6 @@ }, { "country": "Sao Tomeand Principe", - "region": "", "city": "Sao Tome", "hostname": "st.hma.rocks", "tcp": true, @@ -7740,7 +7250,6 @@ }, { "country": "Saudi Arabia", - "region": "", "city": "Riyadh", "hostname": "sa.hma.rocks", "tcp": true, @@ -7752,7 +7261,6 @@ }, { "country": "Senegal", - "region": "", "city": "Dakar", "hostname": "sn.hma.rocks", "tcp": true, @@ -7764,7 +7272,6 @@ }, { "country": "Serbia", - "region": "", "city": "Belgrade", "hostname": "rs.hma.rocks", "tcp": true, @@ -7776,7 +7283,6 @@ }, { "country": "Slovakia", - "region": "", "city": "Bratislava", "hostname": "sk.hma.rocks", "tcp": true, @@ -7788,7 +7294,6 @@ }, { "country": "Slovenia", - "region": "", "city": "Vrhnika", "hostname": "si.hma.rocks", "tcp": true, @@ -7800,7 +7305,6 @@ }, { "country": "Solomon Islands", - "region": "", "city": "Honiara", "hostname": "sb.hma.rocks", "tcp": true, @@ -7812,7 +7316,6 @@ }, { "country": "Somalia", - "region": "", "city": "Afgooye", "hostname": "so.hma.rocks", "tcp": true, @@ -7824,7 +7327,6 @@ }, { "country": "South Africa", - "region": "", "city": "Johannesburg", "hostname": "za.hma.rocks", "tcp": true, @@ -7837,7 +7339,6 @@ }, { "country": "South Korea", - "region": "", "city": "Seoul", "hostname": "kr.hma.rocks", "tcp": true, @@ -7850,7 +7351,6 @@ }, { "country": "Spain", - "region": "", "city": "Alicante", "hostname": "es.hma.rocks", "tcp": true, @@ -7863,7 +7363,6 @@ }, { "country": "Sri Lanka", - "region": "", "city": "Moratuwa", "hostname": "lk.hma.rocks", "tcp": true, @@ -7875,7 +7374,6 @@ }, { "country": "Sudan", - "region": "", "city": "Khartoum", "hostname": "sd.hma.rocks", "tcp": true, @@ -7887,7 +7385,6 @@ }, { "country": "Suriname", - "region": "", "city": "Paramaribo", "hostname": "sr.hma.rocks", "tcp": true, @@ -7899,7 +7396,6 @@ }, { "country": "Svalbardand Jan Mayen", - "region": "", "city": "Longyearbyen", "hostname": "sj.hma.rocks", "tcp": true, @@ -7911,7 +7407,6 @@ }, { "country": "Swaziland", - "region": "", "city": "Manzini", "hostname": "sz.hma.rocks", "tcp": true, @@ -7938,7 +7433,6 @@ }, { "country": "Switzerland", - "region": "", "city": "Zurich", "hostname": "ch.hma.rocks", "tcp": true, @@ -7954,7 +7448,6 @@ }, { "country": "Syria", - "region": "", "city": "Ad Darah", "hostname": "sy.hma.rocks", "tcp": true, @@ -7966,7 +7459,6 @@ }, { "country": "Taiwan", - "region": "", "city": "Taipei", "hostname": "tw.hma.rocks", "tcp": true, @@ -7987,7 +7479,6 @@ }, { "country": "Tajikistan", - "region": "", "city": "Dushanbe", "hostname": "tj.hma.rocks", "tcp": true, @@ -7999,7 +7490,6 @@ }, { "country": "Tanzania", - "region": "", "city": "Arusha", "hostname": "tz.hma.rocks", "tcp": true, @@ -8011,7 +7501,6 @@ }, { "country": "Thailand", - "region": "", "city": "Bangkok", "hostname": "th.hma.rocks", "tcp": true, @@ -8023,7 +7512,6 @@ }, { "country": "Togo", - "region": "", "city": "Lome", "hostname": "tg.hma.rocks", "tcp": true, @@ -8035,7 +7523,6 @@ }, { "country": "Tokelau", - "region": "", "city": "Atafu", "hostname": "tk.hma.rocks", "tcp": true, @@ -8047,7 +7534,6 @@ }, { "country": "Tonga", - "region": "", "city": "Nukualofa", "hostname": "to.hma.rocks", "tcp": true, @@ -8059,7 +7545,6 @@ }, { "country": "Trinidadand Tobago", - "region": "", "city": "San Fernando", "hostname": "tt.hma.rocks", "tcp": true, @@ -8071,7 +7556,6 @@ }, { "country": "Tunisia", - "region": "", "city": "Mahdia", "hostname": "tn.hma.rocks", "tcp": true, @@ -8083,7 +7567,6 @@ }, { "country": "Turkey", - "region": "", "city": "Istanbul", "hostname": "tr.hma.rocks", "tcp": true, @@ -8096,7 +7579,6 @@ }, { "country": "Turkmenistan", - "region": "", "city": "Ashgabat", "hostname": "tm.hma.rocks", "tcp": true, @@ -8108,7 +7590,6 @@ }, { "country": "Turksand Caicos Islands", - "region": "", "city": "Balfour Town", "hostname": "tc.hma.rocks", "tcp": true, @@ -8120,7 +7601,6 @@ }, { "country": "Tuvalu", - "region": "", "city": "Vaitupu", "hostname": "tv.hma.rocks", "tcp": true, @@ -8132,8 +7612,6 @@ }, { "country": "UK", - "region": "", - "city": "", "hostname": "gb.hma.rocks", "tcp": true, "udp": true, @@ -8151,7 +7629,6 @@ }, { "country": "UK", - "region": "", "city": "London", "hostname": "london.gb.hma.rocks", "tcp": true, @@ -8185,8 +7662,6 @@ }, { "country": "USA", - "region": "", - "city": "", "hostname": "us.hma.rocks", "tcp": true, "udp": true, @@ -8817,7 +8292,6 @@ }, { "country": "Uganda", - "region": "", "city": "Kampala", "hostname": "ug.hma.rocks", "tcp": true, @@ -8829,7 +8303,6 @@ }, { "country": "Ukraine", - "region": "", "city": "Odessa", "hostname": "ua.hma.rocks", "tcp": true, @@ -8841,7 +8314,6 @@ }, { "country": "United Arab Emirates", - "region": "", "city": "Dubai", "hostname": "ae.hma.rocks", "tcp": true, @@ -8853,7 +8325,6 @@ }, { "country": "Uruguay", - "region": "", "city": "Montevideo", "hostname": "uy.hma.rocks", "tcp": true, @@ -8865,7 +8336,6 @@ }, { "country": "Uzbekistan", - "region": "", "city": "Samarkand", "hostname": "uz.hma.rocks", "tcp": true, @@ -8877,7 +8347,6 @@ }, { "country": "Vanuatu", - "region": "", "city": "Loltong", "hostname": "vu.hma.rocks", "tcp": true, @@ -8889,7 +8358,6 @@ }, { "country": "Vatican", - "region": "", "city": "Vatican City", "hostname": "va.hma.rocks", "tcp": true, @@ -8901,7 +8369,6 @@ }, { "country": "Venezuela", - "region": "", "city": "Caracas", "hostname": "ve.hma.rocks", "tcp": true, @@ -8913,7 +8380,6 @@ }, { "country": "Vietnam", - "region": "", "city": "Ho Chi Minh City", "hostname": "vn.hma.rocks", "tcp": true, @@ -8925,7 +8391,6 @@ }, { "country": "Yemen", - "region": "", "city": "Sanaa", "hostname": "ye.hma.rocks", "tcp": true, @@ -8937,7 +8402,6 @@ }, { "country": "Zambia", - "region": "", "city": "Lusaka", "hostname": "zm.hma.rocks", "tcp": true, @@ -8949,7 +8413,6 @@ }, { "country": "Zimbabwe", - "region": "", "city": "Harare", "hostname": "zw.hma.rocks", "tcp": true, @@ -8969,7 +8432,6 @@ "country": "Albania", "city": "Tirana", "hostname": "tia-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.28.3" @@ -8979,7 +8441,6 @@ "country": "Albania", "city": "Tirana", "hostname": "tia-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.28.5" @@ -8989,7 +8450,6 @@ "country": "Albania", "city": "Tirana", "hostname": "tia-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.28.7" @@ -8999,7 +8459,6 @@ "country": "Albania", "city": "Tirana", "hostname": "tia-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.28.9" @@ -9009,7 +8468,6 @@ "country": "Argentina", "city": "Buenos Aires", "hostname": "eze-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "199.33.69.10" @@ -9019,7 +8477,6 @@ "country": "Argentina", "city": "Buenos Aires", "hostname": "eze-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "199.33.69.16" @@ -9029,7 +8486,6 @@ "country": "Argentina", "city": "Buenos Aires", "hostname": "eze-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "199.33.69.22" @@ -9039,7 +8495,6 @@ "country": "Australia", "city": "Adelaide", "hostname": "adl-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "116.90.73.3" @@ -9049,7 +8504,6 @@ "country": "Australia", "city": "Adelaide", "hostname": "adl-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "116.90.73.7" @@ -9059,7 +8513,6 @@ "country": "Australia", "city": "Adelaide", "hostname": "adl-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "116.90.73.11" @@ -9069,7 +8522,6 @@ "country": "Australia", "city": "Adelaide", "hostname": "adl-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "116.90.73.15" @@ -9079,7 +8531,6 @@ "country": "Australia", "city": "Brisbane", "hostname": "bne-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.137.12.68" @@ -9089,7 +8540,6 @@ "country": "Australia", "city": "Brisbane", "hostname": "bne-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.137.12.70" @@ -9099,7 +8549,6 @@ "country": "Australia", "city": "Brisbane", "hostname": "bne-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.137.12.72" @@ -9109,7 +8558,6 @@ "country": "Australia", "city": "Brisbane", "hostname": "bne-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.137.12.81" @@ -9119,7 +8567,6 @@ "country": "Australia", "city": "Brisbane", "hostname": "bne-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.137.12.83" @@ -9129,7 +8576,6 @@ "country": "Australia", "city": "Brisbane", "hostname": "bne-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.137.12.85" @@ -9139,7 +8585,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.141" @@ -9149,7 +8594,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.9" @@ -9159,7 +8603,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.15" @@ -9169,7 +8612,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.21" @@ -9179,7 +8621,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.27" @@ -9189,7 +8630,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.33" @@ -9199,7 +8639,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.39" @@ -9209,7 +8648,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.45" @@ -9219,7 +8657,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.51" @@ -9229,7 +8666,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.57" @@ -9239,7 +8675,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.63" @@ -9249,7 +8684,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.69" @@ -9259,7 +8693,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.75" @@ -9269,7 +8702,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.81" @@ -9279,7 +8711,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.87" @@ -9289,7 +8720,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.93" @@ -9299,7 +8729,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.99" @@ -9309,7 +8738,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.105" @@ -9319,7 +8747,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.111" @@ -9329,7 +8756,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.117" @@ -9339,7 +8765,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.123" @@ -9349,7 +8774,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.129" @@ -9359,7 +8783,6 @@ "country": "Australia", "city": "Melbourne", "hostname": "mel-b23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.209.254.135" @@ -9369,7 +8792,6 @@ "country": "Australia", "city": "Perth", "hostname": "per-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.107.197.36" @@ -9379,7 +8801,6 @@ "country": "Australia", "city": "Perth", "hostname": "per-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.107.197.38" @@ -9389,7 +8810,6 @@ "country": "Australia", "city": "Perth", "hostname": "per-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.107.197.40" @@ -9399,7 +8819,6 @@ "country": "Australia", "city": "Perth", "hostname": "per-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.107.197.48" @@ -9409,7 +8828,6 @@ "country": "Australia", "city": "Perth", "hostname": "per-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.107.197.51" @@ -9419,7 +8837,6 @@ "country": "Australia", "city": "Perth", "hostname": "per-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.107.197.53" @@ -9429,7 +8846,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.2" @@ -9439,7 +8855,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.6" @@ -9449,7 +8864,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.14" @@ -9459,7 +8873,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.20" @@ -9469,7 +8882,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.26" @@ -9479,7 +8891,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.32" @@ -9489,7 +8900,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.38" @@ -9499,7 +8909,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.44" @@ -9509,7 +8918,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.50" @@ -9519,7 +8927,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.56" @@ -9529,7 +8936,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.62" @@ -9539,7 +8945,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.68" @@ -9549,7 +8954,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.74" @@ -9559,7 +8963,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.80" @@ -9569,7 +8972,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.86" @@ -9579,7 +8981,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.92" @@ -9589,7 +8990,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.98" @@ -9599,7 +8999,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.104" @@ -9609,7 +9008,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.110" @@ -9619,7 +9017,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.116" @@ -9629,7 +9026,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.122" @@ -9639,7 +9035,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.128" @@ -9649,7 +9044,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.134" @@ -9659,7 +9053,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.140" @@ -9669,7 +9062,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.146" @@ -9679,7 +9071,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.152" @@ -9689,7 +9080,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.158" @@ -9699,7 +9089,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.164" @@ -9709,7 +9098,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.170" @@ -9719,7 +9107,6 @@ "country": "Australia", "city": "Sydney", "hostname": "syd-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.209.176" @@ -9729,7 +9116,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.2" @@ -9739,7 +9125,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.8" @@ -9749,7 +9134,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.14" @@ -9759,7 +9143,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.20" @@ -9769,7 +9152,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.26" @@ -9779,7 +9161,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.130" @@ -9789,7 +9170,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.136" @@ -9799,7 +9179,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.142" @@ -9809,7 +9188,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.148" @@ -9819,7 +9197,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.154" @@ -9829,7 +9206,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.160" @@ -9839,7 +9215,6 @@ "country": "Austria", "city": "Vienna", "hostname": "vie-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.110.166" @@ -9849,7 +9224,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.99" @@ -9859,7 +9233,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.101" @@ -9869,7 +9242,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.103" @@ -9879,7 +9251,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.72" @@ -9889,7 +9260,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.74" @@ -9899,7 +9269,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.76" @@ -9909,7 +9278,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "77.243.191.114" @@ -9919,7 +9287,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.71" @@ -9929,7 +9296,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.81" @@ -9939,7 +9305,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.85" @@ -9949,7 +9314,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.105" @@ -9959,7 +9323,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.109" @@ -9969,7 +9332,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.119" @@ -9979,7 +9341,6 @@ "country": "Belgium", "city": "Brussels", "hostname": "bru-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.218.123" @@ -9989,7 +9350,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.195" @@ -9999,7 +9359,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.199" @@ -10009,7 +9368,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.203" @@ -10019,7 +9377,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.207" @@ -10029,7 +9386,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.211" @@ -10039,7 +9395,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.215" @@ -10049,7 +9404,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.219" @@ -10059,7 +9413,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.223" @@ -10069,7 +9422,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.227" @@ -10079,7 +9431,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.231" @@ -10089,7 +9440,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.235" @@ -10099,7 +9449,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.239" @@ -10109,7 +9458,6 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "gru-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "138.199.58.243" @@ -10119,7 +9467,6 @@ "country": "Bulgaria", "city": "Sofia", "hostname": "sof-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "217.138.202.35" @@ -10129,7 +9476,6 @@ "country": "Bulgaria", "city": "Sofia", "hostname": "sof-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "217.138.202.37" @@ -10139,7 +9485,6 @@ "country": "Bulgaria", "city": "Sofia", "hostname": "sof-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "82.102.23.69" @@ -10149,7 +9494,6 @@ "country": "Bulgaria", "city": "Sofia", "hostname": "sof-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "82.102.23.71" @@ -10159,7 +9503,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.2" @@ -10169,7 +9512,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.4" @@ -10179,7 +9521,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.6" @@ -10189,7 +9530,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.62" @@ -10199,7 +9539,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.64" @@ -10209,7 +9548,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.66" @@ -10219,7 +9557,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.57.247.9" @@ -10229,7 +9566,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.57.247.27" @@ -10239,7 +9575,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.57.247.33" @@ -10249,7 +9584,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.57.247.39" @@ -10259,7 +9593,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.57.247.45" @@ -10269,7 +9602,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.57.247.51" @@ -10279,7 +9611,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.57.247.57" @@ -10289,7 +9620,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.226" @@ -10299,7 +9629,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.230" @@ -10309,7 +9638,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.234" @@ -10319,7 +9647,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "23.254.36.238" @@ -10329,7 +9656,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.4" @@ -10339,7 +9665,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.8" @@ -10349,7 +9674,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.12" @@ -10359,7 +9683,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.16" @@ -10369,7 +9692,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.20" @@ -10379,7 +9701,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.24" @@ -10389,7 +9710,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.28" @@ -10399,7 +9719,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.32" @@ -10409,7 +9728,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.36" @@ -10419,7 +9737,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.40" @@ -10429,7 +9746,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.44" @@ -10439,7 +9755,6 @@ "country": "Canada", "city": "Montreal", "hostname": "yul-c29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.127.24.48" @@ -10449,7 +9764,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.14" @@ -10459,7 +9773,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.145" @@ -10469,7 +9782,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.16" @@ -10479,7 +9791,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.6" @@ -10489,7 +9800,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.18" @@ -10499,7 +9809,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.8" @@ -10509,7 +9818,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.20" @@ -10519,7 +9827,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.10" @@ -10529,7 +9836,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.22" @@ -10539,7 +9845,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.12" @@ -10549,7 +9854,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.26" @@ -10559,7 +9863,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.28" @@ -10569,7 +9872,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.30" @@ -10579,7 +9881,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.32" @@ -10589,7 +9890,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.34" @@ -10599,7 +9899,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.36" @@ -10609,7 +9908,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.38" @@ -10619,7 +9917,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.40" @@ -10629,7 +9926,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.42" @@ -10639,7 +9935,6 @@ "country": "Canada", "city": "Toronto", "hostname": "tor-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.184.44" @@ -10649,7 +9944,6 @@ "country": "Canada", "city": "Vancouver", "hostname": "yvr-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "107.181.189.132" @@ -10659,7 +9953,6 @@ "country": "Canada", "city": "Vancouver", "hostname": "yvr-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "107.181.189.134" @@ -10669,7 +9962,6 @@ "country": "Canada", "city": "Vancouver", "hostname": "yvr-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "107.181.189.136" @@ -10679,7 +9971,6 @@ "country": "Canada", "city": "Vancouver", "hostname": "yvr-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "107.181.189.138" @@ -10689,7 +9980,6 @@ "country": "Canada", "city": "Vancouver", "hostname": "yvr-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "107.181.189.186" @@ -10699,7 +9989,6 @@ "country": "Canada", "city": "Vancouver", "hostname": "yvr-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "107.181.189.227" @@ -10709,7 +9998,6 @@ "country": "Chile", "city": "Santiago", "hostname": "scl-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.28.5" @@ -10719,7 +10007,6 @@ "country": "Chile", "city": "Santiago", "hostname": "scl-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.28.9" @@ -10729,7 +10016,6 @@ "country": "Chile", "city": "Santiago", "hostname": "scl-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.28.13" @@ -10739,7 +10025,6 @@ "country": "Chile", "city": "Santiago", "hostname": "scl-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.28.17" @@ -10749,7 +10034,6 @@ "country": "Chile", "city": "Santiago", "hostname": "scl-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.28.21" @@ -10759,7 +10043,6 @@ "country": "Colombia", "city": "Bogota", "hostname": "bog-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "199.33.68.11" @@ -10769,7 +10052,6 @@ "country": "Colombia", "city": "Bogota", "hostname": "bog-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "199.33.68.17" @@ -10779,7 +10061,6 @@ "country": "Colombia", "city": "Bogota", "hostname": "bog-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "199.33.68.23" @@ -10789,7 +10070,6 @@ "country": "Colombia", "city": "Bogota", "hostname": "bog-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "199.33.68.29" @@ -10799,7 +10079,6 @@ "country": "Colombia", "city": "Bogota", "hostname": "bog-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "199.33.68.35" @@ -10809,7 +10088,6 @@ "country": "Costa Rica", "city": "San Jose", "hostname": "sjo-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "143.202.163.68" @@ -10819,7 +10097,6 @@ "country": "Costa Rica", "city": "San Jose", "hostname": "sjo-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "143.202.163.70" @@ -10829,7 +10106,6 @@ "country": "Costa Rica", "city": "San Jose", "hostname": "sjo-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "143.202.163.72" @@ -10839,7 +10115,6 @@ "country": "Costa Rica", "city": "San Jose", "hostname": "sjo-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "143.202.163.74" @@ -10849,7 +10124,6 @@ "country": "Croatia", "city": "Zagreb", "hostname": "zag-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "85.10.57.221" @@ -10859,7 +10133,6 @@ "country": "Croatia", "city": "Zagreb", "hostname": "zag-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "85.10.57.227" @@ -10869,7 +10142,6 @@ "country": "Croatia", "city": "Zagreb", "hostname": "zag-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "85.10.57.233" @@ -10879,7 +10151,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.39" @@ -10889,7 +10160,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.45" @@ -10899,7 +10169,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.51" @@ -10909,7 +10178,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.57" @@ -10919,7 +10187,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.63" @@ -10929,7 +10196,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.130" @@ -10939,7 +10205,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.136" @@ -10949,7 +10214,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.142" @@ -10959,7 +10223,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.148" @@ -10969,7 +10232,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.154" @@ -10979,7 +10241,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.160" @@ -10989,7 +10250,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.3" @@ -10999,7 +10259,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.9" @@ -11009,7 +10268,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.15" @@ -11019,7 +10277,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.21" @@ -11029,7 +10286,6 @@ "country": "Czech Republic", "city": "Prague", "hostname": "prg-c25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.109.27" @@ -11039,7 +10295,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.8" @@ -11049,7 +10304,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.10" @@ -11059,7 +10313,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.12" @@ -11069,7 +10322,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.14" @@ -11079,7 +10331,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.16" @@ -11089,7 +10340,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.18" @@ -11099,7 +10349,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.36" @@ -11109,7 +10358,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.38" @@ -11119,7 +10367,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.40" @@ -11129,7 +10376,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.42" @@ -11139,7 +10385,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.44" @@ -11149,7 +10394,6 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "cph-c20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.245.84.46" @@ -11159,7 +10403,6 @@ "country": "Estonia", "city": "Tallinn", "hostname": "tll-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.174.159.4" @@ -11169,7 +10412,6 @@ "country": "Estonia", "city": "Tallinn", "hostname": "tll-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.174.159.6" @@ -11179,7 +10421,6 @@ "country": "Estonia", "city": "Tallinn", "hostname": "tll-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.174.159.8" @@ -11189,7 +10430,6 @@ "country": "Estonia", "city": "Tallinn", "hostname": "tll-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.174.159.10" @@ -11199,7 +10439,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.107.3" @@ -11209,7 +10448,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.107.5" @@ -11219,7 +10457,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.107.7" @@ -11229,7 +10466,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.107.9" @@ -11239,7 +10475,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.107.11" @@ -11249,7 +10484,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.117.118.165" @@ -11259,7 +10493,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.117.118.167" @@ -11269,7 +10502,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.117.118.169" @@ -11279,7 +10511,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.117.118.171" @@ -11289,7 +10520,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.117.118.173" @@ -11299,7 +10529,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.107.13" @@ -11309,7 +10538,6 @@ "country": "Finland", "city": "Helsinki", "hostname": "hel-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.107.15" @@ -11319,7 +10547,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.194" @@ -11329,7 +10556,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.196" @@ -11339,7 +10565,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.198" @@ -11349,7 +10574,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.200" @@ -11359,7 +10583,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.219" @@ -11369,7 +10592,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.221" @@ -11379,7 +10601,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.223" @@ -11389,7 +10610,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.225" @@ -11399,7 +10619,6 @@ "country": "France", "city": "Bordeaux", "hostname": "bod-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.106.227" @@ -11409,7 +10628,6 @@ "country": "France", "city": "Marseille", "hostname": "mrs-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.82.2" @@ -11419,7 +10637,6 @@ "country": "France", "city": "Marseille", "hostname": "mrs-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.82.8" @@ -11429,7 +10646,6 @@ "country": "France", "city": "Marseille", "hostname": "mrs-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.82.14" @@ -11439,7 +10655,6 @@ "country": "France", "city": "Marseille", "hostname": "mrs-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.82.20" @@ -11449,7 +10664,6 @@ "country": "France", "city": "Paris", "hostname": "par-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.17" @@ -11459,7 +10673,6 @@ "country": "France", "city": "Paris", "hostname": "par-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.21" @@ -11469,7 +10682,6 @@ "country": "France", "city": "Paris", "hostname": "par-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.25" @@ -11479,7 +10691,6 @@ "country": "France", "city": "Paris", "hostname": "par-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.29" @@ -11489,7 +10700,6 @@ "country": "France", "city": "Paris", "hostname": "par-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.33" @@ -11499,7 +10709,6 @@ "country": "France", "city": "Paris", "hostname": "par-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.37" @@ -11509,7 +10718,6 @@ "country": "France", "city": "Paris", "hostname": "par-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.41" @@ -11519,7 +10727,6 @@ "country": "France", "city": "Paris", "hostname": "par-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.45" @@ -11529,7 +10736,6 @@ "country": "France", "city": "Paris", "hostname": "par-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.49" @@ -11539,7 +10745,6 @@ "country": "France", "city": "Paris", "hostname": "par-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.53" @@ -11549,7 +10754,6 @@ "country": "France", "city": "Paris", "hostname": "par-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.57" @@ -11559,7 +10763,6 @@ "country": "France", "city": "Paris", "hostname": "par-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.61" @@ -11569,7 +10772,6 @@ "country": "France", "city": "Paris", "hostname": "par-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.65" @@ -11579,7 +10781,6 @@ "country": "France", "city": "Paris", "hostname": "par-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.69" @@ -11589,7 +10790,6 @@ "country": "France", "city": "Paris", "hostname": "par-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.117" @@ -11599,7 +10799,6 @@ "country": "France", "city": "Paris", "hostname": "par-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.113" @@ -11609,7 +10808,6 @@ "country": "France", "city": "Paris", "hostname": "par-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.109" @@ -11619,7 +10817,6 @@ "country": "France", "city": "Paris", "hostname": "par-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.105" @@ -11629,7 +10826,6 @@ "country": "France", "city": "Paris", "hostname": "par-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.101" @@ -11639,7 +10835,6 @@ "country": "France", "city": "Paris", "hostname": "par-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.97" @@ -11649,7 +10844,6 @@ "country": "France", "city": "Paris", "hostname": "par-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.93" @@ -11659,7 +10853,6 @@ "country": "France", "city": "Paris", "hostname": "par-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.89" @@ -11669,7 +10862,6 @@ "country": "France", "city": "Paris", "hostname": "par-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.85" @@ -11679,7 +10871,6 @@ "country": "France", "city": "Paris", "hostname": "par-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.81" @@ -11689,7 +10880,6 @@ "country": "France", "city": "Paris", "hostname": "par-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.77" @@ -11699,7 +10889,6 @@ "country": "France", "city": "Paris", "hostname": "par-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.212.73" @@ -11709,7 +10898,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.5" @@ -11719,7 +10907,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.11" @@ -11729,7 +10916,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.17" @@ -11739,7 +10925,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.23" @@ -11749,7 +10934,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.29" @@ -11759,7 +10943,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.35" @@ -11769,7 +10952,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.41" @@ -11779,7 +10961,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.47" @@ -11789,7 +10970,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.53" @@ -11799,7 +10979,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.59" @@ -11809,7 +10988,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.65" @@ -11819,7 +10997,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.71" @@ -11829,7 +11006,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.77" @@ -11839,7 +11015,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.83" @@ -11849,7 +11024,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.89" @@ -11859,7 +11033,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.95" @@ -11869,7 +11042,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.101" @@ -11879,7 +11051,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.107" @@ -11889,7 +11060,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.113" @@ -11899,7 +11069,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.119" @@ -11909,7 +11078,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.125" @@ -11919,7 +11087,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.131" @@ -11929,7 +11096,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.137" @@ -11939,7 +11105,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.143" @@ -11949,7 +11114,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.149" @@ -11959,7 +11123,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.155" @@ -11969,7 +11132,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.161" @@ -11979,7 +11141,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.167" @@ -11989,7 +11150,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.173" @@ -11999,7 +11159,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.179" @@ -12009,7 +11168,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.185" @@ -12019,7 +11177,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.191" @@ -12029,7 +11186,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.197" @@ -12039,7 +11195,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.203" @@ -12049,7 +11204,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.209" @@ -12059,7 +11213,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.215" @@ -12069,7 +11222,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.221" @@ -12079,7 +11231,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.227" @@ -12089,7 +11240,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.233" @@ -12099,7 +11249,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.114.239" @@ -12109,7 +11258,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.2" @@ -12119,7 +11267,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.8" @@ -12129,7 +11276,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.14" @@ -12139,7 +11285,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.20" @@ -12149,7 +11294,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.26" @@ -12159,7 +11303,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.32" @@ -12169,7 +11312,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.38" @@ -12179,7 +11321,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.44" @@ -12189,7 +11330,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.130" @@ -12199,7 +11339,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.136" @@ -12209,7 +11348,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.142" @@ -12219,7 +11357,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.148" @@ -12229,7 +11366,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.154" @@ -12239,7 +11375,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.160" @@ -12249,7 +11384,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.166" @@ -12259,7 +11393,6 @@ "country": "Germany", "city": "Frankfurt", "hostname": "fra-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.111.172" @@ -12269,7 +11402,6 @@ "country": "Greece", "city": "Athens", "hostname": "ath-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "194.150.167.98" @@ -12279,7 +11411,6 @@ "country": "Greece", "city": "Athens", "hostname": "ath-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "194.150.167.100" @@ -12289,7 +11420,6 @@ "country": "Greece", "city": "Athens", "hostname": "ath-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "194.150.167.102" @@ -12299,7 +11429,6 @@ "country": "Hungary", "city": "Budapest", "hostname": "bud-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.144.227" @@ -12309,7 +11438,6 @@ "country": "Hungary", "city": "Budapest", "hostname": "bud-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "37.120.144.229" @@ -12319,7 +11447,6 @@ "country": "Hungary", "city": "Budapest", "hostname": "bud-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.189.114.163" @@ -12329,7 +11456,6 @@ "country": "Hungary", "city": "Budapest", "hostname": "bud-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.189.114.165" @@ -12339,7 +11465,6 @@ "country": "Iceland", "city": "Reykjavik", "hostname": "rkv-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.133.192.163" @@ -12349,7 +11474,6 @@ "country": "Iceland", "city": "Reykjavik", "hostname": "rkv-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.133.192.169" @@ -12359,7 +11483,6 @@ "country": "India", "city": "Mumbai", "hostname": "bom-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.156.50.194" @@ -12369,7 +11492,6 @@ "country": "India", "city": "Mumbai", "hostname": "bom-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.156.50.198" @@ -12379,7 +11501,6 @@ "country": "India", "city": "Mumbai", "hostname": "bom-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.156.50.202" @@ -12389,7 +11510,6 @@ "country": "India", "city": "Mumbai", "hostname": "bom-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.156.50.206" @@ -12399,7 +11519,6 @@ "country": "India", "city": "Mumbai", "hostname": "bom-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.156.50.210" @@ -12409,7 +11528,6 @@ "country": "India", "city": "Mumbai", "hostname": "bom-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.156.50.214" @@ -12419,7 +11537,6 @@ "country": "India", "city": "New Delhi", "hostname": "del-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.13.242.195" @@ -12429,7 +11546,6 @@ "country": "India", "city": "New Delhi", "hostname": "del-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.13.242.197" @@ -12439,7 +11555,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.133" @@ -12449,7 +11564,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.139" @@ -12459,7 +11573,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.145" @@ -12469,7 +11582,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.151" @@ -12479,7 +11591,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.157" @@ -12489,7 +11600,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.165" @@ -12499,7 +11609,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.170" @@ -12509,7 +11618,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.176" @@ -12519,7 +11627,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.182" @@ -12529,7 +11636,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.188" @@ -12539,7 +11645,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.163" @@ -12549,7 +11654,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.199" @@ -12559,7 +11663,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.205" @@ -12569,7 +11672,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "dub-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "91.197.235.211" @@ -12579,7 +11681,6 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "tlv-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "87.239.255.3" @@ -12589,7 +11690,6 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "tlv-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "87.239.255.9" @@ -12599,7 +11699,6 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "tlv-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "87.239.255.11" @@ -12609,7 +11708,6 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "tlv-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "87.239.255.13" @@ -12619,7 +11717,6 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "tlv-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "87.239.255.15" @@ -12629,7 +11726,6 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "tlv-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "87.239.255.73" @@ -12639,7 +11735,6 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "tlv-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "87.239.255.75" @@ -12649,7 +11744,6 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "tlv-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "87.239.255.77" @@ -12659,7 +11753,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.4" @@ -12669,7 +11762,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.10" @@ -12679,7 +11771,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.16" @@ -12689,7 +11780,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.22" @@ -12699,7 +11789,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.28" @@ -12709,7 +11798,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.34" @@ -12719,7 +11807,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.40" @@ -12729,7 +11816,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.46" @@ -12739,7 +11825,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.52" @@ -12749,7 +11834,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.58" @@ -12759,7 +11843,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.64" @@ -12769,7 +11852,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.70" @@ -12779,7 +11861,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.76" @@ -12789,7 +11870,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.82" @@ -12799,7 +11879,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.88" @@ -12809,7 +11888,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.94" @@ -12819,7 +11897,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.100" @@ -12829,7 +11906,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.106" @@ -12839,7 +11915,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.112" @@ -12849,7 +11924,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.118" @@ -12859,7 +11933,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.124" @@ -12869,7 +11942,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.130" @@ -12879,7 +11951,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.136" @@ -12889,7 +11960,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.142" @@ -12899,7 +11969,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.148" @@ -12909,7 +11978,6 @@ "country": "Italy", "city": "Milan", "hostname": "lin-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "69.16.157.154" @@ -12919,7 +11987,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.3" @@ -12929,7 +11996,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.7" @@ -12939,7 +12005,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.11" @@ -12949,7 +12014,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.15" @@ -12959,7 +12023,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.13" @@ -12969,7 +12032,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.17" @@ -12979,7 +12041,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.45" @@ -12989,7 +12050,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.51" @@ -12999,7 +12059,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.57" @@ -13009,7 +12068,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.63" @@ -13019,7 +12077,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.69" @@ -13029,7 +12086,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.75" @@ -13039,7 +12095,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.81" @@ -13049,7 +12104,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.87" @@ -13059,7 +12113,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.93" @@ -13069,7 +12122,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.99" @@ -13079,7 +12131,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.105" @@ -13089,7 +12140,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.111" @@ -13099,7 +12149,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.117" @@ -13109,7 +12158,6 @@ "country": "Japan", "city": "Tokyo", "hostname": "nrt-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.217.123" @@ -13119,7 +12167,6 @@ "country": "Korea", "city": "Seoul", "hostname": "sel-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.219.2" @@ -13129,7 +12176,6 @@ "country": "Korea", "city": "Seoul", "hostname": "sel-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.219.3" @@ -13139,7 +12185,6 @@ "country": "Korea", "city": "Seoul", "hostname": "sel-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.219.6" @@ -13149,7 +12194,6 @@ "country": "Korea", "city": "Seoul", "hostname": "sel-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.219.8" @@ -13159,7 +12203,6 @@ "country": "Latvia", "city": "Riga", "hostname": "rix-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.31.17" @@ -13169,7 +12212,6 @@ "country": "Latvia", "city": "Riga", "hostname": "rix-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.31.19" @@ -13179,7 +12221,6 @@ "country": "Latvia", "city": "Riga", "hostname": "rix-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.31.21" @@ -13189,7 +12230,6 @@ "country": "Latvia", "city": "Riga", "hostname": "rix-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.31.23" @@ -13199,7 +12239,6 @@ "country": "Latvia", "city": "Riga", "hostname": "rix-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "80.246.31.25" @@ -13209,7 +12248,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.4" @@ -13219,7 +12257,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.10" @@ -13229,7 +12266,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.16" @@ -13239,7 +12275,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.22" @@ -13249,7 +12284,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.28" @@ -13259,7 +12293,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.34" @@ -13269,7 +12302,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.22" @@ -13279,7 +12311,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.28" @@ -13289,7 +12320,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.34" @@ -13299,7 +12329,6 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lux-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.68.40" @@ -13309,7 +12338,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "202.73.14.57" @@ -13319,7 +12347,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "202.73.14.53" @@ -13329,7 +12356,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.246.112.197" @@ -13339,7 +12365,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.246.112.203" @@ -13349,7 +12374,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.246.112.209" @@ -13359,7 +12383,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.246.112.215" @@ -13369,7 +12392,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.243.212.165" @@ -13379,7 +12401,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.243.212.171" @@ -13389,7 +12410,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.243.212.177" @@ -13399,7 +12419,6 @@ "country": "Malaysia", "city": "Kuala Lumpur", "hostname": "kul-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.243.212.183" @@ -13409,7 +12428,6 @@ "country": "Mexico", "city": "Guadalajara", "hostname": "gdl-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "143.255.58.35" @@ -13419,7 +12437,6 @@ "country": "Mexico", "city": "Guadalajara", "hostname": "gdl-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "143.255.58.37" @@ -13429,7 +12446,6 @@ "country": "Mexico", "city": "Guadalajara", "hostname": "gdl-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "143.255.58.51" @@ -13439,7 +12455,6 @@ "country": "Mexico", "city": "Guadalajara", "hostname": "gdl-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "143.255.58.53" @@ -13449,7 +12464,6 @@ "country": "Moldova", "city": "Chisinau", "hostname": "kiv-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.163.46.147" @@ -13459,7 +12473,6 @@ "country": "Moldova", "city": "Chisinau", "hostname": "kiv-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.163.46.153" @@ -13469,7 +12482,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.3" @@ -13479,7 +12491,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.9" @@ -13489,7 +12500,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.15" @@ -13499,7 +12509,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.21" @@ -13509,7 +12518,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.27" @@ -13519,7 +12527,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.33" @@ -13529,7 +12536,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.39" @@ -13539,7 +12545,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.45" @@ -13549,7 +12554,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.51" @@ -13559,7 +12563,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.57" @@ -13569,7 +12572,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.63" @@ -13579,7 +12581,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.69" @@ -13589,7 +12590,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.75" @@ -13599,7 +12599,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.81" @@ -13609,7 +12608,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.87" @@ -13619,7 +12617,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.91" @@ -13629,7 +12626,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.103" @@ -13639,7 +12635,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.109" @@ -13649,7 +12644,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.115" @@ -13659,7 +12653,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.121" @@ -13669,7 +12662,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.127" @@ -13679,7 +12671,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.133" @@ -13689,7 +12680,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.139" @@ -13699,7 +12689,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.145" @@ -13709,7 +12698,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.151" @@ -13719,7 +12707,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.157" @@ -13729,7 +12716,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.163" @@ -13739,7 +12725,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.170" @@ -13749,7 +12734,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.176" @@ -13759,7 +12743,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.182" @@ -13769,7 +12752,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.188" @@ -13779,7 +12761,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.194" @@ -13789,7 +12770,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.200" @@ -13799,7 +12779,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.206" @@ -13809,7 +12788,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.212" @@ -13819,7 +12797,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.218" @@ -13829,7 +12806,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.224" @@ -13839,7 +12815,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.230" @@ -13849,7 +12824,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.237" @@ -13859,7 +12833,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.243" @@ -13869,7 +12842,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.88.249" @@ -13879,7 +12851,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.1" @@ -13889,7 +12860,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.7" @@ -13899,7 +12869,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.13" @@ -13909,7 +12878,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.19" @@ -13919,7 +12887,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.25" @@ -13929,7 +12896,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.31" @@ -13939,7 +12905,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.37" @@ -13949,7 +12914,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.43" @@ -13959,7 +12923,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.89.49" @@ -13969,7 +12932,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.2" @@ -13979,7 +12941,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.8" @@ -13989,7 +12950,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.14" @@ -13999,7 +12959,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.20" @@ -14009,7 +12968,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.26" @@ -14019,7 +12977,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.32" @@ -14029,7 +12986,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.38" @@ -14039,7 +12995,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.44" @@ -14049,7 +13004,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.50" @@ -14059,7 +13013,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.130" @@ -14069,7 +13022,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.136" @@ -14079,7 +13031,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.142" @@ -14089,7 +13040,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.148" @@ -14099,7 +13049,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.154" @@ -14109,7 +13058,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.160" @@ -14119,7 +13067,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.166" @@ -14129,7 +13076,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.172" @@ -14139,7 +13085,6 @@ "country": "Netherlands", "city": "Amsterdam", "hostname": "ams-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.112.178" @@ -14149,7 +13094,6 @@ "country": "New Zealand", "city": "Auckland", "hostname": "akl-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "116.90.74.195" @@ -14159,7 +13103,6 @@ "country": "New Zealand", "city": "Auckland", "hostname": "akl-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "116.90.74.201" @@ -14169,7 +13112,6 @@ "country": "New Zealand", "city": "Auckland", "hostname": "akl-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "116.90.74.207" @@ -14179,7 +13121,6 @@ "country": "New Zealand", "city": "Auckland", "hostname": "akl-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "116.90.74.213" @@ -14189,7 +13130,6 @@ "country": "Nigeria", "city": "Lagos", "hostname": "los-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "102.165.25.27" @@ -14199,7 +13139,6 @@ "country": "Nigeria", "city": "Lagos", "hostname": "los-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "102.165.25.4" @@ -14209,7 +13148,6 @@ "country": "Nigeria", "city": "Lagos", "hostname": "los-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "102.165.25.6" @@ -14219,7 +13157,6 @@ "country": "Nigeria", "city": "Lagos", "hostname": "los-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "102.165.25.8" @@ -14229,7 +13166,6 @@ "country": "Nigeria", "city": "Lagos", "hostname": "los-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "102.165.25.10" @@ -14239,7 +13175,6 @@ "country": "Norway", "city": "Oslo", "hostname": "osl-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "84.247.50.224" @@ -14249,7 +13184,6 @@ "country": "Norway", "city": "Oslo", "hostname": "osl-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "84.247.50.226" @@ -14259,7 +13193,6 @@ "country": "Norway", "city": "Oslo", "hostname": "osl-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "84.247.50.228" @@ -14269,7 +13202,6 @@ "country": "Norway", "city": "Oslo", "hostname": "osl-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "84.247.50.230" @@ -14279,7 +13211,6 @@ "country": "Norway", "city": "Oslo", "hostname": "osl-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "84.247.50.232" @@ -14289,7 +13220,6 @@ "country": "Norway", "city": "Oslo", "hostname": "osl-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "84.247.50.234" @@ -14299,7 +13229,6 @@ "country": "Norway", "city": "Oslo", "hostname": "osl-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "84.247.50.236" @@ -14309,7 +13238,6 @@ "country": "Peru", "city": "Lima", "hostname": "lim-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.24.5" @@ -14319,7 +13247,6 @@ "country": "Peru", "city": "Lima", "hostname": "lim-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.24.9" @@ -14329,7 +13256,6 @@ "country": "Peru", "city": "Lima", "hostname": "lim-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.24.13" @@ -14339,7 +13265,6 @@ "country": "Peru", "city": "Lima", "hostname": "lim-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.24.17" @@ -14349,7 +13274,6 @@ "country": "Peru", "city": "Lima", "hostname": "lim-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "191.101.24.21" @@ -14359,7 +13283,6 @@ "country": "Poland", "city": "Warsaw", "hostname": "waw-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.86.4" @@ -14369,7 +13292,6 @@ "country": "Poland", "city": "Warsaw", "hostname": "waw-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.86.6" @@ -14379,7 +13301,6 @@ "country": "Poland", "city": "Warsaw", "hostname": "waw-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.86.8" @@ -14389,7 +13310,6 @@ "country": "Poland", "city": "Warsaw", "hostname": "waw-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.86.10" @@ -14399,7 +13319,6 @@ "country": "Poland", "city": "Warsaw", "hostname": "waw-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.86.116" @@ -14409,7 +13328,6 @@ "country": "Poland", "city": "Warsaw", "hostname": "waw-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.86.118" @@ -14419,7 +13337,6 @@ "country": "Poland", "city": "Warsaw", "hostname": "waw-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.86.120" @@ -14429,7 +13346,6 @@ "country": "Poland", "city": "Warsaw", "hostname": "waw-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.86.122" @@ -14439,7 +13355,6 @@ "country": "Portugal", "city": "Lisbon", "hostname": "lis-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "5.154.174.55" @@ -14449,7 +13364,6 @@ "country": "Portugal", "city": "Lisbon", "hostname": "lis-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "5.154.174.37" @@ -14459,7 +13373,6 @@ "country": "Portugal", "city": "Lisbon", "hostname": "lis-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "5.154.174.39" @@ -14469,7 +13382,6 @@ "country": "Portugal", "city": "Lisbon", "hostname": "lis-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "5.154.174.41" @@ -14479,7 +13391,6 @@ "country": "Portugal", "city": "Lisbon", "hostname": "lis-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "5.154.174.43" @@ -14489,7 +13400,6 @@ "country": "Romania", "city": "Bucharest", "hostname": "otp-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.84.3" @@ -14499,7 +13409,6 @@ "country": "Romania", "city": "Bucharest", "hostname": "otp-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.84.9" @@ -14509,7 +13418,6 @@ "country": "Romania", "city": "Bucharest", "hostname": "otp-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.84.15" @@ -14519,7 +13427,6 @@ "country": "Serbia", "city": "Belgrade", "hostname": "beg-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "131.153.41.210" @@ -14529,7 +13436,6 @@ "country": "Serbia", "city": "Belgrade", "hostname": "beg-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "131.153.41.212" @@ -14539,7 +13445,6 @@ "country": "Serbia", "city": "Belgrade", "hostname": "beg-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "131.153.41.214" @@ -14549,7 +13454,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.6" @@ -14559,7 +13463,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.12" @@ -14569,7 +13472,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.18" @@ -14579,7 +13481,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.24" @@ -14589,7 +13490,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.27" @@ -14599,7 +13499,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.33" @@ -14609,7 +13508,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.43" @@ -14619,7 +13517,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.49" @@ -14629,7 +13526,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.55" @@ -14639,7 +13535,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.61" @@ -14649,7 +13544,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.67" @@ -14659,7 +13553,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.73" @@ -14669,7 +13562,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.79" @@ -14679,7 +13571,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.85" @@ -14689,7 +13580,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.91" @@ -14699,7 +13589,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.34" @@ -14709,7 +13598,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.102" @@ -14719,7 +13607,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.108" @@ -14729,7 +13616,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.114" @@ -14739,7 +13625,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.120" @@ -14749,7 +13634,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.126" @@ -14759,7 +13643,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.132" @@ -14769,7 +13652,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.138" @@ -14779,7 +13661,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.144" @@ -14789,7 +13670,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.150" @@ -14799,7 +13679,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.156" @@ -14809,7 +13688,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.162" @@ -14819,7 +13697,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.168" @@ -14829,7 +13706,6 @@ "country": "Singapore", "city": "Singapore", "hostname": "sin-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.211.174" @@ -14839,7 +13715,6 @@ "country": "Slovakia", "city": "Bratislava", "hostname": "bts-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.87.8" @@ -14849,7 +13724,6 @@ "country": "Slovakia", "city": "Bratislava", "hostname": "bts-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.87.18" @@ -14859,7 +13733,6 @@ "country": "Slovakia", "city": "Bratislava", "hostname": "bts-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.87.28" @@ -14869,7 +13742,6 @@ "country": "Slovakia", "city": "Bratislava", "hostname": "bts-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.87.38" @@ -14879,7 +13751,6 @@ "country": "Slovakia", "city": "Bratislava", "hostname": "bts-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.87.48" @@ -14889,7 +13760,6 @@ "country": "Slovenia", "city": "Ljubljana", "hostname": "lju-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "195.158.249.70" @@ -14899,7 +13769,6 @@ "country": "Slovenia", "city": "Ljubljana", "hostname": "lju-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "195.158.249.72" @@ -14909,7 +13778,6 @@ "country": "Slovenia", "city": "Ljubljana", "hostname": "lju-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "195.158.249.74" @@ -14919,7 +13787,6 @@ "country": "Slovenia", "city": "Ljubljana", "hostname": "lju-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "195.158.249.76" @@ -14929,7 +13796,6 @@ "country": "Slovenia", "city": "Ljubljana", "hostname": "lju-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "195.158.249.78" @@ -14939,7 +13805,6 @@ "country": "South Africa", "city": "Johannesburg", "hostname": "jnb-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "154.16.93.66" @@ -14949,7 +13814,6 @@ "country": "South Africa", "city": "Johannesburg", "hostname": "jnb-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "154.16.93.68" @@ -14959,7 +13823,6 @@ "country": "South Africa", "city": "Johannesburg", "hostname": "jnb-c19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "154.16.93.70" @@ -14969,7 +13832,6 @@ "country": "South Africa", "city": "Johannesburg", "hostname": "jnb-c20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "154.16.93.72" @@ -14979,7 +13841,6 @@ "country": "South Africa", "city": "Johannesburg", "hostname": "jnb-c21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "154.16.93.74" @@ -14989,7 +13850,6 @@ "country": "South Africa", "city": "Johannesburg", "hostname": "jnb-c22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "154.16.93.76" @@ -14999,7 +13859,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.18" @@ -15009,7 +13868,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.24" @@ -15019,7 +13877,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.30" @@ -15029,7 +13886,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.36" @@ -15039,7 +13895,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.42" @@ -15049,7 +13904,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.48" @@ -15059,7 +13913,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.56" @@ -15069,7 +13922,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.62" @@ -15079,7 +13931,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.68" @@ -15089,7 +13940,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.74" @@ -15099,7 +13949,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.80" @@ -15109,7 +13958,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.86" @@ -15119,7 +13967,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.92" @@ -15129,7 +13976,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.98" @@ -15139,7 +13985,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.104" @@ -15149,7 +13994,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.110" @@ -15159,7 +14003,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.116" @@ -15169,7 +14012,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.122" @@ -15179,7 +14021,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.128" @@ -15189,7 +14030,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.134" @@ -15199,7 +14039,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.140" @@ -15209,7 +14048,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.146" @@ -15219,7 +14057,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.152" @@ -15229,7 +14066,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.158" @@ -15239,7 +14075,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.164" @@ -15249,7 +14084,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.170" @@ -15259,7 +14093,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.176" @@ -15269,7 +14102,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.182" @@ -15279,7 +14111,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.188" @@ -15289,7 +14120,6 @@ "country": "Spain", "city": "Madrid", "hostname": "mad-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.214.194" @@ -15299,7 +14129,6 @@ "country": "Spain", "city": "Valencia", "hostname": "vlc-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.153.150.3" @@ -15309,7 +14138,6 @@ "country": "Spain", "city": "Valencia", "hostname": "vlc-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.153.150.5" @@ -15319,7 +14147,6 @@ "country": "Spain", "city": "Valencia", "hostname": "vlc-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.153.150.7" @@ -15329,7 +14156,6 @@ "country": "Spain", "city": "Valencia", "hostname": "vlc-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.153.150.9" @@ -15339,7 +14165,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.18" @@ -15349,7 +14174,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.24" @@ -15359,7 +14183,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.30" @@ -15369,7 +14192,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.36" @@ -15379,7 +14201,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.42" @@ -15389,7 +14210,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.48" @@ -15399,7 +14219,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.54" @@ -15409,7 +14228,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.60" @@ -15419,7 +14237,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.66" @@ -15429,7 +14246,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.72" @@ -15439,7 +14255,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.78" @@ -15449,7 +14264,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.84" @@ -15459,7 +14273,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.90" @@ -15469,7 +14282,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.96" @@ -15479,7 +14291,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.102" @@ -15489,7 +14300,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.108" @@ -15499,7 +14309,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.114" @@ -15509,7 +14318,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.120" @@ -15519,7 +14327,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.126" @@ -15529,7 +14336,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.132" @@ -15539,7 +14345,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.138" @@ -15549,7 +14354,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.144" @@ -15559,7 +14363,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.150" @@ -15569,7 +14372,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.156" @@ -15579,7 +14381,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.162" @@ -15589,7 +14390,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.168" @@ -15599,7 +14399,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.174" @@ -15609,7 +14408,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.180" @@ -15619,7 +14417,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.186" @@ -15629,7 +14426,6 @@ "country": "Sweden", "city": "Stockholm", "hostname": "sto-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.147.213.192" @@ -15639,7 +14435,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.2" @@ -15649,7 +14444,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.8" @@ -15659,7 +14453,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.14" @@ -15669,7 +14462,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.20" @@ -15679,7 +14471,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.26" @@ -15689,7 +14480,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.32" @@ -15699,7 +14489,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.130" @@ -15709,7 +14498,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.136" @@ -15719,7 +14507,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.142" @@ -15729,7 +14516,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.148" @@ -15739,7 +14525,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.154" @@ -15749,7 +14534,6 @@ "country": "Switzerland", "city": "Zurich", "hostname": "zrh-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.108.160" @@ -15759,7 +14543,6 @@ "country": "Taiwan", "city": "Taipei", "hostname": "tpe-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.4.31.133" @@ -15769,7 +14552,6 @@ "country": "Taiwan", "city": "Taipei", "hostname": "tpe-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "103.4.31.135" @@ -15779,7 +14561,6 @@ "country": "United Arab Emirates", "city": "Dubai", "hostname": "dxb-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.9.250.115" @@ -15789,7 +14570,6 @@ "country": "United Arab Emirates", "city": "Dubai", "hostname": "dxb-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "45.9.250.117" @@ -15799,7 +14579,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "94.46.220.87" @@ -15809,7 +14588,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "94.46.220.89" @@ -15819,7 +14597,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "94.46.220.91" @@ -15829,7 +14606,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "94.46.220.93" @@ -15839,7 +14615,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.131" @@ -15849,7 +14624,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.133" @@ -15859,7 +14633,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.135" @@ -15869,7 +14642,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.137" @@ -15879,7 +14651,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.139" @@ -15889,7 +14660,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.141" @@ -15899,7 +14669,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.155" @@ -15909,7 +14678,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.160" @@ -15919,7 +14687,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.162" @@ -15929,7 +14696,6 @@ "country": "United Kingdom", "city": "Birmingham", "hostname": "bhx-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "78.110.173.164" @@ -15939,7 +14705,6 @@ "country": "United Kingdom", "city": "Glasgow", "hostname": "gla-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.105.164" @@ -15949,7 +14714,6 @@ "country": "United Kingdom", "city": "Glasgow", "hostname": "gla-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.105.170" @@ -15959,7 +14723,6 @@ "country": "United Kingdom", "city": "Glasgow", "hostname": "gla-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.105.176" @@ -15969,7 +14732,6 @@ "country": "United Kingdom", "city": "Glasgow", "hostname": "gla-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.105.196" @@ -15979,7 +14741,6 @@ "country": "United Kingdom", "city": "Glasgow", "hostname": "gla-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.105.202" @@ -15989,7 +14750,6 @@ "country": "United Kingdom", "city": "Glasgow", "hostname": "gla-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.108.105.208" @@ -15999,7 +14759,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.86" @@ -16009,7 +14768,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.92" @@ -16019,7 +14777,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.98" @@ -16029,7 +14786,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.104" @@ -16039,7 +14795,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.110" @@ -16049,7 +14804,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.116" @@ -16059,7 +14813,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.122" @@ -16069,7 +14822,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.128" @@ -16079,7 +14831,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.134" @@ -16089,7 +14840,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.140" @@ -16099,7 +14849,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.2" @@ -16109,7 +14858,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.8" @@ -16119,7 +14867,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.14" @@ -16129,7 +14876,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.20" @@ -16139,7 +14885,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.26" @@ -16149,7 +14894,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.32" @@ -16159,7 +14903,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.38" @@ -16169,7 +14912,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.44" @@ -16179,7 +14921,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.50" @@ -16189,7 +14930,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.56" @@ -16199,7 +14939,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.62" @@ -16209,7 +14948,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.68" @@ -16219,7 +14957,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.74" @@ -16229,7 +14966,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.80" @@ -16239,7 +14975,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.146" @@ -16249,7 +14984,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.152" @@ -16259,7 +14993,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.158" @@ -16269,7 +15002,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.164" @@ -16279,7 +15011,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.170" @@ -16289,7 +15020,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.176" @@ -16299,7 +15029,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.182" @@ -16309,7 +15038,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.188" @@ -16319,7 +15047,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.194" @@ -16329,7 +15056,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.200" @@ -16339,7 +15065,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.206" @@ -16349,7 +15074,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.212" @@ -16359,7 +15083,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.218" @@ -16369,7 +15092,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.224" @@ -16379,7 +15101,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.230" @@ -16389,7 +15110,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.236" @@ -16399,7 +15119,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.242" @@ -16409,7 +15128,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.248" @@ -16419,7 +15137,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.116.254" @@ -16429,7 +15146,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.6" @@ -16439,7 +15155,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.12" @@ -16449,7 +15164,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.18" @@ -16459,7 +15173,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.24" @@ -16469,7 +15182,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.30" @@ -16479,7 +15191,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.36" @@ -16489,7 +15200,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.42" @@ -16499,7 +15209,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.48" @@ -16509,7 +15218,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.54" @@ -16519,7 +15227,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.60" @@ -16529,7 +15236,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.66" @@ -16539,7 +15245,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.72" @@ -16549,7 +15254,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.78" @@ -16559,7 +15263,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a57.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.84" @@ -16569,7 +15272,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a58.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.90" @@ -16579,7 +15281,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a59.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.117.96" @@ -16589,7 +15290,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a60.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.10" @@ -16599,7 +15299,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a61.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.12" @@ -16609,7 +15308,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a62.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.14" @@ -16619,7 +15317,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a63.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.16" @@ -16629,7 +15326,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a64.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.18" @@ -16639,7 +15335,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a65.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.20" @@ -16649,7 +15344,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a66.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.22" @@ -16659,7 +15353,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a67.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.24" @@ -16669,7 +15362,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a68.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.26" @@ -16679,7 +15371,6 @@ "country": "United Kingdom", "city": "London", "hostname": "lon-a69.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "176.67.85.28" @@ -16689,7 +15380,6 @@ "country": "United Kingdom", "city": "Maidenhead", "hostname": "lhr-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "82.145.56.101" @@ -16699,7 +15389,6 @@ "country": "United Kingdom", "city": "Maidenhead", "hostname": "lhr-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "82.145.56.107" @@ -16709,7 +15398,6 @@ "country": "United Kingdom", "city": "Maidenhead", "hostname": "lhr-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "82.145.56.113" @@ -16719,7 +15407,6 @@ "country": "United Kingdom", "city": "Maidenhead", "hostname": "lhr-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "82.145.56.118" @@ -16729,7 +15416,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.242.7.133" @@ -16739,7 +15425,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.242.7.135" @@ -16749,7 +15434,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.242.7.137" @@ -16759,7 +15443,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "89.238.142.229" @@ -16769,7 +15452,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "89.238.142.231" @@ -16779,7 +15461,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.242.7.6" @@ -16789,7 +15470,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "185.242.7.10" @@ -16799,7 +15479,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "89.238.142.242" @@ -16809,7 +15488,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "89.238.142.244" @@ -16819,7 +15497,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.50" @@ -16829,7 +15506,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.44" @@ -16839,7 +15515,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.38" @@ -16849,7 +15524,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.32" @@ -16859,7 +15533,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.26" @@ -16869,7 +15542,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.20" @@ -16879,7 +15551,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.14" @@ -16889,7 +15560,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.8" @@ -16899,7 +15569,6 @@ "country": "United Kingdom", "city": "Manchester", "hostname": "man-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.121.2" @@ -16909,7 +15578,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.2" @@ -16919,7 +15587,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.8" @@ -16929,7 +15596,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.14" @@ -16939,7 +15605,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.20" @@ -16949,7 +15614,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.26" @@ -16959,7 +15623,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.32" @@ -16969,7 +15632,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.38" @@ -16979,7 +15641,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.44" @@ -16989,7 +15650,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.50" @@ -16999,7 +15659,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.56" @@ -17009,7 +15668,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.62" @@ -17019,7 +15677,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.68" @@ -17029,7 +15686,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.74" @@ -17039,7 +15695,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.80" @@ -17049,7 +15704,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.86" @@ -17059,7 +15713,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.92" @@ -17069,7 +15722,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.98" @@ -17079,7 +15731,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.104" @@ -17089,7 +15740,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.110" @@ -17099,7 +15749,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.116" @@ -17109,7 +15758,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.211" @@ -17119,7 +15767,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.127" @@ -17129,7 +15776,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.133" @@ -17139,7 +15785,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.139" @@ -17149,7 +15794,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.145" @@ -17159,7 +15803,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.151" @@ -17169,7 +15812,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.157" @@ -17179,7 +15821,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.163" @@ -17189,7 +15830,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.169" @@ -17199,7 +15839,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.175" @@ -17209,7 +15848,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.181" @@ -17219,7 +15857,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.187" @@ -17229,7 +15866,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.193" @@ -17239,7 +15875,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.199" @@ -17249,7 +15884,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.205" @@ -17259,7 +15893,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.212" @@ -17269,7 +15902,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.218" @@ -17279,7 +15911,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.224" @@ -17289,7 +15920,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.230" @@ -17299,7 +15929,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.236" @@ -17309,7 +15938,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.242" @@ -17319,7 +15947,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.203.248" @@ -17329,7 +15956,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.10" @@ -17339,7 +15965,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.16" @@ -17349,7 +15974,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.22" @@ -17359,7 +15983,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.28" @@ -17369,7 +15992,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.43" @@ -17379,7 +16001,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.49" @@ -17389,7 +16010,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.55" @@ -17399,7 +16019,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.61" @@ -17409,7 +16028,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.67" @@ -17419,7 +16037,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.73" @@ -17429,7 +16046,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.79" @@ -17439,7 +16055,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.85" @@ -17449,7 +16064,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.91" @@ -17459,7 +16073,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.97" @@ -17469,7 +16082,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a57.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.103" @@ -17479,7 +16091,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a58.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.109" @@ -17489,7 +16100,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a59.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.115" @@ -17499,7 +16109,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a60.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.121" @@ -17509,7 +16118,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a61.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.127" @@ -17519,7 +16127,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a62.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.134" @@ -17529,7 +16136,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a63.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.140" @@ -17539,7 +16145,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a64.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.6" @@ -17549,7 +16154,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a65.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.31" @@ -17559,7 +16163,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a66.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.35" @@ -17569,7 +16172,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a67.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.151" @@ -17579,7 +16181,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a68.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.157" @@ -17589,7 +16190,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a69.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.163" @@ -17599,7 +16199,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a70.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.169" @@ -17609,7 +16208,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a71.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.175" @@ -17619,7 +16217,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a72.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.181" @@ -17629,7 +16226,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a73.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.187" @@ -17639,7 +16235,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a74.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.193" @@ -17649,7 +16244,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a75.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.199" @@ -17659,7 +16253,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a76.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.205" @@ -17669,7 +16262,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a77.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.211" @@ -17679,7 +16271,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-a78.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.191.217" @@ -17689,7 +16280,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.1" @@ -17699,7 +16289,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.8" @@ -17709,7 +16298,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.14" @@ -17719,7 +16307,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.20" @@ -17729,7 +16316,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.26" @@ -17739,7 +16325,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.32" @@ -17749,7 +16334,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.38" @@ -17759,7 +16343,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.44" @@ -17769,7 +16352,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.50" @@ -17779,7 +16361,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.56" @@ -17789,7 +16370,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.62" @@ -17799,7 +16379,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.68" @@ -17809,7 +16388,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.74" @@ -17819,7 +16397,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.72.80" @@ -17829,7 +16406,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.3" @@ -17839,7 +16415,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.9" @@ -17849,7 +16424,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.15" @@ -17859,7 +16433,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.21" @@ -17869,7 +16442,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.27" @@ -17879,7 +16451,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.33" @@ -17889,7 +16460,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.39" @@ -17899,7 +16469,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.45" @@ -17909,7 +16478,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.51" @@ -17919,7 +16487,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.57" @@ -17929,7 +16496,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.63" @@ -17939,7 +16505,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.69" @@ -17949,7 +16514,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.75" @@ -17959,7 +16523,6 @@ "country": "United States", "city": "Ashburn", "hostname": "iad-b28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.73.81" @@ -17969,7 +16532,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.7" @@ -17979,7 +16541,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.21" @@ -17989,7 +16550,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.30" @@ -17999,7 +16559,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.36" @@ -18009,7 +16568,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.42" @@ -18019,7 +16577,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.48" @@ -18029,7 +16586,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.54" @@ -18039,7 +16595,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.60" @@ -18049,7 +16604,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.66" @@ -18059,7 +16613,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.72" @@ -18069,7 +16622,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.202" @@ -18079,7 +16631,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.208" @@ -18089,7 +16640,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.214" @@ -18099,7 +16649,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.220" @@ -18109,7 +16658,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.226" @@ -18119,7 +16667,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.232" @@ -18129,7 +16676,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.238" @@ -18139,7 +16685,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.244" @@ -18149,7 +16694,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.26" @@ -18159,7 +16703,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.32" @@ -18169,7 +16712,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.38" @@ -18179,7 +16721,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.44" @@ -18189,7 +16730,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.128" @@ -18199,7 +16739,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.134" @@ -18209,7 +16748,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.140" @@ -18219,7 +16757,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.146" @@ -18229,7 +16766,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.152" @@ -18239,7 +16775,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.158" @@ -18249,7 +16784,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.164" @@ -18259,7 +16793,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.170" @@ -18269,7 +16802,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.176" @@ -18279,7 +16811,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.182" @@ -18289,7 +16820,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.188" @@ -18299,7 +16829,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.194" @@ -18309,7 +16838,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.200" @@ -18319,7 +16847,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.206" @@ -18329,7 +16856,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.212" @@ -18339,7 +16865,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.218" @@ -18349,7 +16874,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.224" @@ -18359,7 +16883,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.230" @@ -18369,7 +16892,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.2" @@ -18379,7 +16901,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.8" @@ -18389,7 +16910,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.11" @@ -18399,7 +16919,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.13" @@ -18409,7 +16928,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.15" @@ -18419,7 +16937,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.67.17" @@ -18429,7 +16946,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.14" @@ -18439,7 +16955,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.20" @@ -18449,7 +16964,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.26" @@ -18459,7 +16973,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.32" @@ -18469,7 +16982,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.38" @@ -18479,7 +16991,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.44" @@ -18489,7 +17000,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.50" @@ -18499,7 +17009,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.56" @@ -18509,7 +17018,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.62" @@ -18519,7 +17027,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.68" @@ -18529,7 +17036,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a57.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.74" @@ -18539,7 +17045,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a58.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.80" @@ -18549,7 +17054,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a59.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.86" @@ -18559,7 +17063,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a60.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.92" @@ -18569,7 +17072,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a61.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.98" @@ -18579,7 +17081,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a62.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.104" @@ -18589,7 +17090,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a63.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.110" @@ -18599,7 +17099,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a64.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.116" @@ -18609,7 +17108,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a65.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.122" @@ -18619,7 +17117,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a66.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.128" @@ -18629,7 +17126,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a67.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.134" @@ -18639,7 +17135,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a68.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.140" @@ -18649,7 +17144,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a69.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.146" @@ -18659,7 +17153,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a70.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.209.152" @@ -18669,7 +17162,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a73.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.4" @@ -18679,7 +17171,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a74.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.10" @@ -18689,7 +17180,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a75.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.16" @@ -18699,7 +17189,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a76.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.50" @@ -18709,7 +17198,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a77.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.56" @@ -18719,7 +17207,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a78.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.62" @@ -18729,7 +17216,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a79.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.68" @@ -18739,7 +17225,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a80.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.74" @@ -18749,7 +17234,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a81.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.80" @@ -18759,7 +17243,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a82.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.86" @@ -18769,7 +17252,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a83.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.92" @@ -18779,7 +17261,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a84.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.98" @@ -18789,7 +17270,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a85.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.104" @@ -18799,7 +17279,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a86.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.110" @@ -18809,7 +17288,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a87.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.116" @@ -18819,7 +17297,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-a88.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.196.122" @@ -18829,7 +17306,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.4" @@ -18839,7 +17315,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.10" @@ -18849,7 +17324,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.16" @@ -18859,7 +17333,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.22" @@ -18869,7 +17342,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.28" @@ -18879,7 +17351,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.34" @@ -18889,7 +17360,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.40" @@ -18899,7 +17369,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.46" @@ -18909,7 +17378,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.52" @@ -18919,7 +17387,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.58" @@ -18929,7 +17396,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.64" @@ -18939,7 +17405,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.70" @@ -18949,7 +17414,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.76" @@ -18959,7 +17423,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.82" @@ -18969,7 +17432,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.88" @@ -18979,7 +17441,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.94" @@ -18989,7 +17450,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.100" @@ -18999,7 +17459,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.106" @@ -19009,7 +17468,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.112" @@ -19019,7 +17477,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.118" @@ -19029,7 +17486,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.124" @@ -19039,7 +17495,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.130" @@ -19049,7 +17504,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.136" @@ -19059,7 +17513,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.142" @@ -19069,7 +17522,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.148" @@ -19079,7 +17531,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.154" @@ -19089,7 +17540,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.160" @@ -19099,7 +17549,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.74.166" @@ -19109,7 +17558,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.3" @@ -19119,7 +17567,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.9" @@ -19129,7 +17576,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.15" @@ -19139,7 +17585,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.21" @@ -19149,7 +17594,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.27" @@ -19159,7 +17603,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.33" @@ -19169,7 +17612,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.39" @@ -19179,7 +17621,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.45" @@ -19189,7 +17630,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.51" @@ -19199,7 +17639,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.57" @@ -19209,7 +17648,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.63" @@ -19219,7 +17657,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.69" @@ -19229,7 +17666,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.75" @@ -19239,7 +17675,6 @@ "country": "United States", "city": "Atlanta", "hostname": "atl-b43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.75.81" @@ -19249,7 +17684,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.131" @@ -19259,7 +17693,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.133" @@ -19269,7 +17702,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.137" @@ -19279,7 +17711,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.139" @@ -19289,7 +17720,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.141" @@ -19299,7 +17729,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.143" @@ -19309,7 +17738,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.3" @@ -19319,7 +17747,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.5" @@ -19329,7 +17756,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.7" @@ -19339,7 +17765,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.9" @@ -19349,7 +17774,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.11" @@ -19359,7 +17783,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.13" @@ -19369,7 +17792,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.195" @@ -19379,7 +17801,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.197" @@ -19389,7 +17810,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.199" @@ -19399,7 +17819,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.201" @@ -19409,7 +17828,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.203" @@ -19419,7 +17837,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.205" @@ -19429,7 +17846,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.67" @@ -19439,7 +17855,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.69" @@ -19449,7 +17864,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.71" @@ -19459,7 +17873,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.73" @@ -19469,7 +17882,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.75" @@ -19479,7 +17891,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.77" @@ -19489,7 +17900,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.79" @@ -19499,7 +17909,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.17" @@ -19509,7 +17918,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.19" @@ -19519,7 +17927,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.21" @@ -19529,7 +17936,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.25" @@ -19539,7 +17945,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.27" @@ -19549,7 +17954,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.29" @@ -19559,7 +17963,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.81" @@ -19569,7 +17972,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.83" @@ -19579,7 +17981,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.87" @@ -19589,7 +17990,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.89" @@ -19599,7 +17999,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.91" @@ -19609,7 +18008,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.93" @@ -19619,7 +18017,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.159" @@ -19629,7 +18026,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.161" @@ -19639,7 +18035,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.163" @@ -19649,7 +18044,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.165" @@ -19659,7 +18053,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.167" @@ -19669,7 +18062,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.169" @@ -19679,7 +18071,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.171" @@ -19689,7 +18080,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.209" @@ -19699,7 +18089,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.215" @@ -19709,7 +18098,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.217" @@ -19719,7 +18107,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.219" @@ -19729,7 +18116,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c57.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "198.181.163.221" @@ -19739,7 +18125,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c59.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.2" @@ -19749,7 +18134,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c60.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.8" @@ -19759,7 +18143,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c61.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.14" @@ -19769,7 +18152,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c62.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.20" @@ -19779,7 +18161,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c63.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.26" @@ -19789,7 +18170,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c64.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.32" @@ -19799,7 +18179,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c65.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.38" @@ -19809,7 +18188,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c67.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.50" @@ -19819,7 +18197,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c68.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.56" @@ -19829,7 +18206,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c69.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.62" @@ -19839,7 +18215,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c70.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.68" @@ -19849,7 +18224,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c71.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.74" @@ -19859,7 +18233,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c72.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.80" @@ -19869,7 +18242,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c73.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.130" @@ -19879,7 +18251,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c74.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.136" @@ -19889,7 +18260,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c75.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.142" @@ -19899,7 +18269,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c76.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.148" @@ -19909,7 +18278,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c77.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.154" @@ -19919,7 +18287,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c78.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.160" @@ -19929,7 +18296,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c80.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.172" @@ -19939,7 +18305,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c81.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.178" @@ -19949,7 +18314,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c82.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.184" @@ -19959,7 +18323,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c83.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.190" @@ -19969,7 +18332,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c84.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.196" @@ -19979,7 +18341,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c85.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.202" @@ -19989,7 +18350,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c86.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.208" @@ -19999,7 +18359,6 @@ "country": "United States", "city": "Boston", "hostname": "bos-c87.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.105.214" @@ -20009,7 +18368,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.2" @@ -20019,7 +18377,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.4" @@ -20029,7 +18386,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.6" @@ -20039,7 +18395,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.8" @@ -20049,7 +18404,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.10" @@ -20059,7 +18413,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.12" @@ -20069,7 +18422,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.14" @@ -20079,7 +18431,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.16" @@ -20089,7 +18440,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.18" @@ -20099,7 +18449,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.20" @@ -20109,7 +18458,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.22" @@ -20119,7 +18467,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.88.24" @@ -20129,7 +18476,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.8" @@ -20139,7 +18485,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.14" @@ -20149,7 +18494,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.20" @@ -20159,7 +18503,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.26" @@ -20169,7 +18512,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.32" @@ -20179,7 +18521,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.38" @@ -20189,7 +18530,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.44" @@ -20199,7 +18539,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.50" @@ -20209,7 +18548,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.56" @@ -20219,7 +18557,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.62" @@ -20229,7 +18566,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.68" @@ -20239,7 +18575,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.74" @@ -20249,7 +18584,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.80" @@ -20259,7 +18593,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.130" @@ -20269,7 +18602,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.136" @@ -20279,7 +18611,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.142" @@ -20289,7 +18620,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.148" @@ -20299,7 +18629,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.154" @@ -20309,7 +18638,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.160" @@ -20319,7 +18647,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.166" @@ -20329,7 +18656,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.172" @@ -20339,7 +18665,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.178" @@ -20349,7 +18674,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.184" @@ -20359,7 +18683,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.190" @@ -20369,7 +18692,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.196" @@ -20379,7 +18701,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.202" @@ -20389,7 +18710,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.208" @@ -20399,7 +18719,6 @@ "country": "United States", "city": "Charlotte", "hostname": "clt-c41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.104.214" @@ -20409,7 +18728,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.7" @@ -20419,7 +18737,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.204" @@ -20429,7 +18746,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.210" @@ -20439,7 +18755,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.2" @@ -20449,7 +18764,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.35" @@ -20459,7 +18773,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.41" @@ -20469,7 +18782,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.5" @@ -20479,7 +18791,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.4" @@ -20489,7 +18800,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.9" @@ -20499,7 +18809,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.8" @@ -20509,7 +18818,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.13" @@ -20519,7 +18827,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.12" @@ -20529,7 +18836,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.17" @@ -20539,7 +18845,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.16" @@ -20549,7 +18854,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.21" @@ -20559,7 +18863,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.20" @@ -20569,7 +18872,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.10" @@ -20579,7 +18881,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.16" @@ -20589,7 +18890,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.12" @@ -20599,7 +18899,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.18" @@ -20609,7 +18908,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.14" @@ -20619,7 +18917,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.20" @@ -20629,7 +18926,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.24" @@ -20639,7 +18935,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.38" @@ -20649,7 +18944,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.26" @@ -20659,7 +18953,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.40" @@ -20669,7 +18962,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.28" @@ -20679,7 +18971,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.42" @@ -20689,7 +18980,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.30" @@ -20699,7 +18989,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.44" @@ -20709,7 +18998,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.32" @@ -20719,7 +19007,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.126" @@ -20729,7 +19016,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.34" @@ -20739,7 +19025,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.128" @@ -20749,7 +19034,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.36" @@ -20759,7 +19043,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.130" @@ -20769,7 +19052,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.24" @@ -20779,7 +19061,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.22" @@ -20789,7 +19070,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.26" @@ -20799,7 +19079,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.132" @@ -20809,7 +19088,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.210.136" @@ -20819,7 +19097,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.47" @@ -20829,7 +19106,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.53" @@ -20839,7 +19115,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.59" @@ -20849,7 +19124,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.65" @@ -20859,7 +19133,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.71" @@ -20869,7 +19142,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.77" @@ -20879,7 +19151,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.83" @@ -20889,7 +19160,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.89" @@ -20899,7 +19169,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.95" @@ -20909,7 +19178,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.101" @@ -20919,7 +19187,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.107" @@ -20929,7 +19196,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.111" @@ -20939,7 +19205,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a57.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.115" @@ -20949,7 +19214,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a58.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.119" @@ -20959,7 +19223,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a59.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.123" @@ -20969,7 +19232,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a60.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.216" @@ -20979,7 +19241,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a61.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.221" @@ -20989,7 +19250,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a62.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.227" @@ -20999,7 +19259,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a63.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.231" @@ -21009,7 +19268,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-a64.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.245.202.235" @@ -21019,7 +19277,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.3" @@ -21029,7 +19286,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.9" @@ -21039,7 +19295,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.15" @@ -21049,7 +19304,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.21" @@ -21059,7 +19313,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.27" @@ -21069,7 +19322,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.33" @@ -21079,7 +19331,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.39" @@ -21089,7 +19340,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.45" @@ -21099,7 +19349,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.51" @@ -21109,7 +19358,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.57" @@ -21119,7 +19367,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.63" @@ -21129,7 +19376,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.69" @@ -21139,7 +19385,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.75" @@ -21149,7 +19394,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.81" @@ -21159,7 +19403,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.87" @@ -21169,7 +19412,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.93" @@ -21179,7 +19421,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.99" @@ -21189,7 +19430,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.105" @@ -21199,7 +19439,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.111" @@ -21209,7 +19448,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.117" @@ -21219,7 +19457,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.123" @@ -21229,7 +19466,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.129" @@ -21239,7 +19475,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.135" @@ -21249,7 +19484,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.141" @@ -21259,7 +19493,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.147" @@ -21269,7 +19502,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.153" @@ -21279,7 +19511,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.76.159" @@ -21289,7 +19520,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.1" @@ -21299,7 +19529,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.8" @@ -21309,7 +19538,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.14" @@ -21319,7 +19547,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.20" @@ -21329,7 +19556,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.26" @@ -21339,7 +19565,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.32" @@ -21349,7 +19574,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.38" @@ -21359,7 +19583,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.44" @@ -21369,7 +19592,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.50" @@ -21379,7 +19601,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.56" @@ -21389,7 +19610,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.62" @@ -21399,7 +19619,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.68" @@ -21409,7 +19628,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.74" @@ -21419,7 +19637,6 @@ "country": "United States", "city": "Chicago", "hostname": "chi-b41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.77.80" @@ -21429,7 +19646,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.7" @@ -21439,7 +19655,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.13" @@ -21449,7 +19664,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.19" @@ -21459,7 +19673,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.25" @@ -21469,7 +19682,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.31" @@ -21479,7 +19691,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.37" @@ -21489,7 +19700,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.43" @@ -21499,7 +19709,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.49" @@ -21509,7 +19718,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.55" @@ -21519,7 +19727,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.61" @@ -21529,7 +19736,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.67" @@ -21539,7 +19745,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.73" @@ -21549,7 +19754,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.79" @@ -21559,7 +19763,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.85" @@ -21569,7 +19772,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.91" @@ -21579,7 +19781,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.97" @@ -21589,7 +19790,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.103" @@ -21599,7 +19799,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.109" @@ -21609,7 +19808,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.115" @@ -21619,7 +19817,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.121" @@ -21629,7 +19826,6 @@ "country": "United States", "city": "Cincinnati", "hostname": "cvg-b21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.84.127" @@ -21639,7 +19835,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.48" @@ -21649,7 +19844,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.52" @@ -21659,7 +19853,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.5" @@ -21669,7 +19862,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.7" @@ -21679,7 +19871,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.5" @@ -21689,7 +19880,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.4" @@ -21699,7 +19889,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.9" @@ -21709,7 +19898,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.8" @@ -21719,7 +19907,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.13" @@ -21729,7 +19916,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.12" @@ -21739,7 +19925,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.17" @@ -21749,7 +19934,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.16" @@ -21759,7 +19943,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.21" @@ -21769,7 +19952,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.20" @@ -21779,7 +19961,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.9" @@ -21789,7 +19970,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.15" @@ -21799,7 +19979,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.11" @@ -21809,7 +19988,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.17" @@ -21819,7 +19997,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.13" @@ -21829,7 +20006,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.19" @@ -21839,7 +20015,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.29" @@ -21849,7 +20024,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.37" @@ -21859,7 +20033,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.31" @@ -21869,7 +20042,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.39" @@ -21879,7 +20051,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.33" @@ -21889,7 +20060,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.41" @@ -21899,7 +20069,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.35" @@ -21909,7 +20078,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.43" @@ -21919,7 +20087,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.45" @@ -21929,7 +20096,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.133" @@ -21939,7 +20105,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.127" @@ -21949,7 +20114,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.135" @@ -21959,7 +20123,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.129" @@ -21969,7 +20132,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.137" @@ -21979,7 +20141,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.131" @@ -21989,7 +20150,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.139" @@ -21999,7 +20159,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.65.201" @@ -22009,7 +20168,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.65.203" @@ -22019,7 +20177,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.65.205" @@ -22029,7 +20186,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.65.207" @@ -22039,7 +20195,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.65.209" @@ -22049,7 +20204,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.65.211" @@ -22059,7 +20213,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.65.213" @@ -22069,7 +20222,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.144" @@ -22079,7 +20231,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.146" @@ -22089,7 +20240,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.148" @@ -22099,7 +20249,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.150" @@ -22109,7 +20258,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.152" @@ -22119,7 +20267,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.154" @@ -22129,7 +20276,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.209" @@ -22139,7 +20285,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.211" @@ -22149,7 +20294,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.213" @@ -22159,7 +20303,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.215" @@ -22169,7 +20312,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.217" @@ -22179,7 +20321,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.219" @@ -22189,7 +20330,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a57.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.221" @@ -22199,7 +20339,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a58.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.223" @@ -22209,7 +20348,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a59.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.225" @@ -22219,7 +20357,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a60.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.227" @@ -22229,7 +20366,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a61.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.216.229" @@ -22239,7 +20375,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a62.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.29" @@ -22249,7 +20384,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a63.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.31" @@ -22259,7 +20393,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a64.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.33" @@ -22269,7 +20402,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a65.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.35" @@ -22279,7 +20411,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a66.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.37" @@ -22289,7 +20420,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a67.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.39" @@ -22299,7 +20429,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a68.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.41" @@ -22309,7 +20438,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a69.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.43" @@ -22319,7 +20447,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a70.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.45" @@ -22329,7 +20456,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a74.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.81" @@ -22339,7 +20465,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a75.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.83" @@ -22349,7 +20474,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a76.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.85" @@ -22359,7 +20483,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a77.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.87" @@ -22369,7 +20492,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-a78.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.214.89" @@ -22379,7 +20501,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.2" @@ -22389,7 +20510,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.8" @@ -22399,7 +20519,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.14" @@ -22409,7 +20528,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.20" @@ -22419,7 +20537,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.26" @@ -22429,7 +20546,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.32" @@ -22439,7 +20555,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.38" @@ -22449,7 +20564,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.44" @@ -22459,7 +20573,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.50" @@ -22469,7 +20582,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.56" @@ -22479,7 +20591,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.62" @@ -22489,7 +20600,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.68" @@ -22499,7 +20609,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.78.74" @@ -22509,7 +20618,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.2" @@ -22519,7 +20627,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.8" @@ -22529,7 +20636,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.14" @@ -22539,7 +20645,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.20" @@ -22549,7 +20654,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.26" @@ -22559,7 +20663,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.32" @@ -22569,7 +20672,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.38" @@ -22579,7 +20681,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.44" @@ -22589,7 +20690,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.50" @@ -22599,7 +20699,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.56" @@ -22609,7 +20708,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.62" @@ -22619,7 +20717,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.68" @@ -22629,7 +20726,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.74" @@ -22639,7 +20735,6 @@ "country": "United States", "city": "Dallas", "hostname": "dal-b27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.79.80" @@ -22649,7 +20744,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.4" @@ -22659,7 +20753,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.6" @@ -22669,7 +20762,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.8" @@ -22679,7 +20771,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.10" @@ -22689,7 +20780,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.12" @@ -22699,7 +20789,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.14" @@ -22709,7 +20798,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.16" @@ -22719,7 +20807,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.18" @@ -22729,7 +20816,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.20" @@ -22739,7 +20825,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.22" @@ -22749,7 +20834,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.24" @@ -22759,7 +20843,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.113" @@ -22769,7 +20852,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.115" @@ -22779,7 +20861,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.117" @@ -22789,7 +20870,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.119" @@ -22799,7 +20879,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.121" @@ -22809,7 +20888,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.123" @@ -22819,7 +20897,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.125" @@ -22829,7 +20906,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.127" @@ -22839,7 +20915,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.129" @@ -22849,7 +20924,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.131" @@ -22859,7 +20933,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.207" @@ -22869,7 +20942,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.212" @@ -22879,7 +20951,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.216" @@ -22889,7 +20960,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.220" @@ -22899,7 +20969,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.224" @@ -22909,7 +20978,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.228" @@ -22919,7 +20987,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.232" @@ -22929,7 +20996,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.236" @@ -22939,7 +21005,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.175" @@ -22949,7 +21014,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.179" @@ -22959,7 +21023,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.183" @@ -22969,7 +21032,6 @@ "country": "United States", "city": "Denver", "hostname": "den-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.93.187" @@ -22979,7 +21041,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.3" @@ -22989,7 +21050,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.5" @@ -22999,7 +21059,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.7" @@ -23009,7 +21068,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.9" @@ -23019,7 +21077,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.11" @@ -23029,7 +21086,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.13" @@ -23039,7 +21095,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.15" @@ -23049,7 +21104,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.17" @@ -23059,7 +21113,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.19" @@ -23069,7 +21122,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.65" @@ -23079,7 +21131,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.67" @@ -23089,7 +21140,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.69" @@ -23099,7 +21149,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.71" @@ -23109,7 +21158,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.73" @@ -23119,7 +21167,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.75" @@ -23129,7 +21176,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.77" @@ -23139,7 +21185,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.79" @@ -23149,7 +21194,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.117" @@ -23159,7 +21203,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.119" @@ -23169,7 +21212,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.121" @@ -23179,7 +21221,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.123" @@ -23189,7 +21230,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.125" @@ -23199,7 +21239,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.127" @@ -23209,7 +21248,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.129" @@ -23219,7 +21257,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.133" @@ -23229,7 +21266,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.171" @@ -23239,7 +21275,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.173" @@ -23249,7 +21284,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.175" @@ -23259,7 +21293,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.177" @@ -23269,7 +21302,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.179" @@ -23279,7 +21311,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.87.181" @@ -23289,7 +21320,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.4" @@ -23299,7 +21329,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.10" @@ -23309,7 +21338,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.16" @@ -23319,7 +21347,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.22" @@ -23329,7 +21356,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.28" @@ -23339,7 +21365,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.34" @@ -23349,7 +21374,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.40" @@ -23359,7 +21383,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.46" @@ -23369,7 +21392,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.64" @@ -23379,7 +21401,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.58" @@ -23389,7 +21410,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.94" @@ -23399,7 +21419,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.70" @@ -23409,7 +21428,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.76" @@ -23419,7 +21437,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.82" @@ -23429,7 +21446,6 @@ "country": "United States", "city": "Houston", "hostname": "hou-c50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.90.88" @@ -23439,7 +21455,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.3" @@ -23449,7 +21464,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.9" @@ -23459,7 +21473,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.15" @@ -23469,7 +21482,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.21" @@ -23479,7 +21491,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.27" @@ -23489,7 +21500,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.33" @@ -23499,7 +21509,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.39" @@ -23509,7 +21518,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.45" @@ -23519,7 +21527,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.51" @@ -23529,7 +21536,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.59" @@ -23539,7 +21545,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.143" @@ -23549,7 +21554,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.147" @@ -23559,7 +21563,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.86.152" @@ -23569,7 +21572,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.86.156" @@ -23579,7 +21581,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.86.160" @@ -23589,7 +21590,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.86.164" @@ -23599,7 +21599,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.86.168" @@ -23609,7 +21608,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.86.172" @@ -23619,7 +21617,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.65" @@ -23629,7 +21626,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.71" @@ -23639,7 +21635,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.77" @@ -23649,7 +21644,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.83" @@ -23659,7 +21653,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.89" @@ -23669,7 +21662,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.95" @@ -23679,7 +21671,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.101" @@ -23689,7 +21680,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.107" @@ -23699,7 +21689,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.113" @@ -23709,7 +21698,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.119" @@ -23719,7 +21707,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.125" @@ -23729,7 +21716,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.131" @@ -23739,7 +21725,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.155" @@ -23749,7 +21734,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.161" @@ -23759,7 +21743,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.167" @@ -23769,7 +21752,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.173" @@ -23779,7 +21761,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.179" @@ -23789,7 +21770,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "las-c49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.213.86.185" @@ -23799,7 +21779,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.7" @@ -23809,7 +21788,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.13" @@ -23819,7 +21797,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.19" @@ -23829,7 +21806,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.25" @@ -23839,7 +21815,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.31" @@ -23849,7 +21824,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.37" @@ -23859,7 +21833,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.43" @@ -23869,7 +21842,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.49" @@ -23879,7 +21851,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.55" @@ -23889,7 +21860,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.61" @@ -23899,7 +21869,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.67" @@ -23909,7 +21878,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.73" @@ -23919,7 +21887,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.79" @@ -23929,7 +21896,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.85" @@ -23939,7 +21905,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.91" @@ -23949,7 +21914,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.97" @@ -23959,7 +21923,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.103" @@ -23969,7 +21932,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.109" @@ -23979,7 +21941,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.115" @@ -23989,7 +21950,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.121" @@ -23999,7 +21959,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.127" @@ -24009,7 +21968,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.133" @@ -24019,7 +21977,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.139" @@ -24029,7 +21986,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.145" @@ -24039,7 +21995,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.151" @@ -24049,7 +22004,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.157" @@ -24059,7 +22013,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.163" @@ -24069,7 +22022,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.169" @@ -24079,7 +22031,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.175" @@ -24089,7 +22040,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.181" @@ -24099,7 +22049,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.187" @@ -24109,7 +22058,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.2" @@ -24119,7 +22067,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.8" @@ -24129,7 +22076,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.14" @@ -24139,7 +22085,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.20" @@ -24149,7 +22094,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.26" @@ -24159,7 +22103,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.32" @@ -24169,7 +22112,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.38" @@ -24179,7 +22121,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.44" @@ -24189,7 +22130,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.50" @@ -24199,7 +22139,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.56" @@ -24209,7 +22148,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.62" @@ -24219,7 +22157,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.68" @@ -24229,7 +22166,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.74" @@ -24239,7 +22175,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.80" @@ -24249,7 +22184,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.86" @@ -24259,7 +22193,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.92" @@ -24269,7 +22202,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.98" @@ -24279,7 +22211,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.104" @@ -24289,7 +22220,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.110" @@ -24299,7 +22229,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.116" @@ -24309,7 +22238,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.193" @@ -24319,7 +22247,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.199" @@ -24329,7 +22256,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.76.205" @@ -24339,7 +22265,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.122" @@ -24349,7 +22274,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-a56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.94.128" @@ -24359,7 +22283,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.3" @@ -24369,7 +22292,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.9" @@ -24379,7 +22301,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.15" @@ -24389,7 +22310,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.21" @@ -24399,7 +22319,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.27" @@ -24409,7 +22328,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.33" @@ -24419,7 +22337,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.39" @@ -24429,7 +22346,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.45" @@ -24439,7 +22355,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.51" @@ -24449,7 +22364,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.57" @@ -24459,7 +22373,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.63" @@ -24469,7 +22382,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.69" @@ -24479,7 +22391,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.75" @@ -24489,7 +22400,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.80.81" @@ -24499,7 +22409,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.3" @@ -24509,7 +22418,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.9" @@ -24519,7 +22427,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.15" @@ -24529,7 +22436,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.21" @@ -24539,7 +22445,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.27" @@ -24549,7 +22454,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.33" @@ -24559,7 +22463,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.39" @@ -24569,7 +22472,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.45" @@ -24579,7 +22481,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.51" @@ -24589,7 +22490,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.57" @@ -24599,7 +22499,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.63" @@ -24609,7 +22508,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.69" @@ -24619,7 +22517,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.75" @@ -24629,7 +22526,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "lax-b28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.81.81" @@ -24639,7 +22535,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.18" @@ -24649,7 +22544,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.11" @@ -24659,7 +22553,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.24" @@ -24669,7 +22562,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.2" @@ -24679,7 +22571,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.8" @@ -24689,7 +22580,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.6" @@ -24699,7 +22589,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.14" @@ -24709,7 +22598,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.4" @@ -24719,7 +22607,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.16" @@ -24729,7 +22616,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.6" @@ -24739,7 +22625,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.18" @@ -24749,7 +22634,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.8" @@ -24759,7 +22643,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.20" @@ -24769,7 +22652,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.10" @@ -24779,7 +22661,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.22" @@ -24789,7 +22670,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.12" @@ -24799,7 +22679,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.26" @@ -24809,7 +22688,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.28" @@ -24819,7 +22697,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.12" @@ -24829,7 +22706,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.14" @@ -24839,7 +22715,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.16" @@ -24849,7 +22724,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.150" @@ -24859,7 +22733,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.152" @@ -24869,7 +22742,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.154" @@ -24879,7 +22751,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.156" @@ -24889,7 +22760,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.158" @@ -24899,7 +22769,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.160" @@ -24909,7 +22778,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.162" @@ -24919,7 +22787,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.164" @@ -24929,7 +22796,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.166" @@ -24939,7 +22805,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.168" @@ -24949,7 +22814,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.170" @@ -24959,7 +22823,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.172" @@ -24969,7 +22832,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.174" @@ -24979,7 +22841,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.154" @@ -24989,7 +22850,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.156" @@ -24999,7 +22859,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.158" @@ -25009,7 +22868,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.160" @@ -25019,7 +22877,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.162" @@ -25029,7 +22886,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.164" @@ -25039,7 +22895,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.166" @@ -25049,7 +22904,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.168" @@ -25059,7 +22913,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.170" @@ -25069,7 +22922,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.172" @@ -25079,7 +22931,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.174" @@ -25089,7 +22940,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.31" @@ -25099,7 +22949,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.35" @@ -25109,7 +22958,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.222.129" @@ -25119,7 +22967,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.39" @@ -25129,7 +22976,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "209.107.204.41" @@ -25139,7 +22985,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.255.191.2" @@ -25149,7 +22994,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.255.191.4" @@ -25159,7 +23003,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.255.191.6" @@ -25169,7 +23012,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.255.191.20" @@ -25179,7 +23021,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.3" @@ -25189,7 +23030,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.9" @@ -25199,7 +23039,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.15" @@ -25209,7 +23048,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.21" @@ -25219,7 +23057,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.27" @@ -25229,7 +23066,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.33" @@ -25239,7 +23075,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.39" @@ -25249,7 +23084,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.45" @@ -25259,7 +23093,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.51" @@ -25269,7 +23102,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.57" @@ -25279,7 +23111,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.63" @@ -25289,7 +23120,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.69" @@ -25299,7 +23129,6 @@ "country": "United States", "city": "Miami", "hostname": "mia-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.87.75" @@ -25309,7 +23138,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.3" @@ -25319,7 +23147,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.9" @@ -25329,7 +23156,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.15" @@ -25339,7 +23165,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.21" @@ -25349,7 +23174,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.27" @@ -25359,7 +23183,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.33" @@ -25369,7 +23192,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.39" @@ -25379,7 +23201,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.45" @@ -25389,7 +23210,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.51" @@ -25399,7 +23219,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.57" @@ -25409,7 +23228,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.63" @@ -25419,7 +23237,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.75" @@ -25429,7 +23246,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.131" @@ -25439,7 +23255,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.137" @@ -25449,7 +23264,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.143" @@ -25459,7 +23273,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.149" @@ -25469,7 +23282,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.155" @@ -25479,7 +23291,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.161" @@ -25489,7 +23300,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.167" @@ -25499,7 +23309,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.173" @@ -25509,7 +23318,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.179" @@ -25519,7 +23327,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.185" @@ -25529,7 +23336,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.191" @@ -25539,7 +23345,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.197" @@ -25549,7 +23354,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.203" @@ -25559,7 +23363,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.2" @@ -25569,7 +23372,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.8" @@ -25579,7 +23381,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.14" @@ -25589,7 +23390,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.20" @@ -25599,7 +23399,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.26" @@ -25609,7 +23408,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.32" @@ -25619,7 +23417,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.38" @@ -25629,7 +23426,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.44" @@ -25639,7 +23435,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.50" @@ -25649,7 +23444,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.56" @@ -25659,7 +23453,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.62" @@ -25669,7 +23462,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.68" @@ -25679,7 +23471,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.74" @@ -25689,7 +23480,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.106.80" @@ -25699,7 +23489,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.130" @@ -25709,7 +23498,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.136" @@ -25719,7 +23507,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.142" @@ -25729,7 +23516,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.148" @@ -25739,7 +23525,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.154" @@ -25749,7 +23534,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.160" @@ -25759,7 +23543,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.166" @@ -25769,7 +23552,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.172" @@ -25779,7 +23561,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.178" @@ -25789,7 +23570,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.184" @@ -25799,7 +23579,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.190" @@ -25809,7 +23588,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.196" @@ -25819,7 +23597,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.202" @@ -25829,7 +23606,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.208" @@ -25839,7 +23615,6 @@ "country": "United States", "city": "New Orleans", "hostname": "msy-c57.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.107.214" @@ -25849,7 +23624,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.2" @@ -25859,7 +23633,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.8" @@ -25869,7 +23642,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.14" @@ -25879,7 +23651,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.20" @@ -25889,7 +23660,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.26" @@ -25899,7 +23669,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.32" @@ -25909,7 +23678,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.38" @@ -25919,7 +23687,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.44" @@ -25929,7 +23696,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.50" @@ -25939,7 +23705,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.56" @@ -25949,7 +23714,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.62" @@ -25959,7 +23723,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.68" @@ -25969,7 +23732,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.74" @@ -25979,7 +23741,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.80" @@ -25989,7 +23750,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.86" @@ -25999,7 +23759,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.92" @@ -26009,7 +23768,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.98" @@ -26019,7 +23777,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.104" @@ -26029,7 +23786,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.110" @@ -26039,7 +23795,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.116" @@ -26049,7 +23804,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.122" @@ -26059,7 +23813,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.128" @@ -26069,7 +23822,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.134" @@ -26079,7 +23831,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.140" @@ -26089,7 +23840,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.146" @@ -26099,7 +23849,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.152" @@ -26109,7 +23858,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.158" @@ -26119,7 +23867,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.176" @@ -26129,7 +23876,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.182" @@ -26139,7 +23885,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.188" @@ -26149,7 +23894,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.194" @@ -26159,7 +23903,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.200" @@ -26169,7 +23912,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.206" @@ -26179,7 +23921,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.212" @@ -26189,7 +23930,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.218" @@ -26199,7 +23939,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.224" @@ -26209,7 +23948,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.230" @@ -26219,7 +23957,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.180.236" @@ -26229,7 +23966,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.2" @@ -26239,7 +23975,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.8" @@ -26249,7 +23984,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.14" @@ -26259,7 +23993,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.20" @@ -26269,7 +24002,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.26" @@ -26279,7 +24011,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.32" @@ -26289,7 +24020,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.38" @@ -26299,7 +24029,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.44" @@ -26309,7 +24038,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.50" @@ -26319,7 +24047,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.56" @@ -26329,7 +24056,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.62" @@ -26339,7 +24065,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.68" @@ -26349,7 +24074,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.74" @@ -26359,7 +24083,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.80" @@ -26369,7 +24092,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a55.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.86" @@ -26379,7 +24101,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a56.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.92" @@ -26389,7 +24110,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a57.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.98" @@ -26399,7 +24119,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a58.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.104" @@ -26409,7 +24128,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a59.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.110" @@ -26419,7 +24137,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a60.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.116" @@ -26429,7 +24146,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a61.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.122" @@ -26439,7 +24155,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a62.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.128" @@ -26449,7 +24164,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a63.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.134" @@ -26459,7 +24173,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a64.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.140" @@ -26469,7 +24182,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a65.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.152" @@ -26479,7 +24191,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a66.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.158" @@ -26489,7 +24200,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a67.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.164" @@ -26499,7 +24209,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a68.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.170" @@ -26509,7 +24218,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a69.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.176" @@ -26519,7 +24227,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a70.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.182" @@ -26529,7 +24236,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a71.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.188" @@ -26539,7 +24245,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a72.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.194" @@ -26549,7 +24254,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a73.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.200" @@ -26559,7 +24263,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a74.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.206" @@ -26569,7 +24272,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a75.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.212" @@ -26579,7 +24281,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a76.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.218" @@ -26589,7 +24290,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a77.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.224" @@ -26599,7 +24299,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a78.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.2" @@ -26609,7 +24308,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a79.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.8" @@ -26619,7 +24317,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a80.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.10" @@ -26629,7 +24326,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a81.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.12" @@ -26639,7 +24335,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a82.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.14" @@ -26649,7 +24344,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a83.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.16" @@ -26659,7 +24353,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a84.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.18" @@ -26669,7 +24362,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a85.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.20" @@ -26679,7 +24371,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a86.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.22" @@ -26689,7 +24380,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a87.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.24" @@ -26699,7 +24389,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a88.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.26" @@ -26709,7 +24398,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a89.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.28" @@ -26719,7 +24407,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a90.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.30" @@ -26729,7 +24416,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a91.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.80" @@ -26739,7 +24425,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a92.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.82" @@ -26749,7 +24434,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a93.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.84" @@ -26759,7 +24443,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a94.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.86" @@ -26769,7 +24452,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a95.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.88" @@ -26779,7 +24461,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a96.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.90" @@ -26789,7 +24470,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a97.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.92" @@ -26799,7 +24479,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a98.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.94" @@ -26809,7 +24488,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-a99.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.96" @@ -26819,7 +24497,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.137" @@ -26829,7 +24506,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.139" @@ -26839,7 +24515,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.141" @@ -26849,7 +24524,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.143" @@ -26859,7 +24533,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.145" @@ -26869,7 +24542,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.147" @@ -26879,7 +24551,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.149" @@ -26889,7 +24560,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.151" @@ -26899,7 +24569,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.153" @@ -26909,7 +24578,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.155" @@ -26919,7 +24587,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.157" @@ -26929,7 +24596,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.159" @@ -26939,7 +24605,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.161" @@ -26949,7 +24614,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.163" @@ -26959,7 +24623,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.165" @@ -26969,7 +24632,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.167" @@ -26979,7 +24641,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.169" @@ -26989,7 +24650,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.170" @@ -26999,7 +24659,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.174" @@ -27009,7 +24668,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.178" @@ -27019,7 +24677,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "173.195.15.182" @@ -27029,7 +24686,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.232" @@ -27039,7 +24695,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.146" @@ -27049,7 +24704,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "64.145.79.150" @@ -27059,7 +24713,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.3" @@ -27069,7 +24722,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.9" @@ -27079,7 +24731,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.15" @@ -27089,7 +24740,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.21" @@ -27099,7 +24749,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.27" @@ -27109,7 +24758,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.33" @@ -27119,7 +24767,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.39" @@ -27129,7 +24776,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.45" @@ -27139,7 +24785,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.51" @@ -27149,7 +24794,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.57" @@ -27159,7 +24803,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.63" @@ -27169,7 +24812,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.69" @@ -27179,7 +24821,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.75" @@ -27189,7 +24830,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.82.81" @@ -27199,7 +24839,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.3" @@ -27209,7 +24848,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.9" @@ -27219,7 +24857,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.15" @@ -27229,7 +24866,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.21" @@ -27239,7 +24875,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.27" @@ -27249,7 +24884,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.33" @@ -27259,7 +24893,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.39" @@ -27269,7 +24902,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.45" @@ -27279,7 +24911,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.51" @@ -27289,7 +24920,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.57" @@ -27299,7 +24929,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.63" @@ -27309,7 +24938,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.69" @@ -27319,7 +24947,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.75" @@ -27329,7 +24956,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.81" @@ -27339,7 +24965,6 @@ "country": "United States", "city": "New York", "hostname": "nyc-b53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.83.87" @@ -27349,7 +24974,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.93" @@ -27359,7 +24983,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.65" @@ -27369,7 +24992,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.12" @@ -27379,7 +25001,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.14" @@ -27389,7 +25010,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.16" @@ -27399,7 +25019,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.18" @@ -27409,7 +25028,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.95" @@ -27419,7 +25037,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.71" @@ -27429,7 +25046,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.97" @@ -27439,7 +25055,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.73" @@ -27449,7 +25064,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.99" @@ -27459,7 +25073,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.75" @@ -27469,7 +25082,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.213" @@ -27479,7 +25091,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.77" @@ -27489,7 +25100,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.215" @@ -27499,7 +25109,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.79" @@ -27509,7 +25118,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.217" @@ -27519,7 +25127,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.81" @@ -27529,7 +25136,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.219" @@ -27539,7 +25145,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.83" @@ -27549,7 +25154,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.30" @@ -27559,7 +25163,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.32" @@ -27569,7 +25172,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.36" @@ -27579,7 +25181,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.38" @@ -27589,7 +25190,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.40" @@ -27599,7 +25199,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.42" @@ -27609,7 +25208,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.44" @@ -27619,7 +25217,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.46" @@ -27629,7 +25226,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.48" @@ -27639,7 +25235,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.50" @@ -27649,7 +25244,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.52" @@ -27659,7 +25253,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.54" @@ -27669,7 +25262,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.56" @@ -27679,7 +25271,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.58" @@ -27689,7 +25280,6 @@ "country": "United States", "city": "Phoenix", "hostname": "phx-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "192.200.158.60" @@ -27699,7 +25289,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.2" @@ -27709,7 +25298,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.8" @@ -27719,7 +25307,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.14" @@ -27729,7 +25316,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.20" @@ -27739,7 +25325,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.26" @@ -27749,7 +25334,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.32" @@ -27759,7 +25343,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.38" @@ -27769,7 +25352,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.44" @@ -27779,7 +25361,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.50" @@ -27789,7 +25370,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.56" @@ -27799,7 +25379,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.62" @@ -27809,7 +25388,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.68" @@ -27819,7 +25397,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.74" @@ -27829,7 +25406,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.80" @@ -27839,7 +25415,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.86" @@ -27849,7 +25424,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.92" @@ -27859,7 +25433,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.98" @@ -27869,7 +25442,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.104" @@ -27879,7 +25451,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.110" @@ -27889,7 +25460,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.116" @@ -27899,7 +25469,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.122" @@ -27909,7 +25478,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.128" @@ -27919,7 +25487,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.134" @@ -27929,7 +25496,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.140" @@ -27939,7 +25505,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.146" @@ -27949,7 +25514,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.152" @@ -27959,7 +25523,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.158" @@ -27969,7 +25532,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.164" @@ -27979,7 +25541,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.170" @@ -27989,7 +25550,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.176" @@ -27999,7 +25559,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a31.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.182" @@ -28009,7 +25568,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a32.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.188" @@ -28019,7 +25577,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a33.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.194" @@ -28029,7 +25586,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a34.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.200" @@ -28039,7 +25595,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a35.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.206" @@ -28049,7 +25604,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a36.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.212" @@ -28059,7 +25613,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a37.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.218" @@ -28069,7 +25622,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a38.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.224" @@ -28079,7 +25631,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a39.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.230" @@ -28089,7 +25640,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a40.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.236" @@ -28099,7 +25649,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a41.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.151.183.242" @@ -28109,7 +25658,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a42.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.7" @@ -28119,7 +25667,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a43.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.8" @@ -28129,7 +25676,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a44.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.14" @@ -28139,7 +25685,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a45.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.20" @@ -28149,7 +25694,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a46.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.26" @@ -28159,7 +25703,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a47.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.32" @@ -28169,7 +25712,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a48.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.38" @@ -28179,7 +25721,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a49.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.44" @@ -28189,7 +25730,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a50.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.50" @@ -28199,7 +25739,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a51.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.56" @@ -28209,7 +25748,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a52.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.62" @@ -28219,7 +25757,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a53.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.68" @@ -28229,7 +25766,6 @@ "country": "United States", "city": "San Jose", "hostname": "sjc-a54.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "216.131.122.74" @@ -28239,7 +25775,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a01.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.2" @@ -28249,7 +25784,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a02.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.8" @@ -28259,7 +25793,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a03.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.14" @@ -28269,7 +25802,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a04.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.35" @@ -28279,7 +25811,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a05.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.41" @@ -28289,7 +25820,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a06.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.47" @@ -28299,7 +25829,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a07.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.53" @@ -28309,7 +25838,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a08.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.59" @@ -28319,7 +25847,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a09.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.65" @@ -28329,7 +25856,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a10.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.71" @@ -28339,7 +25865,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a11.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.77" @@ -28349,7 +25874,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a12.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.83" @@ -28359,7 +25883,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a13.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.89" @@ -28369,7 +25892,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a14.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.96" @@ -28379,7 +25901,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a15.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.102" @@ -28389,7 +25910,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a16.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.18" @@ -28399,7 +25919,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a17.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.24" @@ -28409,7 +25928,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a18.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.30" @@ -28419,7 +25937,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a19.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.110" @@ -28429,7 +25946,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a20.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.116" @@ -28439,7 +25955,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a21.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.122" @@ -28449,7 +25964,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a22.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.128" @@ -28459,7 +25973,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a23.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.134" @@ -28469,7 +25982,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a24.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.140" @@ -28479,7 +25991,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a25.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.146" @@ -28489,7 +26000,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a26.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.152" @@ -28499,7 +26009,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a27.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.158" @@ -28509,7 +26018,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a28.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.164" @@ -28519,7 +26027,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a29.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.170" @@ -28529,7 +26036,6 @@ "country": "United States", "city": "Seattle", "hostname": "sea-a30.ipvanish.com", - "tcp": false, "udp": true, "ips": [ "205.185.223.176" @@ -28620,7 +26126,6 @@ "isp": "M247", "hostname": "ca1.wg.ivpn.net", "wgpubkey": "rg+GGDmjM4Vxo1hURvKmgm9yonb6qcoKbPCP/DNDBnI=", - "tcp": false, "udp": true, "ips": [ "37.120.130.58" @@ -28717,7 +26222,6 @@ "isp": "Datapacket", "hostname": "de1.wg.ivpn.net", "wgpubkey": "mS3/WpXjnMAMmXjSpd4nFzx9HSE3ubv2WyjpyH2REgs=", - "tcp": false, "udp": true, "ips": [ "185.102.219.26" @@ -28814,7 +26318,6 @@ "isp": "M247", "hostname": "it1.wg.ivpn.net", "wgpubkey": "Aj6b81yrDk7I913R+fuSW/NAmIl87N73vHgY5/WQY0Q=", - "tcp": false, "udp": true, "ips": [ "82.102.21.90" @@ -28851,7 +26354,6 @@ "isp": "Datapacket", "hostname": "nl1.wg.ivpn.net", "wgpubkey": "AsMT2FqpkZbjzWeDch6GwufF5odl259W/hIkGytVfWo=", - "tcp": false, "udp": true, "ips": [ "185.102.218.104" @@ -29008,7 +26510,6 @@ "isp": "M247", "hostname": "sg1.wg.ivpn.net", "wgpubkey": "hSg0At4uwuIhmTy5UT4fRbi5AN6JO2ZWTuIvqd4nHCE=", - "tcp": false, "udp": true, "ips": [ "37.120.151.122" @@ -29057,7 +26558,6 @@ "isp": "M247", "hostname": "se1.wg.ivpn.net", "wgpubkey": "2n0nFE1g/+vQr2AOQPm9Igyiy0zh9uTTultvOOSkMRo=", - "tcp": false, "udp": true, "ips": [ "37.120.153.226" @@ -29082,7 +26582,6 @@ "isp": "Privatelayer", "hostname": "ch1.wg.ivpn.net", "wgpubkey": "jVZJ61i1xxkAfriDHpwvF/GDuTvZUqhwoWSjkOJvaUA=", - "tcp": false, "udp": true, "ips": [ "141.255.164.66" @@ -29131,7 +26630,6 @@ "isp": "M247", "hostname": "gb1.wg.ivpn.net", "wgpubkey": "7+jos+Eg+hMEOQE4Std6OJ+WVnCcmbqS1/EbPwn9w3s=", - "tcp": false, "udp": true, "ips": [ "81.92.202.114" @@ -29180,7 +26678,6 @@ "isp": "Datapacket", "hostname": "us-ga1.wg.ivpn.net", "wgpubkey": "jD8h+pL5/d6fmYcTzl0lR8AWzQVN5XkwRFSmM/3NcDM=", - "tcp": false, "udp": true, "ips": [ "185.93.0.212" @@ -29217,7 +26714,6 @@ "isp": "Datapacket", "hostname": "us-il1.wg.ivpn.net", "wgpubkey": "hku9gjamhoii8OvxZgx+TdUDIkOAQYFu39qbav2AyUQ=", - "tcp": false, "udp": true, "ips": [ "89.187.181.116" @@ -29254,7 +26750,6 @@ "isp": "Quadranet", "hostname": "us-tx1.wg.ivpn.net", "wgpubkey": "JPT1veXLmasj2uQDstX24mpR7VWD+GmV8JDkidkz91Q=", - "tcp": false, "udp": true, "ips": [ "198.55.124.114" @@ -29303,7 +26798,6 @@ "isp": "Datapacket", "hostname": "us-ca1.wg.ivpn.net", "wgpubkey": "FGl78s9Ct6xNamQ2/CtAyXwGePrrU0kiZxfM27pm8XA=", - "tcp": false, "udp": true, "ips": [ "185.180.13.41" @@ -29400,7 +26894,6 @@ "isp": "M247", "hostname": "us-ny1.wg.ivpn.net", "wgpubkey": "6/tjvgb7HFl7UuvBSegolxa1zKr3iSlDrlCexCmhAGE=", - "tcp": false, "udp": true, "ips": [ "91.132.137.170" @@ -29483,8 +26976,7 @@ "country": "Albania", "city": "Tirana", "hostname": "al-tia-001", - "isp": "iRegister", - "owned": false + "isp": "iRegister" }, { "vpn": "openvpn", @@ -29497,8 +26989,7 @@ "country": "Australia", "city": "Adelaide", "hostname": "au-adl-001", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29511,8 +27002,7 @@ "country": "Australia", "city": "Brisbane", "hostname": "au-bne-001", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29525,8 +27015,7 @@ "country": "Australia", "city": "Canberra", "hostname": "au-cbr-001", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29539,8 +27028,7 @@ "country": "Australia", "city": "Melbourne", "hostname": "au-mel-002", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29553,8 +27041,7 @@ "country": "Australia", "city": "Melbourne", "hostname": "au-mel-003", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29567,8 +27054,7 @@ "country": "Australia", "city": "Melbourne", "hostname": "au-mel-004", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "wireguard", @@ -29582,7 +27068,6 @@ "city": "Melbourne", "hostname": "au3-wireguard", "isp": "Intergrid", - "owned": false, "wgpubkey": "kXXykjh6KqiE/pvtmTV8kCB+jhhkl9kT0Dg+yyDz8hg=" }, { @@ -29597,7 +27082,6 @@ "city": "Melbourne", "hostname": "au4-wireguard", "isp": "Intergrid", - "owned": false, "wgpubkey": "D2ltFd7TbpYNq9PejAeGwlaJ2bEFLqOSYywdY9N5xCY=" }, { @@ -29611,8 +27095,7 @@ "country": "Australia", "city": "Perth", "hostname": "au-per-001", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29625,8 +27108,7 @@ "country": "Australia", "city": "Sydney", "hostname": "au-syd-001", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29639,8 +27121,7 @@ "country": "Australia", "city": "Sydney", "hostname": "au-syd-002", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29653,8 +27134,7 @@ "country": "Australia", "city": "Sydney", "hostname": "au-syd-003", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "openvpn", @@ -29667,8 +27147,7 @@ "country": "Australia", "city": "Sydney", "hostname": "au-syd-201", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -29681,8 +27160,7 @@ "country": "Australia", "city": "Sydney", "hostname": "au-syd-203", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -29695,8 +27173,7 @@ "country": "Australia", "city": "Sydney", "hostname": "au-syd-204", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -29710,7 +27187,6 @@ "city": "Sydney", "hostname": "au1-wireguard", "isp": "Intergrid", - "owned": false, "wgpubkey": "t+WbEMneS26Ukgzie9gjkc6rUyUiRNTgkLRcJ8IgTCk=" }, { @@ -29725,7 +27201,6 @@ "city": "Sydney", "hostname": "au10-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "BJWwDjgE2kmjazqxiKkisE+ZIxEOpvikJXkJYvQdz24=" }, { @@ -29740,7 +27215,6 @@ "city": "Sydney", "hostname": "au11-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "lpNlTCVN/Oru86QtEblGpxKc6R6fEFVmKjm5clumZQQ=" }, { @@ -29755,7 +27229,6 @@ "city": "Sydney", "hostname": "au12-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "8EVsUWoy+kULNzuxI1pugiAhJ5ffPsfzL94p025rM3I=" }, { @@ -29770,7 +27243,6 @@ "city": "Sydney", "hostname": "au13-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "VNyHFgr0yhjg2+58Tx3sU2wUPcS9+k7GuIPr1htWkjw=" }, { @@ -29785,7 +27257,6 @@ "city": "Sydney", "hostname": "au14-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "GtbNj9H0j+QakhAiaIA6trOu/OK304906ONbqkOonxo=" }, { @@ -29800,7 +27271,6 @@ "city": "Sydney", "hostname": "au2-wireguard", "isp": "Intergrid", - "owned": false, "wgpubkey": "26Ad1I9IZJC4gLdSw9sAQrfW5+ahys2Jp9vzRsMMLmE=" }, { @@ -29815,7 +27285,6 @@ "city": "Sydney", "hostname": "au8-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "sHvZqCRnPcm0JKhqu4uZQ3aXR7CO6N/+bR4/mD+qaCM=" }, { @@ -29830,7 +27299,6 @@ "city": "Sydney", "hostname": "au9-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "a9TzidjjemtR2sVxgoDymsGV63vMV7v1+JY80HEYumA=" }, { @@ -29844,8 +27312,7 @@ "country": "Austria", "city": "Vienna", "hostname": "at-vie-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -29858,8 +27325,7 @@ "country": "Austria", "city": "Vienna", "hostname": "at-vie-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -29872,8 +27338,7 @@ "country": "Austria", "city": "Vienna", "hostname": "at-vie-103", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -29886,8 +27351,7 @@ "country": "Austria", "city": "Vienna", "hostname": "at-vie-104", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -29901,7 +27365,6 @@ "city": "Vienna", "hostname": "at4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "hZpraeYrNU7Vl+UB2NSpXT2vBRM1fZ/a/gt4TTksP14=" }, { @@ -29916,7 +27379,6 @@ "city": "Vienna", "hostname": "at5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "jJVG/lv7RikDG0FMsV3WJgfot5XecPm9aHDrYvU+NAM=" }, { @@ -29931,7 +27393,6 @@ "city": "Vienna", "hostname": "at6-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "l03RAG49wBmpdWKO6oywtdNO3Ksk8byIx9JCr3r8Mlo=" }, { @@ -29946,7 +27407,6 @@ "city": "Vienna", "hostname": "at7-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "FnyzqDU4TJeFMO5g1AcGEzLGeVcPAcvdvnEXjPFw3Gg=" }, { @@ -29961,7 +27421,6 @@ "city": "Vienna", "hostname": "at8-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "VxDx2tErPqmeDHGPfIhnsDg6nfJ5cnE6u4EfHx5MjBE=" }, { @@ -29976,7 +27435,6 @@ "city": "Vienna", "hostname": "at9-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "f4t0xU1DsADjvHsAeB0pJAOdq+FkYZ5IhHvWom+/dGI=" }, { @@ -29990,8 +27448,7 @@ "country": "Belgium", "city": "Brussels", "hostname": "be-bru-001", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30004,8 +27461,7 @@ "country": "Belgium", "city": "Brussels", "hostname": "be-bru-002", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30018,8 +27474,7 @@ "country": "Belgium", "city": "Brussels", "hostname": "be-bru-003", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30032,8 +27487,7 @@ "country": "Belgium", "city": "Brussels", "hostname": "be-bru-004", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30046,8 +27500,7 @@ "country": "Belgium", "city": "Brussels", "hostname": "be-bru-005", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -30061,7 +27514,6 @@ "city": "Brussels", "hostname": "be1-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "wkEqQQKK3dJDttRanJWONU/5xuxRDR4cLfvnPJKtijE=" }, { @@ -30076,7 +27528,6 @@ "city": "Brussels", "hostname": "be2-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Djs+FiBl54bMSHt2QsWZgdyu3hU2Vlkm5MRZt8MHe0c=" }, { @@ -30091,7 +27542,6 @@ "city": "Brussels", "hostname": "be3-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "pW/VljNbNWBg42/heyYGHeiKGVuzDhMw59eiSUQfnjo=" }, { @@ -30106,7 +27556,6 @@ "city": "Brussels", "hostname": "be4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "zotbXj8reba/gId9QDZ9Az8RsGLyAskCHVVM3HYhGQw=" }, { @@ -30120,8 +27569,7 @@ "country": "Brazil", "city": "Sao Paulo", "hostname": "br-sao-001", - "isp": "Qnax", - "owned": false + "isp": "Qnax" }, { "vpn": "wireguard", @@ -30135,7 +27583,6 @@ "city": "Sao Paulo", "hostname": "br1-wireguard", "isp": "Qnax", - "owned": false, "wgpubkey": "2eYsuY/H7kpeam31OG+eQ7s43BeuyzoVgqwdeGXMd3A=" }, { @@ -30150,7 +27597,6 @@ "city": "Sao Paulo", "hostname": "br3-wireguard", "isp": "Maxihost", - "owned": false, "wgpubkey": "8Yg64o0gEcNOY2ejtrEzMhfN+ol0W3BkJKsOE/P22kw=" }, { @@ -30164,8 +27610,7 @@ "country": "Bulgaria", "city": "Sofia", "hostname": "bg-sof-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30178,8 +27623,7 @@ "country": "Bulgaria", "city": "Sofia", "hostname": "bg-sof-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -30193,7 +27637,6 @@ "city": "Sofia", "hostname": "bg4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "6TNimNeecei/wqpJak2Z8hdD25vg5oF/In9q3l4QQk4=" }, { @@ -30208,7 +27651,6 @@ "city": "Sofia", "hostname": "bg5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "yXn7ziIFrHRgoZlhWRkxoGFb3maolOxOn6sh+OPLdT8=" }, { @@ -30223,7 +27665,6 @@ "city": "Sofia", "hostname": "bg6-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "lCGzNzh+hxEOyXQFvNo8FZwZcCD3dLgZvAo6XhnmUmk=" }, { @@ -30238,7 +27679,6 @@ "city": "Sofia", "hostname": "bg7-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "U2b1yPEcO/vlQrlpNTsgQJoYQ7oaxtW4OJQx6Cod9yo=" }, { @@ -30252,8 +27692,7 @@ "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30266,8 +27705,7 @@ "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30280,8 +27718,7 @@ "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-103", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30294,8 +27731,7 @@ "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-104", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30308,8 +27744,7 @@ "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-105", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30322,8 +27757,7 @@ "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-106", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30336,8 +27770,7 @@ "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-107", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30350,8 +27783,7 @@ "country": "Canada", "city": "Montreal", "hostname": "ca-mtr-108", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -30365,7 +27797,6 @@ "city": "Montreal", "hostname": "ca10-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "pAVh6WJtyF7ktvavez399L4A615TXOAaUHQgpwJ4EHU=" }, { @@ -30380,7 +27811,6 @@ "city": "Montreal", "hostname": "ca11-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "hWlbtTvF2lXHx7VYlKguVqC1TAvxU8F/NXW3jcFxBG8=" }, { @@ -30395,7 +27825,6 @@ "city": "Montreal", "hostname": "ca12-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Dn8j7lbdBg8vDJcKFPT/JymWdTwVupQCdm0HtF8YikY=" }, { @@ -30410,7 +27839,6 @@ "city": "Montreal", "hostname": "ca13-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "6JseWScYkcFM5ibBZWGp7DbZQgZ1jQ14mrnXbvnKGnc=" }, { @@ -30425,7 +27853,6 @@ "city": "Montreal", "hostname": "ca14-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "hAFhjCWuSgvIlnBplm4J3iQK4GNW1PSxY0WmoiQP63M=" }, { @@ -30440,7 +27867,6 @@ "city": "Montreal", "hostname": "ca15-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "dn27fhdet9sxRl3biHeCBvA5edZMC03bh0zZIj3DJzI=" }, { @@ -30455,7 +27881,6 @@ "city": "Montreal", "hostname": "ca16-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "eHHmvUwqIR2EQKxUM1i2HtiaNryOwGTjVP6K//HjRiY=" }, { @@ -30470,7 +27895,6 @@ "city": "Montreal", "hostname": "ca17-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "uWQn+YxJzgfChFium04RpovvN5KyoSZmnL9lnCHD9gc=" }, { @@ -30485,7 +27909,6 @@ "city": "Montreal", "hostname": "ca18-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "odeJmnpP19GxfiaAhZEqg9OkG4dgp5YxVVJL34ld1QI=" }, { @@ -30500,7 +27923,6 @@ "city": "Montreal", "hostname": "ca19-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "5BBUQJ+/BDvI4G8ybxvJihMCkJN9B54Lrm2JYK5JzmY=" }, { @@ -30515,7 +27937,6 @@ "city": "Montreal", "hostname": "ca20-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "9yGUwYAwZ38uo1dNos9AVkRApE/2gloiS3cd/MhJmwg=" }, { @@ -30530,7 +27951,6 @@ "city": "Montreal", "hostname": "ca21-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "ywlUvPueZiLIKXTMT2/UslgGv8yU7cUuKdQOpWi4xiI=" }, { @@ -30544,8 +27964,7 @@ "country": "Canada", "city": "Toronto", "hostname": "ca-tor-101", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -30558,8 +27977,7 @@ "country": "Canada", "city": "Toronto", "hostname": "ca-tor-102", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -30572,8 +27990,7 @@ "country": "Canada", "city": "Toronto", "hostname": "ca-tor-103", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "wireguard", @@ -30587,7 +28004,6 @@ "city": "Toronto", "hostname": "ca22-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "9PfLtMmfLsdNuh3Rj3eBDMId2bXZ7+yWJO78CZfuLzU=" }, { @@ -30602,7 +28018,6 @@ "city": "Toronto", "hostname": "ca23-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "iGwKJTbm/aL4kJXwcJkO0JYPEEGGDcYBrRTG7CHIQx0=" }, { @@ -30617,7 +28032,6 @@ "city": "Toronto", "hostname": "ca24-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "MbusadbeACMR5bv+PPjhldb5CgwjlCbthnTJNrOJnhI=" }, { @@ -30632,7 +28046,6 @@ "city": "Toronto", "hostname": "ca25-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "y9JT2B69QiWkbEAiXGq5yhtAvg8YNXNkjhHcUiBCiko=" }, { @@ -30647,7 +28060,6 @@ "city": "Toronto", "hostname": "ca26-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "XE+hufytSkX14TjskwmYL4HL4mbPf+Vd5Jfgwf/5JHc=" }, { @@ -30662,7 +28074,6 @@ "city": "Toronto", "hostname": "ca27-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "ptnLZbreIzTZrSyPD0XhOAAmN194hcPSG5TI5TTiL08=" }, { @@ -30676,8 +28087,7 @@ "country": "Canada", "city": "Vancouver", "hostname": "ca-van-003", - "isp": "Esecuredata", - "owned": false + "isp": "Esecuredata" }, { "vpn": "openvpn", @@ -30690,8 +28100,7 @@ "country": "Canada", "city": "Vancouver", "hostname": "ca-van-004", - "isp": "Esecuredata", - "owned": false + "isp": "Esecuredata" }, { "vpn": "wireguard", @@ -30705,7 +28114,6 @@ "city": "Vancouver", "hostname": "ca7-wireguard", "isp": "Esecuredata", - "owned": false, "wgpubkey": "nis4OtPs4PsVh+roaxZx0eYVkcl532WdC3dikQ9YKwQ=" }, { @@ -30719,8 +28127,7 @@ "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-001", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30733,8 +28140,7 @@ "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-002", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30747,8 +28153,7 @@ "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-003", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30761,8 +28166,7 @@ "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-004", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30775,8 +28179,7 @@ "country": "Czech Republic", "city": "Prague", "hostname": "cz-prg-005", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -30790,7 +28193,6 @@ "city": "Prague", "hostname": "cz1-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "/LNuMn2Q3PXMjc5c84bAgf5efyXsKTQxPm45ywSK/Gg=" }, { @@ -30805,7 +28207,6 @@ "city": "Prague", "hostname": "cz2-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "5cnukfXHWIBm3FxF6uJSsG3jPuZM6NtSK05vl2a84Ug=" }, { @@ -30820,7 +28221,6 @@ "city": "Prague", "hostname": "cz3-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "sTYtbdXVJFJgtLKzmlg6WKiOdRZ00DSnu+8mwLQxFQk=" }, { @@ -30835,7 +28235,6 @@ "city": "Prague", "hostname": "cz4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "R4Gs1D1YV6gbdl/QIDAb3o3jdAiZZypiEwc9GzSER04=" }, { @@ -30850,7 +28249,6 @@ "city": "Prague", "hostname": "cz5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Mb9LGOovvkJPcjt9AzSeHukpjNzCndEM9aH/DadoDj8=" }, { @@ -30892,8 +28290,7 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "dk-cph-103", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30906,8 +28303,7 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "dk-cph-104", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -30920,8 +28316,7 @@ "country": "Denmark", "city": "Copenhagen", "hostname": "dk-cph-201", - "isp": "Blix", - "owned": false + "isp": "Blix" }, { "vpn": "wireguard", @@ -30965,7 +28360,6 @@ "city": "Copenhagen", "hostname": "dk5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "7eykWQ65FV7saXDJiZazA5htM0Fr/01FrUa5Mgyg4j0=" }, { @@ -30980,7 +28374,6 @@ "city": "Copenhagen", "hostname": "dk6-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "jlhgiPDCNxhrfMUEAEXxU8AyJU+oZ+4TCYrt7o5VsFs=" }, { @@ -30995,7 +28388,6 @@ "city": "Copenhagen", "hostname": "dk7-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "E3XgsLAaDdRhYl5tPbBIO87bdTYQmpF72nqIhFBk3g8=" }, { @@ -31010,7 +28402,6 @@ "city": "Copenhagen", "hostname": "dk8-wireguard", "isp": "Asergo", - "owned": false, "wgpubkey": "H7tZk6jMQps9WHn8opffvYmt6XN3v1614EGpsMZoA3w=" }, { @@ -31025,7 +28416,6 @@ "city": "Tallinn", "hostname": "ee1-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "5Gr+2UwVVy/jRJPKJGOIWXTTsqxPGd8mL/VgPlcuZXU=" }, { @@ -31040,7 +28430,6 @@ "city": "Tallinn", "hostname": "ee2-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "LH+fpnB3eeHVgxrFIBUtiieXfEqd2sZENyyzGhS5K2o=" }, { @@ -31055,7 +28444,6 @@ "city": "Tallinn", "hostname": "ee3-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "BFTDEFHcbU9huaxwpYa98eeaSJZa1iEJsH8OLXHxQjk=" }, { @@ -31268,8 +28656,7 @@ "country": "France", "city": "Paris", "hostname": "fr-par-202", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -31282,8 +28669,7 @@ "country": "France", "city": "Paris", "hostname": "fr-par-203", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -31297,7 +28683,6 @@ "city": "Paris", "hostname": "fr10-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "vQ0EXd1jWex1neG+W/SeQgByluIM0L5WnqkNa1j75Ek=" }, { @@ -31312,7 +28697,6 @@ "city": "Paris", "hostname": "fr11-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "YKHo5jAYWOzvAFzc+9XAjn7rEWqY75MA3fPJmk7D7jU=" }, { @@ -31327,7 +28711,6 @@ "city": "Paris", "hostname": "fr12-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "j/1ylCahjyHLiynsaPKykQw8mE5F0M6lQMZfgicJpm8=" }, { @@ -31342,7 +28725,6 @@ "city": "Paris", "hostname": "fr13-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "2tuaExmwkXGVjJRnd3D31GsDwKXy2q+eD0Cy2gUbDSU=" }, { @@ -31357,7 +28739,6 @@ "city": "Paris", "hostname": "fr14-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "rlKbOMrLiHiNphSB/kMEiLNdAPtgt+f64Rxqa+z991E=" }, { @@ -31447,7 +28828,6 @@ "city": "Dusseldorf", "hostname": "de20-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "/pS3lXg1jTJ7I58GD/s/4GNL2B0U8JNbjbH9Ddh0myw=" }, { @@ -31462,7 +28842,6 @@ "city": "Dusseldorf", "hostname": "de21-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "I6LOIdGsXojaR9GtwJUyFSzLtSnhct/x6IOrxK1W/Qo=" }, { @@ -31477,7 +28856,6 @@ "city": "Dusseldorf", "hostname": "de22-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "+TpVOeCDHnfnqWMw1MI9MUK+UqleDQJeH4PN7/PyuU0=" }, { @@ -31603,8 +28981,7 @@ "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-201", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -31617,8 +28994,7 @@ "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-202", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -31631,8 +29007,7 @@ "country": "Germany", "city": "Frankfurt", "hostname": "de-fra-203", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -31676,7 +29051,6 @@ "city": "Frankfurt", "hostname": "de12-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Ec/wwcosVal9Kjc97ZuTTV7Dy5c0/W5iLet7jrSEm2k=" }, { @@ -31691,7 +29065,6 @@ "city": "Frankfurt", "hostname": "de13-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "gB+j+wTsZ8dZq2TbUQovV6zwmM9O2SMneGQR6NHxOQQ=" }, { @@ -31706,7 +29079,6 @@ "city": "Frankfurt", "hostname": "de14-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "vtqDtifokiHna0eBshGdJLedj/lzGW+iDvWKx+YjDFs=" }, { @@ -31721,7 +29093,6 @@ "city": "Frankfurt", "hostname": "de15-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "7YN0g5B6gTRAcgb+78RpfGTw1UaNJprciQTSO/tKjyE=" }, { @@ -31736,7 +29107,6 @@ "city": "Frankfurt", "hostname": "de16-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "3bEHVNah9L8nvWZmk7suzNvSQBPTC4EgO7umldY34Ac=" }, { @@ -31751,7 +29121,6 @@ "city": "Frankfurt", "hostname": "de17-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Fp3bDkNLmmTajbN3cSVM9zi0OeSuOZySMGypk7HOO3E=" }, { @@ -31766,7 +29135,6 @@ "city": "Frankfurt", "hostname": "de23-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "EpiZKShr92zHOHRyMzHpw1fONtbk9uppMkxklU3SxhY=" }, { @@ -31781,7 +29149,6 @@ "city": "Frankfurt", "hostname": "de24-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "9hIGjit4ApkNGuEWYBLpahxokEoP0cT9CMZ+ELEygzo=" }, { @@ -31796,7 +29163,6 @@ "city": "Frankfurt", "hostname": "de25-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "Rc+VTdcBPg7i7dy7MAp6TOhwJP3g1/TilK+IaE7Aojc=" }, { @@ -31811,7 +29177,6 @@ "city": "Frankfurt", "hostname": "de26-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "UXKb8MiyaWHI1k9ayZH0i206Pc+/gKUhAwCORDqonkE=" }, { @@ -31885,8 +29250,7 @@ "country": "Greece", "city": "Athens", "hostname": "gr-ath-001", - "isp": "aweb", - "owned": false + "isp": "aweb" }, { "vpn": "openvpn", @@ -31899,8 +29263,7 @@ "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-001", - "isp": "Leaseweb", - "owned": false + "isp": "Leaseweb" }, { "vpn": "openvpn", @@ -31913,8 +29276,7 @@ "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-002", - "isp": "Leaseweb", - "owned": false + "isp": "Leaseweb" }, { "vpn": "openvpn", @@ -31927,8 +29289,7 @@ "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-003", - "isp": "Leaseweb", - "owned": false + "isp": "Leaseweb" }, { "vpn": "openvpn", @@ -31941,8 +29302,7 @@ "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -31955,8 +29315,7 @@ "country": "Hong Kong", "city": "Hong Kong", "hostname": "hk-hkg-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -31970,7 +29329,6 @@ "city": "Hong Kong", "hostname": "hk1-wireguard", "isp": "Leaseweb", - "owned": false, "wgpubkey": "oS4vR1RHoFtpevzl2KLUjqDH9AiLwnh9GHBMiB5FVgM=" }, { @@ -31985,7 +29343,6 @@ "city": "Hong Kong", "hostname": "hk2-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "+LXNw5k3CFHeUaFGKC3bj7iQMvzGCprtBSraL2IsQWU=" }, { @@ -32000,7 +29357,6 @@ "city": "Hong Kong", "hostname": "hk3-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "NwJsMjTnkY5Qr95Zmh75N0OfiQroEQdaIpxh58RCIGU=" }, { @@ -32015,7 +29371,6 @@ "city": "Hong Kong", "hostname": "hk4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "ZTPHtQfr9FOhws6SQ+uQzeUn5atv8m72QOF+7jaBmDM=" }, { @@ -32029,8 +29384,7 @@ "country": "Hungary", "city": "Budapest", "hostname": "hu-bud-003", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32043,8 +29397,7 @@ "country": "Hungary", "city": "Budapest", "hostname": "hu-bud-004", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -32058,7 +29411,6 @@ "city": "Budapest", "hostname": "hu3-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "gHcjEh2XuoCPiExm8ScXdz6pzduZPp6zRyam6NE6VRQ=" }, { @@ -32073,7 +29425,6 @@ "city": "Budapest", "hostname": "hu4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "VLosXjrnpppwX5yjqW6WaFOYEY76hWQrDPlfe/0dzyY=" }, { @@ -32088,7 +29439,6 @@ "city": "Budapest", "hostname": "hu5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "mZM32UGNrhVXeQrTPCMqjh3jMyH5HvHbk8vwieTWpzM=" }, { @@ -32102,8 +29452,7 @@ "country": "Ireland", "city": "Dublin", "hostname": "ie-dub-001", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32116,8 +29465,7 @@ "country": "Ireland", "city": "Dublin", "hostname": "ie-dub-002", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -32131,7 +29479,6 @@ "city": "Dublin", "hostname": "ie1-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "202IWDDdX4GK94YtFlB/DEOPxe6BLpiwFYAviWHiKj8=" }, { @@ -32146,7 +29493,6 @@ "city": "Dublin", "hostname": "ie2-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "DOunbHw/O5gnTNo1Ov/6rknpvJck9BlQ1zTMHE4JA38=" }, { @@ -32160,8 +29506,7 @@ "country": "Israel", "city": "Tel Aviv", "hostname": "il-tlv-001", - "isp": "HQServ", - "owned": false + "isp": "HQServ" }, { "vpn": "openvpn", @@ -32174,8 +29519,7 @@ "country": "Italy", "city": "Milan", "hostname": "it-mil-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32188,8 +29532,7 @@ "country": "Italy", "city": "Milan", "hostname": "it-mil-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32202,8 +29545,7 @@ "country": "Italy", "city": "Milan", "hostname": "it-mil-103", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32216,8 +29558,7 @@ "country": "Italy", "city": "Milan", "hostname": "it-mil-104", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -32231,7 +29572,6 @@ "city": "Milan", "hostname": "it4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "CJMsEa5/skjmYPc+lvHnmLD1dpSFoRmv/FE815oBbRE=" }, { @@ -32246,7 +29586,6 @@ "city": "Milan", "hostname": "it5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "FetdLS9yyn5FQYWpJQUUdxs17Abjp5AotivoxUiOVHk=" }, { @@ -32261,7 +29600,6 @@ "city": "Milan", "hostname": "it6-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "6c25503CIsKKZ5BwFvSnid6dcCKTh5/ftmz4MvGnXzQ=" }, { @@ -32276,7 +29614,6 @@ "city": "Milan", "hostname": "it7-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "F4Scn2i1IIHTsWsCfXesNb2XYyrIu8Wn+vJihvPVk2M=" }, { @@ -32291,7 +29628,6 @@ "city": "Milan", "hostname": "it8-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "hW+QDgH+88xUCgMSZkdMqTIuUossLmopwu6nWqHCsXc=" }, { @@ -32306,7 +29642,6 @@ "city": "Osaka", "hostname": "jp1-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "C2TUHPoZlT08iceLM2coBDTbcfg9tTKrUt7tRBWP0nk=" }, { @@ -32321,7 +29656,6 @@ "city": "Osaka", "hostname": "jp2-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "SKSP2p2pmtAbLF5QsiULdcqVaeiI/IOOvU06gQRNVUs=" }, { @@ -32336,7 +29670,6 @@ "city": "Osaka", "hostname": "jp3-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "oWo/Ljb6SYqJYHHhRd8nKDjFJx9MqfouEYSJvba4XH4=" }, { @@ -32351,7 +29684,6 @@ "city": "Osaka", "hostname": "jp4-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "EDkvP9v1ZX0eCTPStNC6PtbHvFk2t1b8iud+UQNe3Es=" }, { @@ -32365,8 +29697,7 @@ "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32379,8 +29710,7 @@ "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32393,8 +29723,7 @@ "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-103", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32407,8 +29736,7 @@ "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-104", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -32421,8 +29749,7 @@ "country": "Japan", "city": "Tokyo", "hostname": "jp-tyo-105", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -32436,7 +29763,6 @@ "city": "Tokyo", "hostname": "jp10-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "OR4kf/AOFDn3dCzZdG/hiH92lRHeYPFitKHm40wWTWc=" }, { @@ -32451,7 +29777,6 @@ "city": "Tokyo", "hostname": "jp11-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Xmucvp5MtwXQ3LjkI/o7kb3qb6O9QrdBhyhp8AkobDQ=" }, { @@ -32466,7 +29791,6 @@ "city": "Tokyo", "hostname": "jp12-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "pxL/+Kh5nOwHRNkO0FRkSX423+qPssRp2k9+hUxGoR8=" }, { @@ -32481,7 +29805,6 @@ "city": "Tokyo", "hostname": "jp13-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "MirGjkQpzD6c6yxgbcvECZlECFvgO0hx5p+QhpOJYRQ=" }, { @@ -32496,7 +29819,6 @@ "city": "Tokyo", "hostname": "jp6-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "4EhX6bW/gfcu75nPm9nyexX6cRZXN/RCt/TETfXF0jc=" }, { @@ -32511,7 +29833,6 @@ "city": "Tokyo", "hostname": "jp7-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "JYBVvOwWa3cbZrm3ZUWry3CgG6AxsSlxJv7H2yEsCjk=" }, { @@ -32526,7 +29847,6 @@ "city": "Tokyo", "hostname": "jp8-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "ATinKg0uacPxUhrxqjixcgksJ8coK8zP2Y9q0Hz4dnA=" }, { @@ -32541,7 +29861,6 @@ "city": "Tokyo", "hostname": "jp9-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "6qBkfoucP2xtTJo5hiXl+1b5pbAHPVMcbng/DIhJEiw=" }, { @@ -32555,8 +29874,7 @@ "country": "Latvia", "city": "Riga", "hostname": "lv-rix-001", - "isp": "Makonix", - "owned": false + "isp": "Makonix" }, { "vpn": "wireguard", @@ -32570,7 +29888,6 @@ "city": "Riga", "hostname": "lv1-wireguard", "isp": "Makonix", - "owned": false, "wgpubkey": "/4WK/eoCp0d2g3Vnd2D+0JVxcUVagZoZm0xg3bZpdgY=" }, { @@ -32584,8 +29901,7 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lu-lux-001", - "isp": "Evoluso", - "owned": false + "isp": "Evoluso" }, { "vpn": "openvpn", @@ -32598,8 +29914,7 @@ "country": "Luxembourg", "city": "Luxembourg", "hostname": "lu-lux-002", - "isp": "Evoluso", - "owned": false + "isp": "Evoluso" }, { "vpn": "wireguard", @@ -32613,7 +29928,6 @@ "city": "Luxembourg", "hostname": "lu1-wireguard", "isp": "Evoluso", - "owned": false, "wgpubkey": "nqb90SP3pY5kGjO0UetVv7PdOkZUEOh91Gmcf3LFRXc=" }, { @@ -32628,7 +29942,6 @@ "city": "Luxembourg", "hostname": "lu2-wireguard", "isp": "Evoluso", - "owned": false, "wgpubkey": "08lMToz0IbJfqNdybOrLJ+bGeyl28DuTaM80paWCrVg=" }, { @@ -32642,8 +29955,7 @@ "country": "Moldova", "city": "Chisinau", "hostname": "md-kiv-001", - "isp": "Trabia", - "owned": false + "isp": "Trabia" }, { "vpn": "wireguard", @@ -32657,7 +29969,6 @@ "city": "Chisinau", "hostname": "md1-wireguard", "isp": "Trabia", - "owned": false, "wgpubkey": "BQobp2UXHJguYGz06WWJGJV6QytNIZlgMwr6Joufhx8=" }, { @@ -32800,7 +30111,6 @@ "city": "Amsterdam", "hostname": "nl20-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "StMPmol1+QQQQCJyAkm7t+l/QYTKe5CzXUhw0I6VX14=" }, { @@ -32815,7 +30125,6 @@ "city": "Amsterdam", "hostname": "nl21-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "RodGkT2Xqiumwb7pg4WmiTjkZgJq0hW9okaJUyNBong=" }, { @@ -32830,7 +30139,6 @@ "city": "Amsterdam", "hostname": "nl22-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "xwANpTKjog2nflBgA+HWplQfUXgbvh+b4a53P83nmX0=" }, { @@ -32845,7 +30153,6 @@ "city": "Amsterdam", "hostname": "nl23-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "PaU5gPqZnj9XQ2csZK2oiyNz/cOUZM3yk6qHm67wbmA=" }, { @@ -32904,8 +30211,7 @@ "country": "New Zealand", "city": "Auckland", "hostname": "nz-akl-001", - "isp": "Intergrid", - "owned": false + "isp": "Intergrid" }, { "vpn": "wireguard", @@ -32919,7 +30225,6 @@ "city": "Auckland", "hostname": "nz1-wireguard", "isp": "Intergrid", - "owned": false, "wgpubkey": "fz9sSuR61ZqbFlI004lFBksGbw3U4KADy0Kvxhv5JyY=" }, { @@ -32934,7 +30239,6 @@ "city": "Auckland", "hostname": "nz2-wireguard", "isp": "Intergrid", - "owned": false, "wgpubkey": "kDVDjSME2WSxhEqOV6fkeNetTHv6tYWD8HNqHXCnESw=" }, { @@ -32949,7 +30253,6 @@ "city": "Skopje", "hostname": "mk1-wireguard", "isp": "Interspace", - "owned": false, "wgpubkey": "jJ6XV88Ba0olZqriq44Gga8uMH35FBlMEg/6AzZ02BI=" }, { @@ -33135,8 +30438,7 @@ "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-001", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33149,8 +30451,7 @@ "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-002", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33163,8 +30464,7 @@ "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-003", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33177,8 +30477,7 @@ "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-004", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33191,8 +30490,7 @@ "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-005", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33205,8 +30503,7 @@ "country": "Poland", "city": "Warsaw", "hostname": "pl-waw-006", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -33220,7 +30517,6 @@ "city": "Warsaw", "hostname": "pl1-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "p9FqkVuPmFXOta1CFn81m0HRgD+uic5UfLU0fQb3t00=" }, { @@ -33235,7 +30531,6 @@ "city": "Warsaw", "hostname": "pl2-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "9v9VK6f98rFS2iZvYxqTvNWeeT34EYn6TRRZqNC2MhU=" }, { @@ -33250,7 +30545,6 @@ "city": "Warsaw", "hostname": "pl3-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "VXt/spGVLruJ0m7aSkKWIIc5ktxS6wOg9dlNwDOKw0I=" }, { @@ -33265,7 +30559,6 @@ "city": "Warsaw", "hostname": "pl4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "fOEmuT2M++Qnk1riHmce8DCriSlO5G5BQZVmzK7tq2E=" }, { @@ -33280,7 +30573,6 @@ "city": "Lisbon", "hostname": "pt1-wireguard", "isp": "ptisp", - "owned": false, "wgpubkey": "xL7uaEPI7KV3aNPELKpGjVxBCq0yiAc376iS/MRDo3Y=" }, { @@ -33295,7 +30587,6 @@ "city": "Lisbon", "hostname": "pt2-wireguard", "isp": "ptisp", - "owned": false, "wgpubkey": "9fS+IEof6FztE6sdxuyq94PzB90obnggin4TuHEpLhY=" }, { @@ -33309,8 +30600,7 @@ "country": "Romania", "city": "Bucharest", "hostname": "ro-buh-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33323,8 +30613,7 @@ "country": "Romania", "city": "Bucharest", "hostname": "ro-buh-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33337,8 +30626,7 @@ "country": "Romania", "city": "Bucharest", "hostname": "ro-buh-103", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33351,8 +30639,7 @@ "country": "Romania", "city": "Bucharest", "hostname": "ro-buh-104", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -33366,7 +30653,6 @@ "city": "Bucharest", "hostname": "ro4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "NGG2LF66eJhGOKe77mfX9rzP81gAK45XRj05TVC79GU=" }, { @@ -33381,7 +30667,6 @@ "city": "Bucharest", "hostname": "ro5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "6hqbJrVJMv5a15d1zvJDw09bB1heRHHupc2GEmUsmGo=" }, { @@ -33396,7 +30681,6 @@ "city": "Bucharest", "hostname": "ro6-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "t1D8bGu6LN9Rtscxe5KtDl9Xfa3wFgj+Mpn+89onYD8=" }, { @@ -33411,7 +30695,6 @@ "city": "Bucharest", "hostname": "ro7-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "PBkAK/T6eQHrBTAvfeSngjNnwb8FvhwQ2FKXEQp5dgM=" }, { @@ -33425,8 +30708,7 @@ "country": "Serbia", "city": "Belgrade", "hostname": "rs-beg-002", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33439,8 +30721,7 @@ "country": "Serbia", "city": "Belgrade", "hostname": "rs-beg-003", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -33454,7 +30735,6 @@ "city": "Belgrade", "hostname": "rs3-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "9U+3Wxd6DLZ+p9q0OImYd5FeLYjs86DHO7wsEL04M2A=" }, { @@ -33469,7 +30749,6 @@ "city": "Belgrade", "hostname": "rs4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "XfYd3s53gcTH4TDL8aCu2sa88TAxuWBD7CcOHtlDmjw=" }, { @@ -33483,8 +30762,7 @@ "country": "Serbia", "city": "Nis", "hostname": "rs-ini-001", - "isp": "ninet", - "owned": false + "isp": "ninet" }, { "vpn": "openvpn", @@ -33497,8 +30775,7 @@ "country": "Singapore", "city": "Singapore", "hostname": "sg-sin-201", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -33512,7 +30789,6 @@ "city": "Singapore", "hostname": "sg4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "HbD3PLJKJdHPyjof67Tug83HH5x/KyInbiuPQvkOaDI=" }, { @@ -33527,7 +30803,6 @@ "city": "Singapore", "hostname": "sg5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "+B9zLO2t0vCxoLlrG3fhB8M1OQ/kOSr6VL81eP+AUXU=" }, { @@ -33542,7 +30817,6 @@ "city": "Singapore", "hostname": "sg6-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "FfjGK3hSDhCm8xWixKv2O4SbPcQEH9Vx2ykfEWEY7ho=" }, { @@ -33557,7 +30831,6 @@ "city": "Singapore", "hostname": "sg7-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "4KtYjALlkYH0xKW6AeUAhyznDAa5GKqDk8WHYso9/D8=" }, { @@ -33572,7 +30845,6 @@ "city": "Singapore", "hostname": "sg8-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "VxROoDxnI3XS5DBgXEucl+iEd964v//8p7dHGMWGbkE=" }, { @@ -33586,8 +30858,7 @@ "country": "Spain", "city": "Madrid", "hostname": "es-mad-001", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33600,8 +30871,7 @@ "country": "Spain", "city": "Madrid", "hostname": "es-mad-002", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33614,8 +30884,7 @@ "country": "Spain", "city": "Madrid", "hostname": "es-mad-003", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33628,8 +30897,7 @@ "country": "Spain", "city": "Madrid", "hostname": "es-mad-004", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -33642,8 +30910,7 @@ "country": "Spain", "city": "Madrid", "hostname": "es-mad-005", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -33657,7 +30924,6 @@ "city": "Madrid", "hostname": "es1-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "hDflDse0Nz7GsZ0q5uylWOJaJQ6woJPCGy8IvTXKjzo=" }, { @@ -33672,7 +30938,6 @@ "city": "Madrid", "hostname": "es2-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "fMYx8zLs1oBQvXtkdpdCwhy0UUx9QhbF0kaXp1QJJSY=" }, { @@ -33687,7 +30952,6 @@ "city": "Madrid", "hostname": "es4-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Bnrn99Enx6mxeZO77+DanSMhAXi7EHazFUwGmFL2VCo=" }, { @@ -33702,7 +30966,6 @@ "city": "Madrid", "hostname": "es5-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "/u0n1ETjberX5jYv0W94zLvX5Qzn+pPL/8umey/iIlE=" }, { @@ -34717,8 +31980,7 @@ "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-202", - "isp": "PrivateLayer", - "owned": false + "isp": "PrivateLayer" }, { "vpn": "openvpn", @@ -34731,8 +31993,7 @@ "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-301", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -34745,8 +32006,7 @@ "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-302", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -34759,8 +32019,7 @@ "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-303", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -34773,8 +32032,7 @@ "country": "Switzerland", "city": "Zurich", "hostname": "ch-zrh-304", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -34788,7 +32046,6 @@ "city": "Zurich", "hostname": "ch10-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "rDsfCGsgT2feNo8waMiSF5LiIqYe8GM2XYB0k0o9A2o=" }, { @@ -34803,7 +32060,6 @@ "city": "Zurich", "hostname": "ch11-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Cq72XZa39jAkxcS49RqiDX7m76BX75HsZ3DLwDushhs=" }, { @@ -34818,7 +32074,6 @@ "city": "Zurich", "hostname": "ch12-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "9lseA1xnIVPzTizHYEkcnfvAt7e9kW2D1k5dX05lak8=" }, { @@ -34833,7 +32088,6 @@ "city": "Zurich", "hostname": "ch13-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "68OCxVdQLk9wtE2Bcag2+Yo3X8jb+raKXxHdCUamaiM=" }, { @@ -34848,7 +32102,6 @@ "city": "Zurich", "hostname": "ch14-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "s+gmJDvPmOPJkCYaXE2qydVnnM5vvQsazGLxnVW/GQM=" }, { @@ -34863,7 +32116,6 @@ "city": "Zurich", "hostname": "ch15-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "jLddqPJjcG0nGagLsJwxGWWkKcS0GwQgiEZL7iX/n0E=" }, { @@ -34878,7 +32130,6 @@ "city": "Zurich", "hostname": "ch16-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "wGY+iakQnz4nJIPBf8X/ahRqB8qL5/GHxEvCw80Kjkc=" }, { @@ -34893,7 +32144,6 @@ "city": "Zurich", "hostname": "ch17-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "4cr4WJxUbl5EqayrN2EecNROHjiXGkZKEProFeyaPWo=" }, { @@ -34908,7 +32158,6 @@ "city": "Zurich", "hostname": "ch2-wireguard", "isp": "PrivateLayer", - "owned": false, "wgpubkey": "bmy9vGzMqc0yS3IiMMyOONyXRwPCMiyhR/bnNQ2LsCE=" }, { @@ -35109,8 +32358,7 @@ "country": "UK", "city": "London", "hostname": "gb-lon-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -35123,8 +32371,7 @@ "country": "UK", "city": "London", "hostname": "gb-lon-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -35213,7 +32460,6 @@ "city": "London", "hostname": "gb16-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "OLqqtEra8OCMZ9mvI9attDHly+wFVU+j/g47GvgpDAY=" }, { @@ -35228,7 +32474,6 @@ "city": "London", "hostname": "gb17-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "9ERbjhPKAITbf5J8NPXlyrJeeBzAJ7TlxKVAV4Cf+iA=" }, { @@ -35243,7 +32488,6 @@ "city": "London", "hostname": "gb18-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "4CO8lBJQ+iyP7wtsn41oxTWvAWZlOYqdM4oAabpwslw=" }, { @@ -35258,7 +32502,6 @@ "city": "London", "hostname": "gb19-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "rRfIbGqzAgcIivBVAu0oQgZUvCoQTLQDKC3I1l5ZUVA=" }, { @@ -35273,7 +32516,6 @@ "city": "London", "hostname": "gb20-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Kt7nO9EG5CpRJ8ga56gnmcP4K/dr87xtpMOtpj1GtEs=" }, { @@ -35288,7 +32530,6 @@ "city": "London", "hostname": "gb33-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "b71Y8V/vVwNRGkL4d1zvApDVL18u7m31dN+x+i5OJVs=" }, { @@ -35303,7 +32544,6 @@ "city": "London", "hostname": "gb34-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "+iQWuT3wb2DCy1u2eUKovhJTCB4aUdJUnpxGtONDIVE=" }, { @@ -35318,7 +32558,6 @@ "city": "London", "hostname": "gb35-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "G7XDQqevQOw1SVL7Iarn9PM+RvmI6H/CfkmahBYEG0g=" }, { @@ -35333,7 +32572,6 @@ "city": "London", "hostname": "gb36-wireguard", "isp": "xtom", - "owned": false, "wgpubkey": "tJVHqpfkV2Xgmd4YK60aoErSt6PmJKJjkggHNDfWwiU=" }, { @@ -35377,8 +32615,7 @@ "country": "UK", "city": "Manchester", "hostname": "gb-mnc-101", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -35391,8 +32628,7 @@ "country": "UK", "city": "Manchester", "hostname": "gb-mnc-102", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -35405,8 +32641,7 @@ "country": "UK", "city": "Manchester", "hostname": "gb-mnc-103", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -35419,8 +32654,7 @@ "country": "UK", "city": "Manchester", "hostname": "gb-mnc-106", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -35434,7 +32668,6 @@ "city": "Manchester", "hostname": "gb22-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "BDTfnJvtHlh15E54kLYHJlZBL5yXkEQlC0AtOyDXNRU=" }, { @@ -35449,7 +32682,6 @@ "city": "Manchester", "hostname": "gb24-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "vWFuRUwBf6AtDtN8ZqygEgGrfDhoQ7s+FOPKcTwInU8=" }, { @@ -35464,7 +32696,6 @@ "city": "Manchester", "hostname": "gb25-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "HAsZqzSSc9sxOTfpV6PQg0ll8rRn0IzRNdyGL/Vq+X0=" }, { @@ -35479,7 +32710,6 @@ "city": "Manchester", "hostname": "gb26-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "oSsZE1FGG+KbUHCBgT84RkSOhkZfUBKLPcF9SNL9yCY=" }, { @@ -35494,7 +32724,6 @@ "city": "Manchester", "hostname": "gb27-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "MFY3o3SFgAsTRL0EVAfvFU0qxQ2GWLdtE1xTsk87w1U=" }, { @@ -35509,7 +32738,6 @@ "city": "Manchester", "hostname": "gb28-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "6cp7iV7x3DGcvcfL83VohcMu5BYaJOo9b1ffC/4L31Q=" }, { @@ -35524,7 +32752,6 @@ "city": "Manchester", "hostname": "gb29-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "uaBPua4Tnbluy51WbNOahHx77RGJFGRr/MAqWFILJhI=" }, { @@ -35539,7 +32766,6 @@ "city": "Manchester", "hostname": "gb30-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "/XJ5QVlczjYpsYj7acmoXu+17PRkY68NYUx1jk7dvyY=" }, { @@ -35554,7 +32780,6 @@ "city": "Manchester", "hostname": "gb31-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "+tcSmB5oL9s+eIRl33hFKH+qAJVG9t42cfym7WzRMB0=" }, { @@ -35569,7 +32794,6 @@ "city": "Manchester", "hostname": "gb32-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "u/CMY/BfJDTQk6n7WXbhHvM7LUvHIqJRuzGk0V8y/U8=" }, { @@ -35583,8 +32807,7 @@ "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-101", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -35597,8 +32820,7 @@ "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-102", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -35611,8 +32833,7 @@ "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-103", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -35625,8 +32846,7 @@ "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-104", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -35639,8 +32859,7 @@ "country": "USA", "city": "Atlanta GA", "hostname": "us-atl-105", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "wireguard", @@ -35654,7 +32873,6 @@ "city": "Atlanta GA", "hostname": "us167-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "Qnb4cyMyHnrQlXUZ8YHh6UPYktfFaGeimjznPaZCpBY=" }, { @@ -35669,7 +32887,6 @@ "city": "Atlanta GA", "hostname": "us168-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "pg4kotnWL9a3BahNti+vFBvficl1o4iZ/+t35pbsPgY=" }, { @@ -35684,7 +32901,6 @@ "city": "Atlanta GA", "hostname": "us169-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "clLbW98O5wGCAf8E/H/uAW3n7orhY3bQO+cNxOCedzw=" }, { @@ -35699,7 +32915,6 @@ "city": "Atlanta GA", "hostname": "us170-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "KOenblckGztqhbgUGFCagR8qDDtIX2/RIGRDmEBjxGM=" }, { @@ -35714,7 +32929,6 @@ "city": "Atlanta GA", "hostname": "us171-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "UpNcVbTDbcOYfcGqDT52M2OR9RPI1HcQFrbXUPEIpT4=" }, { @@ -35729,7 +32943,6 @@ "city": "Atlanta GA", "hostname": "us172-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "j2Bac2450sZJyeeBTo8YQkdIFiPwwx8PSPxqkXSDN34=" }, { @@ -35744,7 +32957,6 @@ "city": "Atlanta GA", "hostname": "us173-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "o3YKd2Hn//+R8r0vdE2DMSgnLleARo8DvjMM7XjzFQw=" }, { @@ -35759,7 +32971,6 @@ "city": "Atlanta GA", "hostname": "us174-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "XgXzdXuzqeMBlM3p56j6kogTPkKYXkBfIM5WkmjEXws=" }, { @@ -35774,7 +32985,6 @@ "city": "Atlanta GA", "hostname": "us175-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "dVF4vhm2wGsfNjvX+5CsgTSPp70YjHbtYe+8uhWVzBA=" }, { @@ -35789,7 +32999,6 @@ "city": "Atlanta GA", "hostname": "us176-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "Cx/hhbSGCLO3fwm8vU2c81CRziEU7pF8aEkAcPClG0A=" }, { @@ -35804,7 +33013,6 @@ "city": "Atlanta GA", "hostname": "us233-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "yDcjCWN7PhjG8tra/2Y3SmXhwAsPhVa8hsiFBJqpyis=" }, { @@ -35819,7 +33027,6 @@ "city": "Atlanta GA", "hostname": "us234-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "CTObFSK15M3u1de40b2PNxN3em8h1lLtMrZxoS24gH4=" }, { @@ -35834,7 +33041,6 @@ "city": "Atlanta GA", "hostname": "us242-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "1M3QArbXAoYqoUz9KV3Wuyb8iLLl6J/GMazUnjC8xmo=" }, { @@ -35849,7 +33055,6 @@ "city": "Atlanta GA", "hostname": "us243-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "5pIIPfnc2GtlcIanhmt+nkQiYC3ERc/q+EFbBHAZfQU=" }, { @@ -35863,8 +33068,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-001", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35877,8 +33081,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-002", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35891,8 +33094,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-003", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35905,8 +33107,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-004", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35919,8 +33120,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-005", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35933,8 +33133,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-006", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35947,8 +33146,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-007", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35961,8 +33159,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-008", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35975,8 +33172,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-009", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -35989,8 +33185,7 @@ "country": "USA", "city": "Chicago IL", "hostname": "us-chi-010", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "wireguard", @@ -36004,7 +33199,6 @@ "city": "Chicago IL", "hostname": "us128-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "6S4lS+ShQOI0BHMunSiuM++0gy+o+jtpHx9pbJ5XeFk=" }, { @@ -36019,7 +33213,6 @@ "city": "Chicago IL", "hostname": "us129-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "dr0ORuPoV9TYY6G5cM00cOoO72wfUC7Lmni7+Az9m0Y=" }, { @@ -36034,7 +33227,6 @@ "city": "Chicago IL", "hostname": "us130-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "VY5Dos3WeCyI1Jb8Z+KhB4YlEKZmrQeSNcP0WCrzk2I=" }, { @@ -36049,7 +33241,6 @@ "city": "Chicago IL", "hostname": "us131-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "Na8m5Z3O6kwtLFPsign+JPlLoFm/Q3eBdIMI08psSzg=" }, { @@ -36064,7 +33255,6 @@ "city": "Chicago IL", "hostname": "us132-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "X50kEMmdPc50SYWFaDFNOAMzUYnCZv3rxzw2Y6BqOyk=" }, { @@ -36079,7 +33269,6 @@ "city": "Chicago IL", "hostname": "us133-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "01KgzQY+pT7Q+GPUa1ijj0YgdN5owMaK9ViRZO4dIWo=" }, { @@ -36094,7 +33283,6 @@ "city": "Chicago IL", "hostname": "us18-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "J7kRI51rpEiFy3HMxXS6azAhvdOqAbvLKwiDI8SyKU0=" }, { @@ -36109,7 +33297,6 @@ "city": "Chicago IL", "hostname": "us231-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "tZzQt3tfqG+yZlvbcqPuUtwM23mKiI7ncNnKV8/+7xM=" }, { @@ -36124,7 +33311,6 @@ "city": "Chicago IL", "hostname": "us232-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "Ou6ayqTmV9H8rf2waNbaJKsGCRy4NjcvCZjgJPvtx0Y=" }, { @@ -36138,8 +33324,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-101", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -36152,8 +33337,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-102", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -36166,8 +33350,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-103", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -36180,8 +33363,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-104", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -36194,8 +33376,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-105", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -36208,8 +33389,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-201", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36222,8 +33402,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-202", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36236,8 +33415,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-203", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36250,8 +33428,7 @@ "country": "USA", "city": "Dallas TX", "hostname": "us-dal-204", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -36265,7 +33442,6 @@ "city": "Dallas TX", "hostname": "us143-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "ys1/HwvP8ajGFVUooMA4CjE11QGqZUCdcO0uw7pxm3c=" }, { @@ -36280,7 +33456,6 @@ "city": "Dallas TX", "hostname": "us144-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "oLDrbdUAs51AAA9TjFnSvmmfV85dp2ZWFqr29P2HxzM=" }, { @@ -36295,7 +33470,6 @@ "city": "Dallas TX", "hostname": "us145-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "MXSRliYAgPs3/BKO0pxLCDz4wTCQ4cafj02J1LriBj4=" }, { @@ -36310,7 +33484,6 @@ "city": "Dallas TX", "hostname": "us146-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Dp5YVZ7Zxa/PM5fIXa1RA9vdz8hB/IaI5H7cSP7ByFk=" }, { @@ -36325,7 +33498,6 @@ "city": "Dallas TX", "hostname": "us147-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Q/slQ6Agjqp6iNvfbTGyz7CXv/LgsK4XnJil7UE60ng=" }, { @@ -36340,7 +33512,6 @@ "city": "Dallas TX", "hostname": "us148-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "yK1wfMTkMbksuR7+rlEbkq6mk5wsdyIJYSD9fB/htnA=" }, { @@ -36355,7 +33526,6 @@ "city": "Dallas TX", "hostname": "us149-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "vh34NFVrwEKbmX+Rqy5xKyQ81unOWLb0DpYXSGHLxyk=" }, { @@ -36370,7 +33540,6 @@ "city": "Dallas TX", "hostname": "us150-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "bigXstWXYiY7BznqpvHr40hyhcAXCyDsajLJ+HxRTk8=" }, { @@ -36385,7 +33554,6 @@ "city": "Dallas TX", "hostname": "us151-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "RRQAnqeXwqxhltKBEFWdg9nwoPraRMvr7LIE91kg+zg=" }, { @@ -36400,7 +33568,6 @@ "city": "Dallas TX", "hostname": "us152-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "fymKfaPctNpWCfC4xGl9UjZQ4bvEXT6GTK1+7DtVYBk=" }, { @@ -36415,7 +33582,6 @@ "city": "Dallas TX", "hostname": "us153-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "GYU0qZ/in7Bw9mxgQw1z5hAuTbXF8Tt8rGyAD7rA0Ho=" }, { @@ -36430,7 +33596,6 @@ "city": "Dallas TX", "hostname": "us154-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "AFmZ9bQhiP4yCbAddJTpxbzF/IWlNgjrzN0OqqCE6A8=" }, { @@ -36445,7 +33610,6 @@ "city": "Dallas TX", "hostname": "us17-wireguard", "isp": "Serverhub", - "owned": false, "wgpubkey": "XihrmIgj3/yCGr/NW0wNJm9haS3FQl6p5MvSB8mWdjc=" }, { @@ -36460,7 +33624,6 @@ "city": "Dallas TX", "hostname": "us235-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "/eAFrbWF72bLtQC0u0p8q/NXYq6dwrst4ZXuSx9HXHE=" }, { @@ -36475,7 +33638,6 @@ "city": "Dallas TX", "hostname": "us236-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "H7CKyeh+CpwMJyeY5s203PUEYqqTiZyp7ukdfczWKj8=" }, { @@ -36490,7 +33652,6 @@ "city": "Dallas TX", "hostname": "us240-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "VVf5qgLmmhs+7pLYq1cpKDx4SoaR9/tDK8tIWeFHtXc=" }, { @@ -36505,7 +33666,6 @@ "city": "Dallas TX", "hostname": "us30-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "RW+wwTv4BqRNbHPZFcIwl74f9kuRQlFLxnaocpMyKgw=" }, { @@ -36520,7 +33680,6 @@ "city": "Dallas TX", "hostname": "us31-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "jByGGMuJ53aax6Kvo5CTL7Bz2e9ZglFgHbC6IOoux2o=" }, { @@ -36535,7 +33694,6 @@ "city": "Dallas TX", "hostname": "us32-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "jHxY2OKpxjqAwWH4r1Pb2K6xDUDt087ivxpM1KpE0Ec=" }, { @@ -36550,7 +33708,6 @@ "city": "Dallas TX", "hostname": "us33-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "d0QX/luq22c8W+SEeegfI02NL1gCg7F6HSZFiDZK4k8=" }, { @@ -36565,7 +33722,6 @@ "city": "Dallas TX", "hostname": "us34-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "GCfWfE0241Hj8oSZIDQzk9VsLVC5VQ3MgFAEdhepNyA=" }, { @@ -36580,7 +33736,6 @@ "city": "Dallas TX", "hostname": "us35-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "sUve70TE2F3AaSGRPjN5aYr4um9OlKlIbnDw/2Ab8xg=" }, { @@ -36595,7 +33750,6 @@ "city": "Dallas TX", "hostname": "us36-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "fb9f0n73/qk9wvQQ9ufo7EZmeIH9bxmjETLdetuMyz8=" }, { @@ -36610,7 +33764,6 @@ "city": "Dallas TX", "hostname": "us37-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "smo7KmPLfKStrAlIwU5Vmr2aCD/UNUfR6LrUAraY3jY=" }, { @@ -36625,7 +33778,6 @@ "city": "Dallas TX", "hostname": "us38-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "EWuW/w7GpnxKdl0sr+dfxJ3DTxjMN6JWs/GR6OIzgB4=" }, { @@ -36640,7 +33792,6 @@ "city": "Dallas TX", "hostname": "us39-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "fjO/un6d9DFtxjhwbe8cMohORIgbPFN0WgLw/LdHoRg=" }, { @@ -36654,8 +33805,7 @@ "country": "USA", "city": "Denver CO", "hostname": "us-den-001", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -36668,8 +33818,7 @@ "country": "USA", "city": "Denver CO", "hostname": "us-den-003", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "wireguard", @@ -36683,7 +33832,6 @@ "city": "Denver CO", "hostname": "us10-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "dEtwYUFPV0pF7MWJpzo+AixB2CdEIXxBQcQg1ljQkVo=" }, { @@ -36698,7 +33846,6 @@ "city": "Denver CO", "hostname": "us11-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "/oMM8Z3svzY5wteCZPL111XjfaJvek/8s+PkUmvDIHs=" }, { @@ -36713,7 +33860,6 @@ "city": "Denver CO", "hostname": "us12-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "fBVnH5KCfh1tCYzRlMusbUDLK1IswpE984JCLY3jQCA=" }, { @@ -36728,7 +33874,6 @@ "city": "Denver CO", "hostname": "us44-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "Cbcd0TNfEsI45BFzJO8mK9uF2mjGSiXPfF+EwOQSy0Y=" }, { @@ -36743,7 +33888,6 @@ "city": "Denver CO", "hostname": "us45-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "9xreD+7LFgwE74vlpqDOqJzXg5BCCi7Qk4QiAzAMyXs=" }, { @@ -36758,7 +33902,6 @@ "city": "Denver CO", "hostname": "us46-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "49D0pBK50sOxNXURjkoAQHZYDGmhGXWcSx9y7p7BWyU=" }, { @@ -36773,7 +33916,6 @@ "city": "Denver CO", "hostname": "us47-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "Hp5qr3VmbPdD6vV8N1RPxasaES6RxRkMAnPr30bUdlw=" }, { @@ -36787,8 +33929,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-002", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36801,8 +33942,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-003", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36815,8 +33955,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-004", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36829,8 +33968,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-005", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36843,8 +33981,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-006", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36857,8 +33994,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-007", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36871,8 +34007,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-008", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36885,8 +34020,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-009", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36899,8 +34033,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-010", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36913,8 +34046,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-011", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36927,8 +34059,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-012", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36941,8 +34072,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-013", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36955,8 +34085,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-014", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36969,8 +34098,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-015", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -36983,8 +34111,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-101", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -36997,8 +34124,7 @@ "country": "USA", "city": "Los Angeles CA", "hostname": "us-lax-102", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "wireguard", @@ -37012,7 +34138,6 @@ "city": "Los Angeles CA", "hostname": "us229-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "7cwtRG3gRwDSxLjqD1XAyE1X4TKHZeaSgS+TU3yg4AE=" }, { @@ -37027,7 +34152,6 @@ "city": "Los Angeles CA", "hostname": "us230-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "1zHPMv8F6LCvud0WcSfsWFqDKGoW5uXxrVMgMftNYmw=" }, { @@ -37042,7 +34166,6 @@ "city": "Los Angeles CA", "hostname": "us239-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "JQm2SMisUZtMvaS9dC9Jfrbs0CUizWPKhHiiykJnsDs=" }, { @@ -37057,7 +34180,6 @@ "city": "Los Angeles CA", "hostname": "us48-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "MC86xeCKt9p7wmeRVzP5uW1wMHMQQ6C3zcIj0GHRH0U=" }, { @@ -37072,7 +34194,6 @@ "city": "Los Angeles CA", "hostname": "us49-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "MyHeQad1Ls+uDIo1sQh1wJi0HnkNcB93/UDhCvJgSQY=" }, { @@ -37087,7 +34208,6 @@ "city": "Los Angeles CA", "hostname": "us50-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "Wamqk6xVi4JyGOoVfupt+yZzwlw+D1AuCqaeJ5BEJA0=" }, { @@ -37102,7 +34222,6 @@ "city": "Los Angeles CA", "hostname": "us51-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "tuUArWyYDE785bvmkAwjWkxTZYa5ga+33m8GEfsolQU=" }, { @@ -37117,7 +34236,6 @@ "city": "Los Angeles CA", "hostname": "us52-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "0iaEZviiUACDQ9fijhXPPIgZr7HxgYzwuW/KDg0jZDQ=" }, { @@ -37132,7 +34250,6 @@ "city": "Los Angeles CA", "hostname": "us53-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "3CkVF922uY4xAZBfgRQq3U1mwr24uJlXxvLc3gsHgwA=" }, { @@ -37147,7 +34264,6 @@ "city": "Los Angeles CA", "hostname": "us54-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "dYmbNr7Dp4m0u5RQMcNAJrzE6nch8LQZYKX+s2dMnjs=" }, { @@ -37162,7 +34278,6 @@ "city": "Los Angeles CA", "hostname": "us55-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "UdS9GBs0EtvPe+P51SacTRqpj/2PLtiI82510Zz6cTA=" }, { @@ -37177,7 +34292,6 @@ "city": "Los Angeles CA", "hostname": "us56-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "hbVECYaoa1t5FuiM5S1uTGVaGadYDfre478Oh9Crkyc=" }, { @@ -37192,7 +34306,6 @@ "city": "Los Angeles CA", "hostname": "us57-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "xUBnJ4rQNo8zrbGlFLnFogi/ZQKKNjXJD3Kz/YPCDD4=" }, { @@ -37207,7 +34320,6 @@ "city": "Los Angeles CA", "hostname": "us58-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "t5jurRQzlV1JL8y6w0wyLdG4S9p2ice/VQ1YqghE2RY=" }, { @@ -37222,7 +34334,6 @@ "city": "Los Angeles CA", "hostname": "us59-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "hbZzut9clpSR1ryMFcsX53Flq8vccXqG4FoHFnb3EDQ=" }, { @@ -37237,7 +34348,6 @@ "city": "Los Angeles CA", "hostname": "us60-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "/NKEAnIB2uTUG7K0bvb+zd6HPqay1tzz0cNrv8nngRQ=" }, { @@ -37252,7 +34362,6 @@ "city": "Los Angeles CA", "hostname": "us61-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "PEIvhnDtxI7hrvAO/QXoeiO/u2w9SI8s3a0ahZ12CBs=" }, { @@ -37267,7 +34376,6 @@ "city": "Los Angeles CA", "hostname": "us62-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "yuITCrm6C98a6uhpYz9njQr0cqghADkrJvw/Me8dlS4=" }, { @@ -37282,7 +34390,6 @@ "city": "Los Angeles CA", "hostname": "us63-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "eLJO1DIrQ1wI4NCVbsBzAKMi8T0D3I5feYLXjdgRpTc=" }, { @@ -37297,7 +34404,6 @@ "city": "Los Angeles CA", "hostname": "us64-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "J/ho14X87UdfahnH6m+StgazV92je4HiUQ3je6j+W2E=" }, { @@ -37312,7 +34418,6 @@ "city": "Los Angeles CA", "hostname": "us65-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "cHI6R/6RHJlyLZYzRw2HRNJwtgmuBRDRP5Dbwaws3zo=" }, { @@ -37327,7 +34432,6 @@ "city": "Los Angeles CA", "hostname": "us66-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "bGQd5D0DEfTNPkU5yYY7tZ4nr0AgdPX87krGv1cm4yQ=" }, { @@ -37342,7 +34446,6 @@ "city": "Los Angeles CA", "hostname": "us67-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "jzimocgM4cWW3V+WN5uc8mxO5k97vAwbuGalz4s12U4=" }, { @@ -37357,7 +34460,6 @@ "city": "Los Angeles CA", "hostname": "us68-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "TyZ5tCLvOyHbiNYiySZ4h4Mcyt1BLnGy5MXaaggKvVU=" }, { @@ -37372,7 +34474,6 @@ "city": "Los Angeles CA", "hostname": "us69-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "bVRtvE1WQQmAjnC1BybSXz2r9VHLp9DKwsEZ3UzELjg=" }, { @@ -37387,7 +34488,6 @@ "city": "Los Angeles CA", "hostname": "us70-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "mQOWxQ1I5KlZh+f1g3C870r32TmDj3eGAsb5s+K75Gw=" }, { @@ -37402,7 +34502,6 @@ "city": "Los Angeles CA", "hostname": "us71-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "my8fkG14VylzBgeyctdppk9eMc+o5gZBpkJHbYmq7RQ=" }, { @@ -37416,8 +34515,7 @@ "country": "USA", "city": "Miami FL", "hostname": "us-mia-201", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37430,8 +34528,7 @@ "country": "USA", "city": "Miami FL", "hostname": "us-mia-202", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37444,8 +34541,7 @@ "country": "USA", "city": "Miami FL", "hostname": "us-mia-203", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37458,8 +34554,7 @@ "country": "USA", "city": "Miami FL", "hostname": "us-mia-204", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37472,8 +34567,7 @@ "country": "USA", "city": "Miami FL", "hostname": "us-mia-205", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37486,8 +34580,7 @@ "country": "USA", "city": "Miami FL", "hostname": "us-mia-206", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -37501,7 +34594,6 @@ "city": "Miami FL", "hostname": "us155-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "c2ifgyT1M41zbFEaSCbeLY033u/RurG5eJKYHZOMrBE=" }, { @@ -37516,7 +34608,6 @@ "city": "Miami FL", "hostname": "us156-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "GMBXSH/CBSxkz1TptnYTwQO/ilEXherAicOaD/O/p0c=" }, { @@ -37531,7 +34622,6 @@ "city": "Miami FL", "hostname": "us157-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "EhxJ+GqKZq3CCU4cd15A7TelT2ejWvsJuNI8NqCB+io=" }, { @@ -37546,7 +34636,6 @@ "city": "Miami FL", "hostname": "us158-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "sMDULNyxlCjepgfB83cw2fYQIYT96jnrs22mtYevfCE=" }, { @@ -37561,7 +34650,6 @@ "city": "Miami FL", "hostname": "us159-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Xottq8FZOISCWMfJNapyVEA3dvKpmZ00L6wPeljGOWc=" }, { @@ -37576,7 +34664,6 @@ "city": "Miami FL", "hostname": "us160-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "jxKlvTobgX32KYjSuLYb1Fm7gU1skslm3DatfxQCOl4=" }, { @@ -37591,7 +34678,6 @@ "city": "Miami FL", "hostname": "us161-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "SYM77EPyWfOIK9CSJyuZ4mnGf17NLmj1i8VhWRbgPCs=" }, { @@ -37606,7 +34692,6 @@ "city": "Miami FL", "hostname": "us162-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "VM0nmizpRkwPOKmIzgBGm0fbfZfMkZa6q/YvUtWz8V4=" }, { @@ -37621,7 +34706,6 @@ "city": "Miami FL", "hostname": "us163-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "CIPpa9aYSN+KdwdLpIOxBP0egzdUFzDGUAmwzGZGoGY=" }, { @@ -37636,7 +34720,6 @@ "city": "Miami FL", "hostname": "us164-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "iUpEL5CW9iTVR+NPWnd4DUAD5YaT6x1fKJl8uCa/xhE=" }, { @@ -37651,7 +34734,6 @@ "city": "Miami FL", "hostname": "us165-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "AhxM2YMzknN6/yeIsNluflHQYyGPVHX+RAztHHzwek0=" }, { @@ -37666,7 +34748,6 @@ "city": "Miami FL", "hostname": "us166-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "6n/1JcWj8udnJkPvrbpbY6sp6v/HPHSXsVNaTxZ3A0E=" }, { @@ -37681,7 +34762,6 @@ "city": "Miami FL", "hostname": "us225-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "6q3NHk1BBbh70HkONto2l4kCVY7z2KPi0Ysgb+ukKTg=" }, { @@ -37696,7 +34776,6 @@ "city": "Miami FL", "hostname": "us226-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "ptTRC3Nk3DFXlh6987CMwTGOAQyk00Ki7fs+aPmHFEs=" }, { @@ -37710,8 +34789,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-101", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -37724,8 +34802,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-102", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -37738,8 +34815,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-201", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37752,8 +34828,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-202", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37766,8 +34841,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-203", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37780,8 +34854,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-204", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37794,8 +34867,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-205", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37808,8 +34880,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-206", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37822,8 +34893,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-207", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37836,8 +34906,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-208", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37850,8 +34919,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-209", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37864,8 +34932,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-211", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37878,8 +34945,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-212", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37892,8 +34958,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-213", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37906,8 +34971,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-214", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37920,8 +34984,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-215", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37934,8 +34997,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-216", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37948,8 +35010,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-217", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "openvpn", @@ -37962,8 +35023,7 @@ "country": "USA", "city": "New York NY", "hostname": "us-nyc-218", - "isp": "M247", - "owned": false + "isp": "M247" }, { "vpn": "wireguard", @@ -37977,7 +35037,6 @@ "city": "New York NY", "hostname": "us101-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "iuFDwOiNNnWfTmtprPCLscUjonu+KKfXu39TL/SSzh4=" }, { @@ -37992,7 +35051,6 @@ "city": "New York NY", "hostname": "us102-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "w/wxejfsFw2YFSYohzUB+Avtw0nW9RAkQjQyLExcfB0=" }, { @@ -38007,7 +35065,6 @@ "city": "New York NY", "hostname": "us103-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "dl5Xf/oCHVDVnzzb5i1/NyAct191DT5qqRtOAJZpOlw=" }, { @@ -38022,7 +35079,6 @@ "city": "New York NY", "hostname": "us104-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "7gzFk0q3W/GOUhBRQ/CVaUfYUw4jnH4o83+Q7mRPRFY=" }, { @@ -38037,7 +35093,6 @@ "city": "New York NY", "hostname": "us105-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "f2C9CzsFx3nJii34l7i7pXMdpzp9cHEpkCZ3es+S+V4=" }, { @@ -38052,7 +35107,6 @@ "city": "New York NY", "hostname": "us106-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "vyMlF2Un/Fr1hJC3iYYvyaq1oaVMziCNAhZYkSjbylM=" }, { @@ -38067,7 +35121,6 @@ "city": "New York NY", "hostname": "us107-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "EZGBydcOeP/lS3jXfkVohMG78z9qUx4SqLFQVMONSSM=" }, { @@ -38082,7 +35135,6 @@ "city": "New York NY", "hostname": "us108-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "Sq5u3QIxgLGvoo9sCv5revDYTNKcGFzmeip4DnKcpCE=" }, { @@ -38097,7 +35149,6 @@ "city": "New York NY", "hostname": "us110-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "tT4SYF5SX0U9nVjC/9HWIqrvixReJCgkqawvk2CJiW8=" }, { @@ -38112,7 +35163,6 @@ "city": "New York NY", "hostname": "us111-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "r03nZ+5rVtqatadUs783W1LU6WInJlpbjW3r8E2MPzo=" }, { @@ -38127,7 +35177,6 @@ "city": "New York NY", "hostname": "us112-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "K2chJLdNAgSOLlBXA3aHDwKxxpPaqcgp6XGN8yRYPl8=" }, { @@ -38142,7 +35191,6 @@ "city": "New York NY", "hostname": "us113-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "IJ4cae+w9SuGUmYbkH1jwnTCQ6bbphUG2cM1UpP96Ek=" }, { @@ -38157,7 +35205,6 @@ "city": "New York NY", "hostname": "us114-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "OjMVxFNSRjZC5dwCU+hK6oEGOF9rZBE3GbJ7Y1CkFmM=" }, { @@ -38172,7 +35219,6 @@ "city": "New York NY", "hostname": "us115-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "HfvVMtGke52M9yqqQvuIEwd0NxXAfe0ZqgHLPqT9ShE=" }, { @@ -38187,7 +35233,6 @@ "city": "New York NY", "hostname": "us116-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "sIB3ajbcYSGYby0JJO7l8zjZMm/FbqHZh620Ln4spTQ=" }, { @@ -38202,7 +35247,6 @@ "city": "New York NY", "hostname": "us117-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "gW5zLgLNCtypRmHfeSIHN5j1SS7ymoUqjt7YBhVWZkg=" }, { @@ -38217,7 +35261,6 @@ "city": "New York NY", "hostname": "us118-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "jaJS7IFuOco51K89tEkrabi80CC4gOdf+1y8NjWFw30=" }, { @@ -38232,7 +35275,6 @@ "city": "New York NY", "hostname": "us119-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "3akIB2iC31EHstfYVYILp6l6kavjnZ8a66xAxujHNF4=" }, { @@ -38247,7 +35289,6 @@ "city": "New York NY", "hostname": "us120-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "WNAKxc1A0oHd2CwxBhsbErLYxIau28YuRp9f3QUtUkA=" }, { @@ -38262,7 +35303,6 @@ "city": "New York NY", "hostname": "us121-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "hbLv5Ec+ebWkLfpMkrfQi3yBZt+QtzUM73A21/KsXDk=" }, { @@ -38277,7 +35317,6 @@ "city": "New York NY", "hostname": "us122-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "xGN1FCQVDNywOx6124UCdh2Us1iBu/2FzVNhVOjJMj4=" }, { @@ -38292,7 +35331,6 @@ "city": "New York NY", "hostname": "us123-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "btzdd6JSFFCnkmCd49zXWrIDEo1wZvxLSfqvF2eilX0=" }, { @@ -38307,7 +35345,6 @@ "city": "New York NY", "hostname": "us124-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "PHYy+c8lDKwU1A2LYw6mZKXOuxR2+6DPrBv4hd9auSA=" }, { @@ -38322,7 +35359,6 @@ "city": "New York NY", "hostname": "us125-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "J8QaV8tZyFBrb9atVg3mI2Vb3/DtWVJSHFYSrdy6w2w=" }, { @@ -38337,7 +35373,6 @@ "city": "New York NY", "hostname": "us126-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "gBNBBb4vgJG4NX0/nCs8bdkVshQGadVA8YTHr+0+aFo=" }, { @@ -38352,7 +35387,6 @@ "city": "New York NY", "hostname": "us127-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "aUn8FOe9q2LSm41mi9b4VXTIOISaDT4hfUqDnzk4Jk0=" }, { @@ -38367,7 +35401,6 @@ "city": "New York NY", "hostname": "us72-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "+/HYwELAaww6XTtPmvf3Hr8NqLIr69YNUpAMBvWJiGw=" }, { @@ -38382,7 +35415,6 @@ "city": "New York NY", "hostname": "us73-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "34rw+ei9qLjTOTOHCoz/3pG4XaMfmuRwYajuG/7Tsyc=" }, { @@ -38397,7 +35429,6 @@ "city": "New York NY", "hostname": "us74-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "3KoxhZNXXuXnVt0T7Ka4XnSbIRTZnh+DFq+eI05yVHo=" }, { @@ -38412,7 +35443,6 @@ "city": "New York NY", "hostname": "us75-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "U06dpwDLyRfe+H0p80SjrdlKEVraqEsHFsAVUd/Chls=" }, { @@ -38427,7 +35457,6 @@ "city": "New York NY", "hostname": "us76-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "cVDIYPzNChIeANp+0jE12kWM5Ga1MbmNErT1Pmaf12A=" }, { @@ -38442,7 +35471,6 @@ "city": "New York NY", "hostname": "us77-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "mqSfg28JSJwUuqvOBKbCwPp2E7zgNi46kuxKj5FzDUY=" }, { @@ -38457,7 +35485,6 @@ "city": "New York NY", "hostname": "us78-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "9BXmWC1UkQMnzS71WXVxfBW5O+AIFTXRCx31SpCvhSg=" }, { @@ -38472,7 +35499,6 @@ "city": "New York NY", "hostname": "us79-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "oofWbWXoLbEzmnsQX6ZYdgYNzSjkBg58zpAdIBUlUAk=" }, { @@ -38487,7 +35513,6 @@ "city": "New York NY", "hostname": "us80-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "t/VsxDKzPfh3H3XG3ckVr1e8sJ3PuuD0YxdfFtyKjRM=" }, { @@ -38502,7 +35527,6 @@ "city": "New York NY", "hostname": "us81-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "kxS/gAMkGwpR/F7J4L0JCjZEzR+rq0i2lqK6wWnZLAE=" }, { @@ -38517,7 +35541,6 @@ "city": "New York NY", "hostname": "us82-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "qS+FVzRxR0VXljM2aguVXLq494VRuS5sqcE3/DscJRU=" }, { @@ -38532,7 +35555,6 @@ "city": "New York NY", "hostname": "us83-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "7TLCd9zMWxlB2geyeaMDVRJsdPtTvXEApADfoCA3zCY=" }, { @@ -38547,7 +35569,6 @@ "city": "New York NY", "hostname": "us84-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "rFV47I3lu0zlLqJBfV+0Zq8Kt8ytnFVWA02lOq5IyFw=" }, { @@ -38562,7 +35583,6 @@ "city": "New York NY", "hostname": "us85-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "9iNdLMieZ5V2Hv4Dmm4xFqMAbtjnBReEe4iy8A5WRHo=" }, { @@ -38577,7 +35597,6 @@ "city": "New York NY", "hostname": "us86-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "5FXy0/tMXj/TYKVj9PHJ42lCpbWP4qLAOpLZa6FnsRw=" }, { @@ -38592,7 +35611,6 @@ "city": "New York NY", "hostname": "us87-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "QRp4cLDKwbJbondYIi0mPlGmBxI8NV5geXBy4EdKhEM=" }, { @@ -38607,7 +35625,6 @@ "city": "New York NY", "hostname": "us88-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "ru9aQRxYBkK5pWvNkdFlCR8VMPSqcEENBPGkIGEN0XU=" }, { @@ -38622,7 +35639,6 @@ "city": "New York NY", "hostname": "us89-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "u5NkFaOlhZX9AtjBVb4hTYqwgmTToernOrCc2D7B7hk=" }, { @@ -38637,7 +35653,6 @@ "city": "New York NY", "hostname": "us90-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "0OcKhUBT4o0h0j5vEro0/3vK8Ezw1R9B1eXiU9CKFBo=" }, { @@ -38652,7 +35667,6 @@ "city": "New York NY", "hostname": "us91-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "bOOP5lIjqCdDx5t+mP/kEcSbHS4cZqE0rMlBI178lyY=" }, { @@ -38667,7 +35681,6 @@ "city": "New York NY", "hostname": "us92-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "JQo2XN042FQbMrpvRMpEoA+CpqhRESeSWjkNB+k41Ds=" }, { @@ -38682,7 +35695,6 @@ "city": "New York NY", "hostname": "us93-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "g7+2YdOdlhe24m7B9lizdUBFCYw+bJ1CWFd9eVt7+XA=" }, { @@ -38697,7 +35709,6 @@ "city": "New York NY", "hostname": "us94-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "oKKbNl27XkJvtyQx8ikzH0heoFJ+INjQeg4JzasBWTA=" }, { @@ -38712,7 +35723,6 @@ "city": "New York NY", "hostname": "us95-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "GcnYpduxlDZhlzmRiXV6rwXbeJDgBZMn8e7adsMNg3Y=" }, { @@ -38727,7 +35737,6 @@ "city": "New York NY", "hostname": "us96-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "CYoBb5hayfNzt+lOgJyMXcsWKitTn4QAXut7kg4relc=" }, { @@ -38742,7 +35751,6 @@ "city": "New York NY", "hostname": "us97-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "5fzEFqyRqc6qa1QPngIBK1gmWc0ex1Bpot/f6RqZPmc=" }, { @@ -38757,7 +35765,6 @@ "city": "New York NY", "hostname": "us98-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "bo50ppMvVlNG4S6zqgd/J5l1Ce7Og89u+wR10OvJrQ4=" }, { @@ -38772,7 +35779,6 @@ "city": "New York NY", "hostname": "us99-wireguard", "isp": "M247", - "owned": false, "wgpubkey": "EPLh6pVel06dND8cE4Prix9GP4hGLYNhQhn5mSN2yzM=" }, { @@ -38786,8 +35792,7 @@ "country": "USA", "city": "Phoenix AZ", "hostname": "us-phx-101", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -38800,8 +35805,7 @@ "country": "USA", "city": "Phoenix AZ", "hostname": "us-phx-102", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -38814,8 +35818,7 @@ "country": "USA", "city": "Phoenix AZ", "hostname": "us-phx-103", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "wireguard", @@ -38829,7 +35832,6 @@ "city": "Phoenix AZ", "hostname": "us189-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "ctROwSybsU4cHsnGidKtbGYWRB2R17PFMMAqEHpsSm0=" }, { @@ -38844,7 +35846,6 @@ "city": "Phoenix AZ", "hostname": "us190-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "bdxYH3G6foGCwurPSIGPi4oneZfk3S+cpZSd+pUezUc=" }, { @@ -38859,7 +35860,6 @@ "city": "Phoenix AZ", "hostname": "us191-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "D8pVZcwerPfEKUTHW5qZ9AzQl8zPRPp3BVqUmINR+g8=" }, { @@ -38874,7 +35874,6 @@ "city": "Phoenix AZ", "hostname": "us192-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "AxQo/yew9yqQTk/2Z45qI0YZ33ZJ2P+y/K6dFUmvUCQ=" }, { @@ -38889,7 +35888,6 @@ "city": "Phoenix AZ", "hostname": "us193-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "l5kFrUCMY1ip/rEDAppxRe0GjxDdGTAWNouBdGmTc1Q=" }, { @@ -38904,7 +35902,6 @@ "city": "Phoenix AZ", "hostname": "us194-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "Zs07i3DIinREejSjUA7dXpDZvu00YRVNJakTEgckpVs=" }, { @@ -38918,8 +35915,7 @@ "country": "USA", "city": "Raleigh NC", "hostname": "us-rag-101", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -38932,8 +35928,7 @@ "country": "USA", "city": "Raleigh NC", "hostname": "us-rag-102", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -38946,8 +35941,7 @@ "country": "USA", "city": "Raleigh NC", "hostname": "us-rag-103", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "wireguard", @@ -38961,7 +35955,6 @@ "city": "Raleigh NC", "hostname": "us183-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "Yph7Oo28maPFDw/yJI5Bq+gvGE5qRqsYxt1lJ97vviI=" }, { @@ -38976,7 +35969,6 @@ "city": "Raleigh NC", "hostname": "us184-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "vx+vqAj0vcbMlUZd7XRvvFi1ab5+cqxrBA5t8kti/ik=" }, { @@ -38991,7 +35983,6 @@ "city": "Raleigh NC", "hostname": "us185-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "tnIQb/4YrNqLxN2RzK4N+3fikmEZLBGwAo9hbA7jXAM=" }, { @@ -39006,7 +35997,6 @@ "city": "Raleigh NC", "hostname": "us186-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "IAyoNcOK87VO8e7rjFOQodLY6apnWCh6fTmgInGvnxk=" }, { @@ -39021,7 +36011,6 @@ "city": "Raleigh NC", "hostname": "us187-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "KmsxVTOtLaR3s1nI2wNCA24eISH5Rp7dZIKhEvIaci8=" }, { @@ -39035,8 +36024,7 @@ "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-101", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -39049,8 +36037,7 @@ "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-102", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -39063,8 +36050,7 @@ "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-103", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -39077,8 +36063,7 @@ "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-104", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -39091,8 +36076,7 @@ "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-105", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "openvpn", @@ -39105,8 +36089,7 @@ "country": "USA", "city": "Salt Lake City UT", "hostname": "us-slc-106", - "isp": "100TB", - "owned": false + "isp": "100TB" }, { "vpn": "wireguard", @@ -39120,7 +36103,6 @@ "city": "Salt Lake City UT", "hostname": "us134-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "H07w0/FzBuD7J1XX7AIPWQWq0KgAsik6NWnCDq+ouWs=" }, { @@ -39135,7 +36117,6 @@ "city": "Salt Lake City UT", "hostname": "us135-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "hILFNRuu7ANGMAXOIwPKI3M/Q9lfzO2C+gYHs+5mQAw=" }, { @@ -39150,7 +36131,6 @@ "city": "Salt Lake City UT", "hostname": "us136-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "CjSHNIrHSOr6me7OjckbfJb4XbfoDcDBvT5VS2jmFVM=" }, { @@ -39165,7 +36145,6 @@ "city": "Salt Lake City UT", "hostname": "us137-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "wrlLOHa2QW+6FzEom2qOEyBvv06BTjwR0w6N0Rnb5jU=" }, { @@ -39180,7 +36159,6 @@ "city": "Salt Lake City UT", "hostname": "us138-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "t7EpO096Y6jrzr/KHHfpMQsUG0Cu2sga0Di8P9f5Jh4=" }, { @@ -39195,7 +36173,6 @@ "city": "Salt Lake City UT", "hostname": "us139-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "9tPpMdtpDweGoB6U5ZEnSTgYVwxD4fOytsl1TXrnHl4=" }, { @@ -39210,7 +36187,6 @@ "city": "Salt Lake City UT", "hostname": "us140-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "/zr7GFpDW+Px3Y3iu8zhv8wzPWNP/OU4IICnb5H2ZXc=" }, { @@ -39225,7 +36201,6 @@ "city": "Salt Lake City UT", "hostname": "us141-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "KpBP2riY4EKvf02tBXWwT7xHG0CMtRg/N6Q/B3Tng0o=" }, { @@ -39240,7 +36215,6 @@ "city": "Salt Lake City UT", "hostname": "us142-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "ipEYDec8mAA89BgZRPezVDeVILmePOT+sL0ybd+O5Ug=" }, { @@ -39254,8 +36228,7 @@ "country": "USA", "city": "San Jose CA", "hostname": "us-sjc-001", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -39268,8 +36241,7 @@ "country": "USA", "city": "San Jose CA", "hostname": "us-sjc-002", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -39282,8 +36254,7 @@ "country": "USA", "city": "San Jose CA", "hostname": "us-sjc-003", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "wireguard", @@ -39297,7 +36268,6 @@ "city": "San Jose CA", "hostname": "us195-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "7PBJv+IH8NbH1WTCbptgzghi8hH7E8WsrqVH/cl0FBY=" }, { @@ -39312,7 +36282,6 @@ "city": "San Jose CA", "hostname": "us196-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "3mQ+bBKGgX+7eunw64OhpWUz+UHL7Is2fcJWXO5UHQY=" }, { @@ -39327,7 +36296,6 @@ "city": "San Jose CA", "hostname": "us197-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "U20kRb33zBR15Gsd6bP9hQccDL0O4HysxMa5QjubxC0=" }, { @@ -39342,7 +36310,6 @@ "city": "San Jose CA", "hostname": "us198-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "e66QrzHRv/dFmGj8dyGEKxaZiC6Vt3MzLiiRcYJqVjQ=" }, { @@ -39357,7 +36324,6 @@ "city": "San Jose CA", "hostname": "us199-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "FSd0QIqNsLGf+B/IqQzg9wyjKpfVwXiy/P9vt8Zylmg=" }, { @@ -39372,7 +36338,6 @@ "city": "San Jose CA", "hostname": "us200-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "jHaXA+nq2od3uwNPzOUuGeLTuXBTTyXdPsi0lib4pVg=" }, { @@ -39387,7 +36352,6 @@ "city": "San Jose CA", "hostname": "us201-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "4A5vS/WtSI2038iXnQ0i3jz2GIAJn6PB7l4JrOUubBo=" }, { @@ -39402,7 +36366,6 @@ "city": "San Jose CA", "hostname": "us202-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "0mc2D++TlTUUn8HToWbbATvrKtM3vCWJ65OzK9j/uDI=" }, { @@ -39417,7 +36380,6 @@ "city": "San Jose CA", "hostname": "us203-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "XwBEfnMpAqnkqc6mttfOkFacfZgRKrzIX8y7DrTZvxQ=" }, { @@ -39432,7 +36394,6 @@ "city": "San Jose CA", "hostname": "us204-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "xyE6GqJaU7ntIh1pQyZxd1KyR9UxO49aQ1c1WYQqCXQ=" }, { @@ -39447,7 +36408,6 @@ "city": "San Jose CA", "hostname": "us205-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "Nr//h6Q+LwJeV4nqnmIcXYQYigt8iKJgK8C81KiOdkU=" }, { @@ -39462,7 +36422,6 @@ "city": "San Jose CA", "hostname": "us206-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "RacjA0eNOBUACA8MvC2MKjt8ZTqxkYoB15kZKQaj3Ts=" }, { @@ -39477,7 +36436,6 @@ "city": "San Jose CA", "hostname": "us207-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "JTpeoUyC0CA/NiHoGk+nH8oM6hHY/Nawmvy5nYdXByE=" }, { @@ -39492,7 +36450,6 @@ "city": "San Jose CA", "hostname": "us208-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "0N/GPSDWTju1YV8MCCx5n9O4scMKYP7Nh/nnLsje8W4=" }, { @@ -39506,8 +36463,7 @@ "country": "USA", "city": "Seattle WA", "hostname": "us-sea-101", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -39520,8 +36476,7 @@ "country": "USA", "city": "Seattle WA", "hostname": "us-sea-102", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "openvpn", @@ -39534,8 +36489,7 @@ "country": "USA", "city": "Seattle WA", "hostname": "us-sea-103", - "isp": "Tzulo", - "owned": false + "isp": "Tzulo" }, { "vpn": "wireguard", @@ -39549,7 +36503,6 @@ "city": "Seattle WA", "hostname": "us177-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "T1fKJp8knv4kqsfy9O04OIy+1nl5b9ypcnIzdmcfyzM=" }, { @@ -39564,7 +36517,6 @@ "city": "Seattle WA", "hostname": "us178-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "+MmbnwQFKC18GJvunTQyAC2uvDwgEi9XXU7aksr9Czo=" }, { @@ -39579,7 +36531,6 @@ "city": "Seattle WA", "hostname": "us179-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "+DIu6EMVk9QEsy6/NppxcDjuLSG6rTJ3TywYN3wXDkQ=" }, { @@ -39594,7 +36545,6 @@ "city": "Seattle WA", "hostname": "us180-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "rgtjtftlhL1m9dC9KoacFbzQ9YVma6GOWIfoLom8TUc=" }, { @@ -39609,7 +36559,6 @@ "city": "Seattle WA", "hostname": "us181-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "+c43g3SchQLZP1ODAMZemGi1fkLf89A0T+pbM4JWqRw=" }, { @@ -39624,7 +36573,6 @@ "city": "Seattle WA", "hostname": "us182-wireguard", "isp": "Tzulo", - "owned": false, "wgpubkey": "Uqx528kx/O1VKpG8DLKK5Q3Hz6JcxTbosYYwoDR4LgA=" }, { @@ -39639,7 +36587,6 @@ "city": "Seattle WA", "hostname": "us209-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "APxS9ebzK537njzcfB9gh8VXWrFrKvZeC6QQe0ZCUUM=" }, { @@ -39654,7 +36601,6 @@ "city": "Seattle WA", "hostname": "us210-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "92KRwUmhQY/n5cAUKR1R/Z/z17wOmB08GZxuats8cEw=" }, { @@ -39669,7 +36615,6 @@ "city": "Seattle WA", "hostname": "us213-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "7YYXE9f3qJBHtccXrr3H8eFeZL3kPSd+zhX8A6q4GBM=" }, { @@ -39684,7 +36629,6 @@ "city": "Seattle WA", "hostname": "us214-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "xqPiSkNlmz6KgC4UKz8rmey8VcmLHhTxCSYcNk9hAGo=" }, { @@ -39699,7 +36643,6 @@ "city": "Seattle WA", "hostname": "us215-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "H6XbhZN1u6qYDJSfoSNWz4uTnSGuQEpdFR6T0kgrwhU=" }, { @@ -39714,7 +36657,6 @@ "city": "Seattle WA", "hostname": "us216-wireguard", "isp": "100TB", - "owned": false, "wgpubkey": "ErdLbpitZKoIURt85r/VYNwq8FcwKOkGAhh6PgknT3U=" }, { @@ -39729,7 +36671,6 @@ "city": "Seattle WA", "hostname": "us227-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "lw4tLTZDxrpvn7cBbT/B6aBJ5GGijrTLsv0remBj5yM=" }, { @@ -39744,7 +36685,6 @@ "city": "Seattle WA", "hostname": "us228-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "ODuPYwpLGkN3MZuRTmXqPCLdC8h0eCUUaK8R/MySoEU=" }, { @@ -39759,7 +36699,6 @@ "city": "Secaucus NJ", "hostname": "us237-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "gIPt84pfJGTKNcfow/S5/7davshqE5YlWvdiC9iUp3M=" }, { @@ -39774,7 +36713,6 @@ "city": "Secaucus NJ", "hostname": "us238-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "g+oSKrX4fbsPtiMwsbmB7/7+AywjFCj0jVYjSlR8wRM=" }, { @@ -39789,7 +36727,6 @@ "city": "Secaucus NJ", "hostname": "us241-wireguard", "isp": "Quadranet", - "owned": false, "wgpubkey": "AgaO2dCgD3SNEW8II143+pcMREFsnkoieay25nFLxDs=" }, { @@ -39803,8 +36740,7 @@ "country": "United Arab Emirates", "city": "Dubai", "hostname": "ae-dxb-001", - "isp": "M247", - "owned": false + "isp": "M247" } ] }, @@ -67240,7 +64176,6 @@ "hostname": "us5382.nordvpn.com", "number": 5382, "ip": "82.102.31.172", - "tcp": false, "udp": true }, { @@ -85972,7 +82907,6 @@ "server_name": "atlanta411", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.22.9", "154.21.22.23", @@ -85985,7 +82919,6 @@ "server_name": "atlanta417", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.22.208", "154.21.22.205", @@ -85999,7 +82932,6 @@ "server_name": "atlanta421", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.21.76", "154.21.21.83", @@ -86013,7 +82945,6 @@ "server_name": "atlanta426", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "156.146.46.218", "156.146.46.220", @@ -86028,7 +82959,6 @@ "server_name": "atlanta428", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "156.146.46.87", "156.146.46.73" @@ -86040,7 +82970,6 @@ "server_name": "losangeles404", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "84.17.45.10", "84.17.45.4", @@ -86053,7 +82982,6 @@ "server_name": "losangeles413", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "102.129.145.123", "102.129.145.117", @@ -86066,7 +82994,6 @@ "server_name": "losangeles414", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "102.129.145.136", "102.129.145.139", @@ -86079,7 +83006,6 @@ "server_name": "losangeles430", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "102.129.145.188", "102.129.145.189", @@ -86093,7 +83019,6 @@ "server_name": "losangeles436", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.106.163", "191.96.106.166", @@ -86106,7 +83031,6 @@ "server_name": "chicago407", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.28.56", "154.21.28.93", @@ -86120,7 +83044,6 @@ "server_name": "chicago413", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.23.124", "154.21.23.107", @@ -86134,7 +83057,6 @@ "server_name": "chicago414", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.23.187", "154.21.23.186", @@ -86147,7 +83069,6 @@ "server_name": "chicago417", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.114.89", "154.21.114.54", @@ -86161,7 +83082,6 @@ "server_name": "chicago421", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.114.248", "154.21.114.244", @@ -86175,7 +83095,6 @@ "server_name": "denver402", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "70.39.126.153", "70.39.126.133", @@ -86188,7 +83107,6 @@ "server_name": "denver403", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "70.39.116.209", "70.39.116.240", @@ -86202,7 +83120,6 @@ "server_name": "denver407", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "70.39.108.206", "70.39.108.228", @@ -86215,7 +83132,6 @@ "server_name": "denver409", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "70.39.113.229", "70.39.113.198", @@ -86230,7 +83146,6 @@ "server_name": "denver411", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "37.19.210.77", "37.19.210.74", @@ -86243,7 +83158,6 @@ "server_name": "newjersey418", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "37.19.197.203", "37.19.197.217", @@ -86256,7 +83170,6 @@ "server_name": "newjersey432", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "102.165.16.229", "102.165.16.233", @@ -86269,7 +83182,6 @@ "server_name": "newjersey434", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.185.59", "191.96.185.45", @@ -86283,7 +83195,6 @@ "server_name": "newjersey435", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.185.88", "191.96.185.86", @@ -86297,7 +83208,6 @@ "server_name": "newjersey436", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.185.104", "191.96.185.129", @@ -86310,7 +83220,6 @@ "server_name": "miami405", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "143.244.34.206", "143.244.34.209", @@ -86324,7 +83233,6 @@ "server_name": "miami418", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "102.129.152.57", "102.129.152.58", @@ -86339,7 +83247,6 @@ "server_name": "miami421", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "102.129.152.133", "102.129.152.158", @@ -86354,7 +83261,6 @@ "server_name": "miami423", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "102.129.153.18", "102.129.153.25", @@ -86367,7 +83273,6 @@ "server_name": "miami428", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "102.129.153.188", "102.129.153.164", @@ -86380,7 +83285,6 @@ "server_name": "houston419", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.67.28", "191.96.67.5", @@ -86394,7 +83298,6 @@ "server_name": "houston423", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.67.156", "191.96.67.138", @@ -86409,7 +83312,6 @@ "server_name": "houston424", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.67.166", "191.96.67.179", @@ -86424,7 +83326,6 @@ "server_name": "houston425", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.67.206", "191.96.67.205", @@ -86439,7 +83340,6 @@ "server_name": "houston427", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "181.214.227.23", "181.214.227.16", @@ -86453,7 +83353,6 @@ "server_name": "lasvegas402", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "45.89.173.182", "45.89.173.180", @@ -86467,7 +83366,6 @@ "server_name": "lasvegas404", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "82.102.31.199", "82.102.31.200", @@ -86482,7 +83380,6 @@ "server_name": "lasvegas407", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "79.110.53.10", "79.110.53.14", @@ -86496,7 +83393,6 @@ "server_name": "lasvegas426", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "173.239.226.155", "173.239.226.180", @@ -86511,7 +83407,6 @@ "server_name": "lasvegas427", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "173.239.226.199", "173.239.226.200", @@ -86526,7 +83421,6 @@ "server_name": "newyork420", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "138.199.10.87", "138.199.10.69", @@ -86541,7 +83435,6 @@ "server_name": "newyork432", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "37.19.198.137", "37.19.198.149", @@ -86555,7 +83448,6 @@ "server_name": "newyork433", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "37.19.198.75", "37.19.198.80" @@ -86567,7 +83459,6 @@ "server_name": "newyork435", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.150.59", "191.96.150.19", @@ -86581,7 +83472,6 @@ "server_name": "newyork439", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.16.192.77", "154.16.192.93", @@ -86594,7 +83484,6 @@ "server_name": "newyork441", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "191.96.227.34", "191.96.227.15", @@ -86608,7 +83497,6 @@ "server_name": "seattle406", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.9.128.66", "154.9.128.89", @@ -86622,7 +83510,6 @@ "server_name": "seattle408", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.9.128.147", "154.9.128.143", @@ -86636,7 +83523,6 @@ "server_name": "seattle415", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.20.107", "154.21.20.120", @@ -86650,7 +83536,6 @@ "server_name": "seattle417", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.20.168", "154.21.20.183", @@ -86665,7 +83550,6 @@ "server_name": "seattle424", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "212.102.47.167", "212.102.47.160" @@ -86677,7 +83561,6 @@ "server_name": "siliconvalley406", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.212.249", "154.21.212.229", @@ -86690,7 +83573,6 @@ "server_name": "siliconvalley408", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.208.43", "154.21.208.38", @@ -86703,7 +83585,6 @@ "server_name": "siliconvalley415", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.216.89", "154.21.216.55", @@ -86718,7 +83599,6 @@ "server_name": "siliconvalley417", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.21.216.169", "154.21.216.176", @@ -86732,7 +83612,6 @@ "server_name": "siliconvalley419", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "66.115.165.27", "66.115.165.48", @@ -86746,7 +83625,6 @@ "server_name": "newjersey419", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "37.19.197.155", "37.19.197.143", @@ -86759,7 +83637,6 @@ "server_name": "newjersey420", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "37.19.197.165", "37.19.197.186", @@ -86773,7 +83650,6 @@ "server_name": "dallas405", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.3.251.69", "154.3.251.77", @@ -86788,7 +83664,6 @@ "server_name": "dallas413", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.29.131.158", "154.29.131.169", @@ -86801,7 +83676,6 @@ "server_name": "dallas414", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.29.131.206", "154.29.131.197" @@ -86813,7 +83687,6 @@ "server_name": "dallas419", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.3.250.235", "154.3.250.229", @@ -86827,7 +83700,6 @@ "server_name": "dallas425", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "156.146.39.25", "156.146.39.5", @@ -86841,7 +83713,6 @@ "server_name": "washington433", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.3.44.39", "154.3.44.64", @@ -86855,7 +83726,6 @@ "server_name": "washington434", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.3.44.88", "154.3.44.76", @@ -86869,7 +83739,6 @@ "server_name": "washington435", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.3.44.119", "154.3.44.105", @@ -86883,7 +83752,6 @@ "server_name": "washington437", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "154.3.44.175", "154.3.44.174", @@ -86897,7 +83765,6 @@ "server_name": "washington445", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "38.70.11.185", "38.70.11.175", @@ -86911,7 +83778,6 @@ "server_name": "phoenix406", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "184.170.241.28", "184.170.241.48", @@ -86926,7 +83792,6 @@ "server_name": "phoenix408", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "172.98.87.205", "172.98.87.200", @@ -86939,7 +83804,6 @@ "server_name": "phoenix409", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "172.98.87.146", "172.98.87.155", @@ -86953,7 +83817,6 @@ "server_name": "phoenix412", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "107.181.184.169", "107.181.184.203", @@ -86967,7 +83830,6 @@ "server_name": "phoenix414", "tcp": true, "udp": true, - "port_forward": false, "ips": [ "184.170.242.156", "184.170.242.145", @@ -87727,8 +84589,6 @@ "servers": [ { "country": "Argentina", - "region": "", - "city": "", "name": "CH-AR#1", "hostname": "ch-ar-01a.protonvpn.com", "entry_ip": "185.159.157.114", @@ -87738,8 +84598,6 @@ }, { "country": "Argentina", - "region": "", - "city": "", "name": "SE-AR#1", "hostname": "se-ar-01a.protonvpn.com", "entry_ip": "185.159.156.52", @@ -87749,7 +84607,6 @@ }, { "country": "Argentina", - "region": "", "city": "Buenos Aires", "name": "AR#1", "hostname": "ar-01.protonvpn.net", @@ -87762,7 +84619,6 @@ }, { "country": "Argentina", - "region": "", "city": "Buenos Aires", "name": "AR#4", "hostname": "node-ar-01.protonvpn.net", @@ -87777,8 +84633,6 @@ }, { "country": "Australia", - "region": "", - "city": "", "name": "CH-AU#1", "hostname": "ch-au-01a.protonvpn.com", "entry_ip": "185.159.157.50", @@ -87788,8 +84642,6 @@ }, { "country": "Australia", - "region": "", - "city": "", "name": "CH-AU#1", "hostname": "ch-au-01b.protonvpn.com", "entry_ip": "185.159.157.51", @@ -87799,8 +84651,6 @@ }, { "country": "Australia", - "region": "", - "city": "", "name": "CH-AU#1", "hostname": "ch-au-01c.protonvpn.com", "entry_ip": "185.159.157.55", @@ -87810,8 +84660,6 @@ }, { "country": "Australia", - "region": "", - "city": "", "name": "SE-AU#1", "hostname": "se-au-01a.protonvpn.com", "entry_ip": "185.159.156.55", @@ -87821,8 +84669,6 @@ }, { "country": "Australia", - "region": "", - "city": "", "name": "SE-AU#1", "hostname": "se-au-01b.protonvpn.com", "entry_ip": "185.159.156.79", @@ -87832,8 +84678,6 @@ }, { "country": "Australia", - "region": "", - "city": "", "name": "SE-AU#1", "hostname": "se-au-01c.protonvpn.com", "entry_ip": "185.159.156.80", @@ -87843,7 +84687,6 @@ }, { "country": "Australia", - "region": "", "city": "Adelaide", "name": "AU#37", "hostname": "au-37.protonvpn.com", @@ -87854,7 +84697,6 @@ }, { "country": "Australia", - "region": "", "city": "Adelaide", "name": "AU#38", "hostname": "lxc-au-09.protonvpn.com", @@ -87867,7 +84709,6 @@ }, { "country": "Australia", - "region": "", "city": "Brisbane", "name": "AU#41", "hostname": "au-41.protonvpn.com", @@ -87878,7 +84719,6 @@ }, { "country": "Australia", - "region": "", "city": "Brisbane", "name": "AU#42", "hostname": "lxc-au-10.protonvpn.com", @@ -87891,7 +84731,6 @@ }, { "country": "Australia", - "region": "", "city": "Perth", "name": "AU#17", "hostname": "au-17.protonvpn.com", @@ -87902,7 +84741,6 @@ }, { "country": "Australia", - "region": "", "city": "Perth", "name": "AU#18", "hostname": "lxc-au-05.protonvpn.com", @@ -87915,7 +84753,6 @@ }, { "country": "Australia", - "region": "", "city": "Perth", "name": "AU#29", "hostname": "au-29.protonvpn.net", @@ -87928,7 +84765,6 @@ }, { "country": "Australia", - "region": "", "city": "Perth", "name": "AU#32", "hostname": "node-au-08.protonvpn.net", @@ -87943,7 +84779,6 @@ }, { "country": "Australia", - "region": "", "city": "Sydney", "name": "AU#13", "hostname": "au-13.protonvpn.com", @@ -87954,7 +84789,6 @@ }, { "country": "Australia", - "region": "", "city": "Sydney", "name": "AU#14", "hostname": "lxc-au-04.protonvpn.com", @@ -87967,7 +84801,6 @@ }, { "country": "Australia", - "region": "", "city": "Sydney", "name": "AU#21", "hostname": "lxc-au-06.protonvpn.com", @@ -87981,7 +84814,6 @@ }, { "country": "Australia", - "region": "", "city": "Sydney", "name": "AU#25", "hostname": "lxc-au-07.protonvpn.com", @@ -87995,8 +84827,6 @@ }, { "country": "Austria", - "region": "", - "city": "", "name": "CH-AT#1", "hostname": "ch-at-01a.protonvpn.com", "entry_ip": "185.159.157.34", @@ -88006,8 +84836,6 @@ }, { "country": "Austria", - "region": "", - "city": "", "name": "CH-AT#1", "hostname": "ch-at-01b.protonvpn.com", "entry_ip": "185.159.157.35", @@ -88017,8 +84845,6 @@ }, { "country": "Austria", - "region": "", - "city": "", "name": "CH-AT#1", "hostname": "ch-at-01c.protonvpn.com", "entry_ip": "185.159.157.47", @@ -88028,8 +84854,6 @@ }, { "country": "Austria", - "region": "", - "city": "", "name": "CH-AT#1", "hostname": "ch-at-01d.protonvpn.com", "entry_ip": "185.159.157.75", @@ -88039,8 +84863,6 @@ }, { "country": "Austria", - "region": "", - "city": "", "name": "IS-AT#1", "hostname": "is-at-01a.protonvpn.com", "entry_ip": "185.159.158.164", @@ -88050,8 +84872,6 @@ }, { "country": "Austria", - "region": "", - "city": "", "name": "IS-AT#1", "hostname": "is-at-01b.protonvpn.com", "entry_ip": "185.159.158.165", @@ -88061,7 +84881,6 @@ }, { "country": "Austria", - "region": "", "city": "Vienna", "name": "AT#1", "hostname": "at-01.protonvpn.net", @@ -88073,7 +84892,6 @@ }, { "country": "Austria", - "region": "", "city": "Vienna", "name": "AT#10", "hostname": "node-at-03.protonvpn.net", @@ -88086,7 +84904,6 @@ }, { "country": "Austria", - "region": "", "city": "Vienna", "name": "AT#13", "hostname": "at-13.protonvpn.com", @@ -88097,7 +84914,6 @@ }, { "country": "Austria", - "region": "", "city": "Vienna", "name": "AT#14", "hostname": "lxc-at-04.protonvpn.com", @@ -88110,7 +84926,6 @@ }, { "country": "Austria", - "region": "", "city": "Vienna", "name": "AT#3", "hostname": "node-at-01.protonvpn.net", @@ -88122,7 +84937,6 @@ }, { "country": "Austria", - "region": "", "city": "Vienna", "name": "AT#5", "hostname": "at-05.protonvpn.net", @@ -88134,7 +84948,6 @@ }, { "country": "Austria", - "region": "", "city": "Vienna", "name": "AT#7", "hostname": "node-at-02.protonvpn.net", @@ -88146,7 +84959,6 @@ }, { "country": "Austria", - "region": "", "city": "Vienna", "name": "AT#9", "hostname": "at-09.protonvpn.net", @@ -88157,8 +84969,6 @@ }, { "country": "Belgium", - "region": "", - "city": "", "name": "CH-BE#1", "hostname": "ch-be-01a.protonvpn.com", "entry_ip": "185.159.157.147", @@ -88168,8 +84978,6 @@ }, { "country": "Belgium", - "region": "", - "city": "", "name": "IS-BE#1", "hostname": "is-be-01a.protonvpn.com", "entry_ip": "185.159.158.127", @@ -88179,8 +84987,6 @@ }, { "country": "Belgium", - "region": "", - "city": "", "name": "IS-BE#1", "hostname": "is-be-01c.protonvpn.com", "entry_ip": "185.159.158.129", @@ -88190,8 +84996,6 @@ }, { "country": "Belgium", - "region": "", - "city": "", "name": "IS-BE#1", "hostname": "is-be-01d.protonvpn.com", "entry_ip": "185.159.158.138", @@ -88201,7 +85005,6 @@ }, { "country": "Belgium", - "region": "", "city": "Brussels", "name": "BE#1", "hostname": "be-01.protonvpn.net", @@ -88212,7 +85015,6 @@ }, { "country": "Belgium", - "region": "", "city": "Brussels", "name": "BE#13", "hostname": "be-13.protonvpn.net", @@ -88223,7 +85025,6 @@ }, { "country": "Belgium", - "region": "", "city": "Brussels", "name": "BE#14", "hostname": "node-be-03.protonvpn.net", @@ -88236,7 +85037,6 @@ }, { "country": "Belgium", - "region": "", "city": "Brussels", "name": "BE#2", "hostname": "node-be-01.protonvpn.net", @@ -88249,7 +85049,6 @@ }, { "country": "Belgium", - "region": "", "city": "Brussels", "name": "BE#5", "hostname": "be-05.protonvpn.com", @@ -88262,7 +85061,6 @@ }, { "country": "Belgium", - "region": "", "city": "Brussels", "name": "BE#8", "hostname": "lxc-be-02.protonvpn.com", @@ -88277,8 +85075,6 @@ }, { "country": "Brazil", - "region": "", - "city": "", "name": "IS-BR#2", "hostname": "is-br-01b.protonvpn.com", "entry_ip": "185.159.158.177", @@ -88288,7 +85084,6 @@ }, { "country": "Brazil", - "region": "", "city": "São Paulo", "name": "BR#21", "hostname": "node-br-04.protonvpn.net", @@ -88306,7 +85101,6 @@ }, { "country": "Brazil", - "region": "", "city": "São Paulo", "name": "BR#42", "hostname": "br-42.protonvpn.net", @@ -88320,7 +85114,6 @@ }, { "country": "Brazil", - "region": "", "city": "São Paulo", "name": "BR#9", "hostname": "node-br-03.protonvpn.net", @@ -88338,7 +85131,6 @@ }, { "country": "Brazil", - "region": "", "city": "São Paulo", "name": "SE-BR#1", "hostname": "se-br-01a.protonvpn.com", @@ -88349,8 +85141,6 @@ }, { "country": "Bulgaria", - "region": "", - "city": "", "name": "CH-BG#1", "hostname": "ch-bg-01a.protonvpn.com", "entry_ip": "185.159.157.48", @@ -88360,8 +85150,6 @@ }, { "country": "Bulgaria", - "region": "", - "city": "", "name": "CH-BG#1", "hostname": "ch-bg-01b.protonvpn.com", "entry_ip": "185.159.157.76", @@ -88371,7 +85159,6 @@ }, { "country": "Bulgaria", - "region": "", "city": "Sofia", "name": "BG#1", "hostname": "bg-01.protonvpn.com", @@ -88383,7 +85170,6 @@ }, { "country": "Bulgaria", - "region": "", "city": "Sofia", "name": "BG#3", "hostname": "lxc-bg-01.protonvpn.com", @@ -88395,8 +85181,6 @@ }, { "country": "Cambodia", - "region": "", - "city": "", "name": "SE-KH#1", "hostname": "se-kh-01a.protonvpn.com", "entry_ip": "185.159.156.83", @@ -88406,7 +85190,6 @@ }, { "country": "Cambodia", - "region": "", "city": "Phnom Penh", "name": "KH#1", "hostname": "node-kh-01.protonvpn.net", @@ -88424,8 +85207,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01a.protonvpn.com", "entry_ip": "185.159.157.14", @@ -88435,8 +85216,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01b.protonvpn.com", "entry_ip": "185.159.157.17", @@ -88446,8 +85225,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01c.protonvpn.com", "entry_ip": "185.159.157.101", @@ -88457,8 +85234,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01d.protonvpn.com", "entry_ip": "185.159.157.118", @@ -88468,8 +85243,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01e.protonvpn.com", "entry_ip": "185.159.157.31", @@ -88479,8 +85252,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01f.protonvpn.com", "entry_ip": "185.159.157.52", @@ -88490,8 +85261,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01g.protonvpn.com", "entry_ip": "185.159.157.125", @@ -88501,8 +85270,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01h.protonvpn.com", "entry_ip": "185.159.157.154", @@ -88512,8 +85279,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01i.protonvpn.com", "entry_ip": "185.159.157.155", @@ -88523,8 +85288,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "CH-CA#1", "hostname": "ch-ca-01j.protonvpn.com", "entry_ip": "185.159.157.177", @@ -88534,8 +85297,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "IS-CA#1", "hostname": "is-ca-01a.protonvpn.com", "entry_ip": "185.159.158.103", @@ -88545,8 +85306,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "IS-CA#1", "hostname": "is-ca-01e.protonvpn.com", "entry_ip": "185.159.158.117", @@ -88556,8 +85315,6 @@ }, { "country": "Canada", - "region": "", - "city": "", "name": "SE-CA#1", "hostname": "se-ca-01a.protonvpn.com", "entry_ip": "185.159.156.51", @@ -88567,7 +85324,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#17", "hostname": "lxc-ca-05.protonvpn.com", @@ -88581,7 +85337,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#21", "hostname": "ca-21.protonvpn.net", @@ -88594,7 +85349,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#24", "hostname": "node-ca-06.protonvpn.net", @@ -88609,7 +85363,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#29", "hostname": "ca-29.protonvpn.com", @@ -88620,7 +85373,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#30", "hostname": "lxc-ca-07.protonvpn.com", @@ -88633,7 +85385,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#41", "hostname": "ca-41.protonvpn.com", @@ -88644,7 +85395,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#42", "hostname": "lxc-ca-10.protonvpn.com", @@ -88657,7 +85407,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#45", "hostname": "ca-45.protonvpn.com", @@ -88668,7 +85417,6 @@ }, { "country": "Canada", - "region": "", "city": "Montreal", "name": "CA#46", "hostname": "lxc-ca-11.protonvpn.com", @@ -88681,7 +85429,6 @@ }, { "country": "Canada", - "region": "", "city": "Toronto", "name": "CA#1", "hostname": "ca-01.protonvpn.net", @@ -88693,7 +85440,6 @@ }, { "country": "Canada", - "region": "", "city": "Toronto", "name": "CA#13", "hostname": "node-ca-04.protonvpn.net", @@ -88707,7 +85453,6 @@ }, { "country": "Canada", - "region": "", "city": "Toronto", "name": "CA#3", "hostname": "node-ca-01.protonvpn.net", @@ -88719,7 +85464,6 @@ }, { "country": "Canada", - "region": "", "city": "Toronto", "name": "CA#37", "hostname": "lxc-ca-09.protonvpn.com", @@ -88733,7 +85477,6 @@ }, { "country": "Canada", - "region": "", "city": "Toronto", "name": "CA#49", "hostname": "node-ca-08.protonvpn.net", @@ -88755,7 +85498,6 @@ }, { "country": "Canada", - "region": "", "city": "Vancouver", "name": "CA#33", "hostname": "ca-33.protonvpn.com", @@ -88767,7 +85509,6 @@ }, { "country": "Canada", - "region": "", "city": "Vancouver", "name": "CA#35", "hostname": "lxc-ca-08.protonvpn.com", @@ -88779,7 +85520,6 @@ }, { "country": "Canada", - "region": "", "city": "Vancouver", "name": "CA#5", "hostname": "ca-05.protonvpn.com", @@ -88791,7 +85531,6 @@ }, { "country": "Canada", - "region": "", "city": "Vancouver", "name": "CA#7", "hostname": "lxc-ca-02.protonvpn.com", @@ -88803,8 +85542,6 @@ }, { "country": "Chile", - "region": "", - "city": "", "name": "CH-CL#1", "hostname": "ch-cl-01b.protonvpn.com", "entry_ip": "185.159.157.137", @@ -88814,7 +85551,6 @@ }, { "country": "Chile", - "region": "", "city": "Santiago", "name": "CL#1", "hostname": "cl-01b.protonvpn.net", @@ -88827,7 +85563,6 @@ }, { "country": "Chile", - "region": "", "city": "Santiago", "name": "CL#4", "hostname": "node-cl-01b.protonvpn.net", @@ -88842,8 +85577,6 @@ }, { "country": "Colombia", - "region": "", - "city": "", "name": "CH-CO#1", "hostname": "ch-co-01a.protonvpn.com", "entry_ip": "185.159.157.136", @@ -88853,7 +85586,6 @@ }, { "country": "Colombia", - "region": "", "city": "Bogota", "name": "CO#1", "hostname": "co-01.protonvpn.net", @@ -88866,7 +85598,6 @@ }, { "country": "Colombia", - "region": "", "city": "Bogota", "name": "CO#4", "hostname": "node-co-01.protonvpn.net", @@ -88881,8 +85612,6 @@ }, { "country": "Costa Rica", - "region": "", - "city": "", "name": "IS-CR#1", "hostname": "is-cr-01a.protonvpn.com", "entry_ip": "185.159.158.136", @@ -88892,7 +85621,6 @@ }, { "country": "Costa Rica", - "region": "", "city": "San José", "name": "CR#1", "hostname": "cr-01.protonvpn.com", @@ -88903,7 +85631,6 @@ }, { "country": "Costa Rica", - "region": "", "city": "San José", "name": "CR#2", "hostname": "lxc-cr-01.protonvpn.com", @@ -88916,8 +85643,6 @@ }, { "country": "Cyprus", - "region": "", - "city": "", "name": "CH-CY#1", "hostname": "ch-cy-01a.protonvpn.com", "entry_ip": "185.159.157.165", @@ -88927,7 +85652,6 @@ }, { "country": "Cyprus", - "region": "", "city": "Limassol", "name": "CY#1", "hostname": "cy-01.protonvpn.net", @@ -88938,7 +85662,6 @@ }, { "country": "Cyprus", - "region": "", "city": "Limassol", "name": "CY#2", "hostname": "node-cy-01.protonvpn.net", @@ -88951,8 +85674,6 @@ }, { "country": "Czech Republic", - "region": "", - "city": "", "name": "CH-CZ#1", "hostname": "ch-cz-01a.protonvpn.com", "entry_ip": "185.159.157.38", @@ -88962,8 +85683,6 @@ }, { "country": "Czech Republic", - "region": "", - "city": "", "name": "CH-CZ#1", "hostname": "ch-cz-01b.protonvpn.com", "entry_ip": "185.159.157.39", @@ -88973,8 +85692,6 @@ }, { "country": "Czech Republic", - "region": "", - "city": "", "name": "CH-CZ#1", "hostname": "ch-cz-01c.protonvpn.com", "entry_ip": "185.159.157.69", @@ -88984,7 +85701,6 @@ }, { "country": "Czech Republic", - "region": "", "city": "Prague", "name": "CZ#1", "hostname": "cz-01.protonvpn.net", @@ -88996,7 +85712,6 @@ }, { "country": "Czech Republic", - "region": "", "city": "Prague", "name": "CZ#13", "hostname": "cz-13.protonvpn.net", @@ -89009,7 +85724,6 @@ }, { "country": "Czech Republic", - "region": "", "city": "Prague", "name": "CZ#16", "hostname": "node-cz-03.protonvpn.net", @@ -89024,7 +85738,6 @@ }, { "country": "Czech Republic", - "region": "", "city": "Prague", "name": "CZ#3", "hostname": "node-cz-01.protonvpn.net", @@ -89036,8 +85749,6 @@ }, { "country": "Denmark", - "region": "", - "city": "", "name": "CH-DK#1", "hostname": "ch-dk-01a.protonvpn.com", "entry_ip": "185.159.157.36", @@ -89047,8 +85758,6 @@ }, { "country": "Denmark", - "region": "", - "city": "", "name": "CH-DK#1", "hostname": "ch-dk-01b.protonvpn.com", "entry_ip": "185.159.157.37", @@ -89058,8 +85767,6 @@ }, { "country": "Denmark", - "region": "", - "city": "", "name": "IS-DK#1", "hostname": "is-dk-01a.protonvpn.com", "entry_ip": "185.159.158.153", @@ -89069,7 +85776,6 @@ }, { "country": "Denmark", - "region": "", "city": "Copenhagen", "name": "DK#1", "hostname": "dk-01.protonvpn.net", @@ -89081,7 +85787,6 @@ }, { "country": "Denmark", - "region": "", "city": "Copenhagen", "name": "DK#13", "hostname": "dk-13.protonvpn.net", @@ -89094,7 +85799,6 @@ }, { "country": "Denmark", - "region": "", "city": "Copenhagen", "name": "DK#16", "hostname": "node-dk-03.protonvpn.net", @@ -89109,7 +85813,6 @@ }, { "country": "Denmark", - "region": "", "city": "Copenhagen", "name": "DK#21", "hostname": "dk-21.protonvpn.net", @@ -89120,7 +85823,6 @@ }, { "country": "Denmark", - "region": "", "city": "Copenhagen", "name": "DK#22", "hostname": "node-dk-04.protonvpn.net", @@ -89133,7 +85835,6 @@ }, { "country": "Denmark", - "region": "", "city": "Copenhagen", "name": "DK#3", "hostname": "node-dk-01.protonvpn.net", @@ -89145,8 +85846,6 @@ }, { "country": "Egypt", - "region": "", - "city": "", "name": "SE-EG#1", "hostname": "se-eg-01a.protonvpn.com", "entry_ip": "185.159.156.84", @@ -89156,7 +85855,6 @@ }, { "country": "Egypt", - "region": "", "city": "Cairo", "name": "EG#1", "hostname": "node-eg-01.protonvpn.net", @@ -89174,8 +85872,6 @@ }, { "country": "Estonia", - "region": "", - "city": "", "name": "CH-EE#1", "hostname": "ch-ee-01a.protonvpn.com", "entry_ip": "185.159.157.106", @@ -89185,8 +85881,6 @@ }, { "country": "Estonia", - "region": "", - "city": "", "name": "SE-EE#1", "hostname": "se-ee-01b.protonvpn.com", "entry_ip": "185.159.156.49", @@ -89196,7 +85890,6 @@ }, { "country": "Estonia", - "region": "", "city": "Tallinn", "name": "EE#1", "hostname": "ee-01.protonvpn.com", @@ -89209,7 +85902,6 @@ }, { "country": "Estonia", - "region": "", "city": "Tallinn", "name": "EE#4", "hostname": "lxc-ee-01.protonvpn.com", @@ -89224,8 +85916,6 @@ }, { "country": "Finland", - "region": "", - "city": "", "name": "CH-FI#1", "hostname": "ch-fi-01a.protonvpn.com", "entry_ip": "185.159.157.107", @@ -89235,8 +85925,6 @@ }, { "country": "Finland", - "region": "", - "city": "", "name": "SE-FI#1", "hostname": "se-fi-01b.protonvpn.com", "entry_ip": "185.159.156.27", @@ -89246,8 +85934,6 @@ }, { "country": "Finland", - "region": "", - "city": "", "name": "SE-FI#1", "hostname": "se-fi-01c.protonvpn.com", "entry_ip": "185.159.156.28", @@ -89257,7 +85943,6 @@ }, { "country": "Finland", - "region": "", "city": "Helsinki", "name": "FI#1", "hostname": "fi-01.protonvpn.com", @@ -89268,7 +85953,6 @@ }, { "country": "Finland", - "region": "", "city": "Helsinki", "name": "FI#2", "hostname": "lxc-fi-01.protonvpn.com", @@ -89281,8 +85965,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "CH-FR#1", "hostname": "ch-fr-01a.protonvpn.com", "entry_ip": "185.159.157.90", @@ -89292,8 +85974,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "CH-FR#1", "hostname": "ch-fr-01b.protonvpn.com", "entry_ip": "185.159.157.126", @@ -89303,8 +85983,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "CH-FR#1", "hostname": "ch-fr-01c.protonvpn.com", "entry_ip": "185.159.157.148", @@ -89314,8 +85992,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "CH-FR#1", "hostname": "ch-fr-01d.protonvpn.com", "entry_ip": "185.159.157.149", @@ -89325,8 +86001,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "CH-FR#1", "hostname": "ch-fr-01e.protonvpn.com", "entry_ip": "185.159.157.150", @@ -89336,8 +86010,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "CH-FR#1", "hostname": "ch-fr-01f.protonvpn.com", "entry_ip": "185.159.157.63", @@ -89347,8 +86019,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "FR#13-TOR", "hostname": "fr-13-tor.protonvpn.net", "entry_ip": "45.128.134.199", @@ -89358,8 +86028,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "IS-FR#1", "hostname": "is-fr-01a.protonvpn.com", "entry_ip": "185.159.158.166", @@ -89369,8 +86037,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "SE-FR#1", "hostname": "se-fr-01c.protonvpn.com", "entry_ip": "185.159.156.21", @@ -89380,8 +86046,6 @@ }, { "country": "France", - "region": "", - "city": "", "name": "SE-FR#1", "hostname": "se-fr-01e.protonvpn.com", "entry_ip": "185.159.156.68", @@ -89391,7 +86055,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#21", "hostname": "fr-21.protonvpn.net", @@ -89404,7 +86067,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#24", "hostname": "node-fr-05.protonvpn.net", @@ -89419,7 +86081,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#29", "hostname": "fr-29.protonvpn.net", @@ -89432,7 +86093,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#32", "hostname": "node-fr-06.protonvpn.net", @@ -89447,7 +86107,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#37", "hostname": "fr-37.protonvpn.net", @@ -89459,7 +86118,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#39", "hostname": "node-fr-07.protonvpn.net", @@ -89471,7 +86129,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#41", "hostname": "fr-41.protonvpn.net", @@ -89482,7 +86139,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#42", "hostname": "node-fr-08.protonvpn.net", @@ -89495,7 +86151,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#45", "hostname": "fr-45.protonvpn.net", @@ -89506,7 +86161,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#46", "hostname": "node-fr-09.protonvpn.net", @@ -89519,7 +86173,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#49", "hostname": "fr-49.protonvpn.net", @@ -89530,7 +86183,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#50", "hostname": "node-fr-10.protonvpn.net", @@ -89543,7 +86195,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#53", "hostname": "fr-53.protonvpn.com", @@ -89554,7 +86205,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#54", "hostname": "lxc-fr-11.protonvpn.com", @@ -89567,7 +86217,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#57", "hostname": "fr-57.protonvpn.com", @@ -89578,7 +86227,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#58", "hostname": "lxc-fr-12.protonvpn.com", @@ -89591,7 +86239,6 @@ }, { "country": "France", - "region": "", "city": "Paris", "name": "FR#9", "hostname": "lxc-fr-03.protonvpn.com", @@ -89605,8 +86252,6 @@ }, { "country": "Georgia", - "region": "", - "city": "", "name": "IS-GE#1", "hostname": "is-ge-01a.protonvpn.com", "entry_ip": "185.159.158.182", @@ -89616,7 +86261,6 @@ }, { "country": "Georgia", - "region": "", "city": "Tbilisi", "name": "GE#1", "hostname": "node-ge-01.protonvpn.net", @@ -89632,8 +86276,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "CH-DE#1", "hostname": "ch-de-01a.protonvpn.com", "entry_ip": "185.159.157.77", @@ -89643,8 +86285,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "CH-DE#1", "hostname": "ch-de-01c.protonvpn.com", "entry_ip": "185.159.157.102", @@ -89654,8 +86294,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "DE#53-TOR", "hostname": "de-53-tor.protonvpn.net", "entry_ip": "194.126.177.9", @@ -89665,8 +86303,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "DE#7-TOR", "hostname": "de-07-tor.protonvpn.net", "entry_ip": "37.120.217.87", @@ -89676,8 +86312,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "IS-DE#1", "hostname": "is-de-01b.protonvpn.com", "entry_ip": "185.159.158.178", @@ -89687,8 +86321,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "IS-DE#1", "hostname": "is-de-01c.protonvpn.com", "entry_ip": "185.159.158.139", @@ -89698,8 +86330,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "IS-DE#1", "hostname": "is-de-01d.protonvpn.com", "entry_ip": "185.159.158.144", @@ -89709,8 +86339,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "IS-DE#1", "hostname": "is-de-01e.protonvpn.com", "entry_ip": "185.159.158.156", @@ -89720,8 +86348,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "IS-DE#1", "hostname": "is-de-01f.protonvpn.com", "entry_ip": "185.159.158.157", @@ -89731,8 +86357,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "IS-DE#1", "hostname": "is-de-01g.protonvpn.com", "entry_ip": "185.159.158.179", @@ -89742,8 +86366,6 @@ }, { "country": "Germany", - "region": "", - "city": "", "name": "IS-DE#1", "hostname": "is-de-01h.protonvpn.com", "entry_ip": "185.159.158.180", @@ -89753,7 +86375,6 @@ }, { "country": "Germany", - "region": "", "city": "Berlin", "name": "DE#13", "hostname": "de-13.protonvpn.com", @@ -89766,7 +86387,6 @@ }, { "country": "Germany", - "region": "", "city": "Berlin", "name": "DE#16", "hostname": "lxc-de-04.protonvpn.com", @@ -89781,7 +86401,6 @@ }, { "country": "Germany", - "region": "", "city": "Berlin", "name": "DE#33", "hostname": "de-33.protonvpn.net", @@ -89792,7 +86411,6 @@ }, { "country": "Germany", - "region": "", "city": "Berlin", "name": "DE#34", "hostname": "node-de-07.protonvpn.net", @@ -89805,7 +86423,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#29", "hostname": "de-29.protonvpn.net", @@ -89816,7 +86433,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#30", "hostname": "node-de-06.protonvpn.net", @@ -89829,7 +86445,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#45", "hostname": "de-45.protonvpn.com", @@ -89840,7 +86455,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#46", "hostname": "lxc-de-10.protonvpn.com", @@ -89853,7 +86467,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#49", "hostname": "de-49.protonvpn.com", @@ -89864,7 +86477,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#50", "hostname": "lxc-de-11.protonvpn.com", @@ -89877,7 +86489,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#54", "hostname": "de-54.protonvpn.net", @@ -89891,7 +86502,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#58", "hostname": "node-de-12.protonvpn.net", @@ -89909,7 +86519,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#65", "hostname": "de-65.protonvpn.net", @@ -89923,7 +86532,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#69", "hostname": "node-de-13.protonvpn.net", @@ -89941,7 +86549,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#77", "hostname": "de-77.protonvpn.net", @@ -89955,7 +86562,6 @@ }, { "country": "Germany", - "region": "", "city": "Frankfurt", "name": "DE#81", "hostname": "node-de-14.protonvpn.net", @@ -89973,8 +86579,6 @@ }, { "country": "Greece", - "region": "", - "city": "", "name": "CH-GR#1", "hostname": "ch-gr-01a.protonvpn.com", "entry_ip": "185.159.157.65", @@ -89984,7 +86588,6 @@ }, { "country": "Greece", - "region": "", "city": "Athens", "name": "GR#1", "hostname": "gr-01.protonvpn.net", @@ -89997,7 +86600,6 @@ }, { "country": "Greece", - "region": "", "city": "Athens", "name": "GR#4", "hostname": "node-gr-01.protonvpn.net", @@ -90012,8 +86614,6 @@ }, { "country": "Hong Kong", - "region": "", - "city": "", "name": "CH-HK#1", "hostname": "ch-hk-01a.protonvpn.com", "entry_ip": "185.159.157.108", @@ -90023,8 +86623,6 @@ }, { "country": "Hong Kong", - "region": "", - "city": "", "name": "HK#5-TOR", "hostname": "hk-05-tor.protonvpn.net", "entry_ip": "209.58.185.154", @@ -90034,8 +86632,6 @@ }, { "country": "Hong Kong", - "region": "", - "city": "", "name": "IS-HK#1", "hostname": "is-hk-01a.protonvpn.com", "entry_ip": "185.159.158.152", @@ -90045,8 +86641,6 @@ }, { "country": "Hong Kong", - "region": "", - "city": "", "name": "SE-HK#1", "hostname": "se-hk-01a.protonvpn.com", "entry_ip": "185.159.156.11", @@ -90056,8 +86650,6 @@ }, { "country": "Hong Kong", - "region": "", - "city": "", "name": "SE-HK#1", "hostname": "se-hk-01c.protonvpn.com", "entry_ip": "185.159.156.65", @@ -90067,7 +86659,6 @@ }, { "country": "Hong Kong", - "region": "", "city": "Hong Kong", "name": "HK#1", "hostname": "hk-01.protonvpn.net", @@ -90079,7 +86670,6 @@ }, { "country": "Hong Kong", - "region": "", "city": "Hong Kong", "name": "HK#14", "hostname": "hk-14.protonvpn.net", @@ -90090,7 +86680,6 @@ }, { "country": "Hong Kong", - "region": "", "city": "Hong Kong", "name": "HK#15", "hostname": "node-hk-03.protonvpn.net", @@ -90103,7 +86692,6 @@ }, { "country": "Hong Kong", - "region": "", "city": "Hong Kong", "name": "HK#3", "hostname": "node-hk-01.protonvpn.net", @@ -90115,7 +86703,6 @@ }, { "country": "Hong Kong", - "region": "", "city": "Hong Kong", "name": "HK#6", "hostname": "hk-06.protonvpn.net", @@ -90128,7 +86715,6 @@ }, { "country": "Hong Kong", - "region": "", "city": "Hong Kong", "name": "HK#9", "hostname": "node-hk-02.protonvpn.net", @@ -90143,8 +86729,6 @@ }, { "country": "Hungary", - "region": "", - "city": "", "name": "CH-HU#1", "hostname": "ch-hu-01a.protonvpn.com", "entry_ip": "185.159.157.105", @@ -90154,8 +86738,6 @@ }, { "country": "Hungary", - "region": "", - "city": "", "name": "IS-HU#1", "hostname": "is-hu-01a.protonvpn.com", "entry_ip": "185.159.158.155", @@ -90165,7 +86747,6 @@ }, { "country": "Hungary", - "region": "", "city": "Budapest", "name": "HU#1", "hostname": "hu-01.protonvpn.net", @@ -90178,7 +86759,6 @@ }, { "country": "Hungary", - "region": "", "city": "Budapest", "name": "HU#10", "hostname": "node-hu-02.protonvpn.net", @@ -90191,7 +86771,6 @@ }, { "country": "Hungary", - "region": "", "city": "Budapest", "name": "HU#4", "hostname": "node-hu-01.protonvpn.net", @@ -90206,7 +86785,6 @@ }, { "country": "Hungary", - "region": "", "city": "Budapest", "name": "HU#9", "hostname": "hu-09.protonvpn.net", @@ -90217,8 +86795,6 @@ }, { "country": "Iceland", - "region": "", - "city": "", "name": "IS#9-TOR", "hostname": "is-09-tor.protonvpn.net", "entry_ip": "185.159.158.193", @@ -90228,7 +86804,6 @@ }, { "country": "Iceland", - "region": "", "city": "Reykjavik", "name": "IS#1", "hostname": "is-01.protonvpn.net", @@ -90240,7 +86815,6 @@ }, { "country": "Iceland", - "region": "", "city": "Reykjavik", "name": "IS#3", "hostname": "node-is-02.protonvpn.net", @@ -90252,7 +86826,6 @@ }, { "country": "Iceland", - "region": "", "city": "Reykjavik", "name": "IS#5", "hostname": "is-05.protonvpn.net", @@ -90264,7 +86837,6 @@ }, { "country": "Iceland", - "region": "", "city": "Reykjavik", "name": "IS#7", "hostname": "node-is-01.protonvpn.net", @@ -90276,8 +86848,6 @@ }, { "country": "India", - "region": "", - "city": "", "name": "CH-IN#1", "hostname": "ch-in-01b.protonvpn.com", "entry_ip": "185.159.157.64", @@ -90287,8 +86857,6 @@ }, { "country": "India", - "region": "", - "city": "", "name": "CH-IN#1", "hostname": "ch-in-01c.protonvpn.com", "entry_ip": "185.159.157.40", @@ -90298,7 +86866,6 @@ }, { "country": "India", - "region": "", "city": "Mumbai", "name": "IN#3", "hostname": "in-03.protonvpn.net", @@ -90311,7 +86878,6 @@ }, { "country": "India", - "region": "", "city": "Mumbai", "name": "IN#6", "hostname": "node-in-02.protonvpn.net", @@ -90326,7 +86892,6 @@ }, { "country": "India", - "region": "", "city": "Pune", "name": "IN#1", "hostname": "in-01b.protonvpn.net", @@ -90337,7 +86902,6 @@ }, { "country": "India", - "region": "", "city": "Pune", "name": "IN#2", "hostname": "node-in-01b.protonvpn.net", @@ -90348,8 +86912,6 @@ }, { "country": "Ireland", - "region": "", - "city": "", "name": "CH-IE#1", "hostname": "ch-ie-01a.protonvpn.com", "entry_ip": "185.159.157.89", @@ -90359,8 +86921,6 @@ }, { "country": "Ireland", - "region": "", - "city": "", "name": "IS-IE#1", "hostname": "is-ie-01a.protonvpn.com", "entry_ip": "185.159.158.118", @@ -90370,8 +86930,6 @@ }, { "country": "Ireland", - "region": "", - "city": "", "name": "IS-IE#1", "hostname": "is-ie-01c.protonvpn.com", "entry_ip": "185.159.158.120", @@ -90381,7 +86939,6 @@ }, { "country": "Ireland", - "region": "", "city": "Dublin", "name": "IE#1", "hostname": "ie-01.protonvpn.net", @@ -90392,7 +86949,6 @@ }, { "country": "Ireland", - "region": "", "city": "Dublin", "name": "IE#2", "hostname": "node-ie-01.protonvpn.net", @@ -90405,7 +86961,6 @@ }, { "country": "Ireland", - "region": "", "city": "Dublin", "name": "IE#5", "hostname": "ie-05.protonvpn.net", @@ -90418,7 +86973,6 @@ }, { "country": "Ireland", - "region": "", "city": "Dublin", "name": "IE#8", "hostname": "node-ie-02.protonvpn.net", @@ -90433,8 +86987,6 @@ }, { "country": "Israel", - "region": "", - "city": "", "name": "IS-IL#1", "hostname": "is-il-01e.protonvpn.com", "entry_ip": "185.159.158.130", @@ -90444,7 +86996,6 @@ }, { "country": "Israel", - "region": "", "city": "Tel Aviv", "name": "IL#1", "hostname": "il-01d.protonvpn.net", @@ -90455,7 +87006,6 @@ }, { "country": "Israel", - "region": "", "city": "Tel Aviv", "name": "IL#2", "hostname": "node-il-01d.protonvpn.net", @@ -90469,7 +87019,6 @@ { "country": "Israel", "region": "South", - "city": "", "name": "CH-IL#1", "hostname": "ch-il-01a.protonvpn.com", "entry_ip": "185.159.157.168", @@ -90503,8 +87052,6 @@ }, { "country": "Italy", - "region": "", - "city": "", "name": "CH-IT#1", "hostname": "ch-it-01a.protonvpn.com", "entry_ip": "185.159.157.18", @@ -90514,8 +87061,6 @@ }, { "country": "Italy", - "region": "", - "city": "", "name": "CH-IT#1", "hostname": "ch-it-01b.protonvpn.com", "entry_ip": "185.159.157.87", @@ -90525,8 +87070,6 @@ }, { "country": "Italy", - "region": "", - "city": "", "name": "IS-IT#1", "hostname": "is-it-01a.protonvpn.com", "entry_ip": "185.159.158.154", @@ -90536,7 +87079,6 @@ }, { "country": "Italy", - "region": "", "city": "Milan", "name": "IT#1", "hostname": "it-01.protonvpn.com", @@ -90548,7 +87090,6 @@ }, { "country": "Italy", - "region": "", "city": "Milan", "name": "IT#13", "hostname": "it-13.protonvpn.com", @@ -90559,7 +87100,6 @@ }, { "country": "Italy", - "region": "", "city": "Milan", "name": "IT#14", "hostname": "lxc-it-03.protonvpn.com", @@ -90572,7 +87112,6 @@ }, { "country": "Italy", - "region": "", "city": "Milan", "name": "IT#3", "hostname": "lxc-it-01.protonvpn.com", @@ -90584,7 +87123,6 @@ }, { "country": "Italy", - "region": "", "city": "Milan", "name": "IT#5", "hostname": "it-05.protonvpn.com", @@ -90597,7 +87135,6 @@ }, { "country": "Italy", - "region": "", "city": "Milan", "name": "IT#8", "hostname": "lxc-it-02.protonvpn.com", @@ -90612,8 +87149,6 @@ }, { "country": "Japan", - "region": "", - "city": "", "name": "CH-JP#1", "hostname": "ch-jp-01a.protonvpn.com", "entry_ip": "185.159.157.80", @@ -90623,8 +87158,6 @@ }, { "country": "Japan", - "region": "", - "city": "", "name": "JP-FREE#1", "hostname": "lxc-jp-11.protonvpn.com", "entry_ip": "103.125.235.18", @@ -90637,8 +87170,6 @@ }, { "country": "Japan", - "region": "", - "city": "", "name": "JP-FREE#2", "hostname": "node-jp-16.protonvpn.net", "entry_ip": "138.199.22.102", @@ -90659,8 +87190,6 @@ }, { "country": "Japan", - "region": "", - "city": "", "name": "JP-FREE#3", "hostname": "lxc-jp-13.protonvpn.com", "entry_ip": "45.14.71.5", @@ -90673,8 +87202,6 @@ }, { "country": "Japan", - "region": "", - "city": "", "name": "JP-FREE#3", "hostname": "lxc-jp-15.protonvpn.com", "entry_ip": "45.14.71.7", @@ -90687,8 +87214,6 @@ }, { "country": "Japan", - "region": "", - "city": "", "name": "JP-FREE#4", "hostname": "node-jp-18.protonvpn.net", "entry_ip": "138.199.21.193", @@ -90709,8 +87234,6 @@ }, { "country": "Japan", - "region": "", - "city": "", "name": "SE-JP#1", "hostname": "se-jp-01a.protonvpn.com", "entry_ip": "185.159.156.56", @@ -90720,8 +87243,6 @@ }, { "country": "Japan", - "region": "", - "city": "", "name": "SE-JP#1", "hostname": "se-jp-01d.protonvpn.com", "entry_ip": "185.159.156.37", @@ -90731,7 +87252,6 @@ }, { "country": "Japan", - "region": "", "city": "Osaka", "name": "JP#51", "hostname": "jp-51.protonvpn.net", @@ -90744,7 +87264,6 @@ }, { "country": "Japan", - "region": "", "city": "Osaka", "name": "JP#54", "hostname": "node-jp-14.protonvpn.net", @@ -90759,7 +87278,6 @@ }, { "country": "Japan", - "region": "", "city": "Tokyo", "name": "JP#43", "hostname": "jp-43.protonvpn.net", @@ -90771,7 +87289,6 @@ }, { "country": "Japan", - "region": "", "city": "Tokyo", "name": "JP#45", "hostname": "node-jp-12.protonvpn.net", @@ -90787,7 +87304,6 @@ }, { "country": "Japan", - "region": "", "city": "Tokyo", "name": "JP#59", "hostname": "jp-59.protonvpn.net", @@ -90801,7 +87317,6 @@ }, { "country": "Japan", - "region": "", "city": "Tokyo", "name": "JP#69", "hostname": "node-jp-17.protonvpn.net", @@ -90819,8 +87334,6 @@ }, { "country": "Korea", - "region": "", - "city": "", "name": "SE-KR#2", "hostname": "se-kr-01a.protonvpn.com", "entry_ip": "185.159.156.87", @@ -90830,7 +87343,6 @@ }, { "country": "Korea", - "region": "", "city": "Seoul", "name": "KR#13", "hostname": "node-kr-03.protonvpn.net", @@ -90848,8 +87360,6 @@ }, { "country": "Latvia", - "region": "", - "city": "", "name": "CH-LV#1", "hostname": "ch-lv-01a.protonvpn.com", "entry_ip": "185.159.157.61", @@ -90859,8 +87369,6 @@ }, { "country": "Latvia", - "region": "", - "city": "", "name": "CH-LV#1", "hostname": "ch-lv-01b.protonvpn.com", "entry_ip": "185.159.157.81", @@ -90870,7 +87378,6 @@ }, { "country": "Latvia", - "region": "", "city": "Riga", "name": "LV#1", "hostname": "lv-01.protonvpn.net", @@ -90883,7 +87390,6 @@ }, { "country": "Latvia", - "region": "", "city": "Riga", "name": "LV#4", "hostname": "node-lv-01.protonvpn.net", @@ -90898,8 +87404,6 @@ }, { "country": "Lithuania", - "region": "", - "city": "", "name": "CH-LT#1", "hostname": "ch-lt-01a.protonvpn.com", "entry_ip": "185.159.157.110", @@ -90909,8 +87413,6 @@ }, { "country": "Lithuania", - "region": "", - "city": "", "name": "SE-LT#1", "hostname": "se-lt-01a.protonvpn.com", "entry_ip": "185.159.156.43", @@ -90920,7 +87422,6 @@ }, { "country": "Lithuania", - "region": "", "city": "Siauliai", "name": "LT#1", "hostname": "lt-01.protonvpn.net", @@ -90933,7 +87434,6 @@ }, { "country": "Lithuania", - "region": "", "city": "Siauliai", "name": "LT#4", "hostname": "node-lt-01.protonvpn.net", @@ -90948,8 +87448,6 @@ }, { "country": "Luxembourg", - "region": "", - "city": "", "name": "CH-LU#1", "hostname": "ch-lu-01d.protonvpn.com", "entry_ip": "185.159.157.66", @@ -90959,8 +87457,6 @@ }, { "country": "Luxembourg", - "region": "", - "city": "", "name": "IS-LU#1", "hostname": "is-lu-01a.protonvpn.com", "entry_ip": "185.159.158.147", @@ -90970,7 +87466,6 @@ }, { "country": "Luxembourg", - "region": "", "city": "Luxembourg City", "name": "LU#13", "hostname": "lu-13.protonvpn.net", @@ -90981,7 +87476,6 @@ }, { "country": "Luxembourg", - "region": "", "city": "Luxembourg City", "name": "LU#14", "hostname": "node-lu-03.protonvpn.net", @@ -90994,7 +87488,6 @@ }, { "country": "Luxembourg", - "region": "", "city": "Luxembourg City", "name": "LU#5", "hostname": "lu-05.protonvpn.com", @@ -91007,7 +87500,6 @@ }, { "country": "Luxembourg", - "region": "", "city": "Luxembourg City", "name": "LU#8", "hostname": "lxc-lu-02.protonvpn.com", @@ -91022,8 +87514,6 @@ }, { "country": "Malaysia", - "region": "", - "city": "", "name": "CH-MY#1", "hostname": "ch-my-01a.protonvpn.com", "entry_ip": "185.159.157.95", @@ -91033,7 +87523,6 @@ }, { "country": "Malaysia", - "region": "", "city": "Johor Bahru", "name": "MY#1", "hostname": "my-01.protonvpn.net", @@ -91046,7 +87535,6 @@ }, { "country": "Malaysia", - "region": "", "city": "Johor Bahru", "name": "MY#4", "hostname": "node-my-01.protonvpn.net", @@ -91061,8 +87549,6 @@ }, { "country": "Mexico", - "region": "", - "city": "", "name": "CH-MX#1", "hostname": "ch-mx-01a.protonvpn.com", "entry_ip": "185.159.157.91", @@ -91072,7 +87558,6 @@ }, { "country": "Mexico", - "region": "", "city": "Chiapas", "name": "MX#1", "hostname": "mx-01.protonvpn.net", @@ -91085,7 +87570,6 @@ }, { "country": "Mexico", - "region": "", "city": "Chiapas", "name": "MX#4", "hostname": "node-mx-01.protonvpn.net", @@ -91100,8 +87584,6 @@ }, { "country": "Moldova", - "region": "", - "city": "", "name": "CH-MD#1", "hostname": "ch-md-01a.protonvpn.com", "entry_ip": "185.159.157.111", @@ -91111,8 +87593,6 @@ }, { "country": "Moldova", - "region": "", - "city": "", "name": "SE-MD#1", "hostname": "se-md-01a.protonvpn.com", "entry_ip": "185.159.156.45", @@ -91122,7 +87602,6 @@ }, { "country": "Moldova", - "region": "", "city": "Chisinau", "name": "MD#1", "hostname": "md-01.protonvpn.net", @@ -91135,7 +87614,6 @@ }, { "country": "Moldova", - "region": "", "city": "Chisinau", "name": "MD#4", "hostname": "node-md-01.protonvpn.net", @@ -91150,8 +87628,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "CH-NL#1", "hostname": "ch-nl-01a.protonvpn.com", "entry_ip": "185.159.157.28", @@ -91161,8 +87637,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "CH-NL#1", "hostname": "ch-nl-01b.protonvpn.com", "entry_ip": "185.159.157.83", @@ -91172,8 +87646,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01a.protonvpn.com", "entry_ip": "185.159.158.105", @@ -91183,8 +87655,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01b.protonvpn.com", "entry_ip": "185.159.158.55", @@ -91194,8 +87664,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01c.protonvpn.com", "entry_ip": "185.159.158.134", @@ -91205,8 +87673,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01d.protonvpn.com", "entry_ip": "185.159.158.135", @@ -91216,8 +87682,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01e.protonvpn.com", "entry_ip": "185.159.158.146", @@ -91227,8 +87691,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01f.protonvpn.com", "entry_ip": "185.159.158.173", @@ -91238,8 +87700,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01g.protonvpn.com", "entry_ip": "185.159.158.174", @@ -91249,8 +87709,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01h.protonvpn.com", "entry_ip": "185.159.158.175", @@ -91260,8 +87718,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "IS-NL#1", "hostname": "is-nl-01i.protonvpn.com", "entry_ip": "185.159.158.176", @@ -91271,8 +87727,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#1", "hostname": "lxc-nl-02.protonvpn.com", "entry_ip": "217.23.3.76", @@ -91285,8 +87739,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#1", "hostname": "lxc-nl-03.protonvpn.com", "entry_ip": "89.39.107.188", @@ -91299,8 +87751,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#1", "hostname": "lxc-nl-04.protonvpn.com", "entry_ip": "89.39.107.109", @@ -91313,8 +87763,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#1", "hostname": "lxc-nl-05.protonvpn.com", "entry_ip": "89.39.107.113", @@ -91327,8 +87775,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#1", "hostname": "lxc-nl-06.protonvpn.com", "entry_ip": "89.39.107.185", @@ -91341,8 +87787,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#1", "hostname": "lxc-nl-09.protonvpn.com", "entry_ip": "109.201.133.20", @@ -91355,8 +87799,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#11", "hostname": "lxc-nl-21.protonvpn.com", "entry_ip": "185.107.95.225", @@ -91369,8 +87811,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#2", "hostname": "lxc-nl-11.protonvpn.com", "entry_ip": "46.166.142.218", @@ -91383,8 +87823,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#3", "hostname": "lxc-nl-12.protonvpn.com", "entry_ip": "185.165.241.34", @@ -91397,8 +87835,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#3", "hostname": "lxc-nl-16.protonvpn.com", "entry_ip": "192.40.57.226", @@ -91411,8 +87847,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#3", "hostname": "lxc-nl-17.protonvpn.com", "entry_ip": "192.40.57.231", @@ -91425,8 +87859,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#4", "hostname": "lxc-nl-22.protonvpn.com", "entry_ip": "190.2.132.198", @@ -91439,8 +87871,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#4", "hostname": "lxc-nl-23.protonvpn.com", "entry_ip": "89.38.97.115", @@ -91453,8 +87883,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#4", "hostname": "lxc-nl-24.protonvpn.com", "entry_ip": "190.2.131.198", @@ -91467,8 +87895,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#5", "hostname": "lxc-nl-25.protonvpn.com", "entry_ip": "190.2.133.223", @@ -91481,8 +87907,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#5", "hostname": "lxc-nl-26.protonvpn.com", "entry_ip": "190.2.131.200", @@ -91495,8 +87919,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#5", "hostname": "lxc-nl-27.protonvpn.com", "entry_ip": "190.2.130.161", @@ -91509,8 +87931,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#6", "hostname": "lxc-nl-33.protonvpn.com", "entry_ip": "46.166.182.69", @@ -91523,8 +87943,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#6", "hostname": "lxc-nl-34.protonvpn.com", "entry_ip": "46.166.182.59", @@ -91537,8 +87955,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#6", "hostname": "lxc-nl-35.protonvpn.com", "entry_ip": "46.166.182.31", @@ -91551,8 +87967,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#7", "hostname": "lxc-nl-37.protonvpn.com", "entry_ip": "107.181.180.162", @@ -91565,8 +87979,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#7", "hostname": "lxc-nl-38.protonvpn.com", "entry_ip": "107.181.180.167", @@ -91579,8 +87991,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#8", "hostname": "nl-208.protonvpn.com", "entry_ip": "89.38.99.188", @@ -91590,8 +88000,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "NL-FREE#9", "hostname": "nl-218.protonvpn.com", "entry_ip": "190.2.138.15", @@ -91604,8 +88012,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "SE-NL#1", "hostname": "se-nl-01a.protonvpn.com", "entry_ip": "185.159.156.72", @@ -91615,8 +88021,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "SE-NL#1", "hostname": "se-nl-01b.protonvpn.com", "entry_ip": "185.159.156.73", @@ -91626,8 +88030,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "SE-NL#1", "hostname": "se-nl-01c.protonvpn.com", "entry_ip": "185.159.156.74", @@ -91637,8 +88039,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "SE-NL#1", "hostname": "se-nl-01d.protonvpn.com", "entry_ip": "185.159.156.75", @@ -91648,8 +88048,6 @@ }, { "country": "Netherlands", - "region": "", - "city": "", "name": "SE-NL#1", "hostname": "se-nl-01e.protonvpn.com", "entry_ip": "185.159.156.76", @@ -91659,7 +88057,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#1", "hostname": "nl-01.protonvpn.net", @@ -91671,7 +88068,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#13", "hostname": "nl-13.protonvpn.com", @@ -91682,7 +88078,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#14", "hostname": "lxc-nl-13.protonvpn.com", @@ -91695,7 +88090,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#17", "hostname": "lxc-nl-14.protonvpn.com", @@ -91709,7 +88103,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#21", "hostname": "lxc-nl-15.protonvpn.com", @@ -91723,7 +88116,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#25", "hostname": "nl-25.protonvpn.net", @@ -91734,7 +88126,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#26", "hostname": "node-nl-18.protonvpn.net", @@ -91747,7 +88138,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#3", "hostname": "node-nl-01.protonvpn.net", @@ -91759,7 +88149,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#37", "hostname": "nl-37.protonvpn.com", @@ -91771,7 +88160,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#39", "hostname": "lxc-nl-28.protonvpn.com", @@ -91783,7 +88171,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#41", "hostname": "lxc-nl-29.protonvpn.com", @@ -91797,7 +88184,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#45", "hostname": "nl-45.protonvpn.com", @@ -91808,7 +88194,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#46", "hostname": "lxc-nl-30.protonvpn.com", @@ -91821,7 +88206,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#49", "hostname": "lxc-nl-31.protonvpn.com", @@ -91835,7 +88219,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#5", "hostname": "lxc-nl-08.protonvpn.com", @@ -91849,7 +88232,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#57", "hostname": "nl-57.protonvpn.net", @@ -91860,7 +88242,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#58", "hostname": "node-nl-39.protonvpn.net", @@ -91873,7 +88254,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#69", "hostname": "nl-69.protonvpn.net", @@ -91884,7 +88264,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#70", "hostname": "node-nl-43.protonvpn.net", @@ -91897,7 +88276,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Amsterdam", "name": "NL#85", "hostname": "node-nl-47.protonvpn.net", @@ -91919,7 +88297,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Rotterdam", "name": "NL#73", "hostname": "nl-73.protonvpn.com", @@ -91930,7 +88307,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Rotterdam", "name": "NL#74", "hostname": "lxc-nl-44.protonvpn.com", @@ -91943,7 +88319,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Rotterdam", "name": "NL#77", "hostname": "nl-77.protonvpn.net", @@ -91954,7 +88329,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Rotterdam", "name": "NL#78", "hostname": "node-nl-45.protonvpn.net", @@ -91967,7 +88341,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Steenbergen", "name": "NL#29", "hostname": "nl-29.protonvpn.net", @@ -91980,7 +88353,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Steenbergen", "name": "NL#32", "hostname": "node-nl-20.protonvpn.net", @@ -91995,7 +88367,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Steenbergen", "name": "NL#53", "hostname": "nl-53.protonvpn.com", @@ -92006,7 +88377,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Steenbergen", "name": "NL#54", "hostname": "lxc-nl-32.protonvpn.com", @@ -92019,7 +88389,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Steenbergen", "name": "NL#81", "hostname": "nl-81.protonvpn.net", @@ -92030,7 +88399,6 @@ }, { "country": "Netherlands", - "region": "", "city": "Steenbergen", "name": "NL#82", "hostname": "node-nl-46.protonvpn.net", @@ -92043,8 +88411,6 @@ }, { "country": "New Zealand", - "region": "", - "city": "", "name": "CH-NZ#1", "hostname": "ch-nz-01a.protonvpn.com", "entry_ip": "185.159.157.97", @@ -92054,8 +88420,6 @@ }, { "country": "New Zealand", - "region": "", - "city": "", "name": "SE-NZ#1", "hostname": "se-nz-01b.protonvpn.com", "entry_ip": "185.159.156.41", @@ -92065,7 +88429,6 @@ }, { "country": "New Zealand", - "region": "", "city": "Auckland", "name": "NZ#13", "hostname": "nz-13.protonvpn.net", @@ -92078,7 +88441,6 @@ }, { "country": "New Zealand", - "region": "", "city": "Auckland", "name": "NZ#16", "hostname": "node-nz-03.protonvpn.net", @@ -92093,7 +88455,6 @@ }, { "country": "New Zealand", - "region": "", "city": "Auckland", "name": "NZ#5", "hostname": "nz-05.protonvpn.net", @@ -92106,7 +88467,6 @@ }, { "country": "New Zealand", - "region": "", "city": "Auckland", "name": "NZ#8", "hostname": "node-nz-02.protonvpn.net", @@ -92121,8 +88481,6 @@ }, { "country": "Nigeria", - "region": "", - "city": "", "name": "SE-NG#1", "hostname": "se-es-01a.protonvpn.com", "entry_ip": "185.159.156.88", @@ -92132,7 +88490,6 @@ }, { "country": "Nigeria", - "region": "", "city": "Abuja", "name": "NG#1", "hostname": "node-es-07.protonvpn.net", @@ -92147,8 +88504,6 @@ }, { "country": "Norway", - "region": "", - "city": "", "name": "CH-NO#1", "hostname": "ch-no-01a.protonvpn.com", "entry_ip": "185.159.157.156", @@ -92158,8 +88513,6 @@ }, { "country": "Norway", - "region": "", - "city": "", "name": "IS-NO#1", "hostname": "is-no-01b.protonvpn.com", "entry_ip": "185.159.158.122", @@ -92169,8 +88522,6 @@ }, { "country": "Norway", - "region": "", - "city": "", "name": "IS-NO#1", "hostname": "is-no-01d.protonvpn.com", "entry_ip": "185.159.158.145", @@ -92180,8 +88531,6 @@ }, { "country": "Norway", - "region": "", - "city": "", "name": "SE-NO#1", "hostname": "se-no-01a.protonvpn.com", "entry_ip": "185.159.156.48", @@ -92191,7 +88540,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "name": "NO#1", "hostname": "no-01.protonvpn.com", @@ -92202,7 +88550,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "name": "NO#13", "hostname": "no-13.protonvpn.net", @@ -92213,7 +88560,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "name": "NO#14", "hostname": "node-no-03.protonvpn.net", @@ -92226,7 +88572,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "name": "NO#17", "hostname": "no-17.protonvpn.net", @@ -92237,7 +88582,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "name": "NO#18", "hostname": "node-no-04.protonvpn.net", @@ -92250,7 +88594,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "name": "NO#2", "hostname": "lxc-no-01.protonvpn.com", @@ -92263,7 +88606,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "name": "NO#5", "hostname": "no-05.protonvpn.net", @@ -92276,7 +88618,6 @@ }, { "country": "Norway", - "region": "", "city": "Oslo", "name": "NO#8", "hostname": "node-no-02.protonvpn.net", @@ -92291,8 +88632,6 @@ }, { "country": "Peru", - "region": "", - "city": "", "name": "CH-PE#1", "hostname": "ch-pe-01a.protonvpn.com", "entry_ip": "185.159.157.135", @@ -92302,7 +88641,6 @@ }, { "country": "Peru", - "region": "", "city": "Lima", "name": "PE#1", "hostname": "pe-01.protonvpn.net", @@ -92315,7 +88653,6 @@ }, { "country": "Peru", - "region": "", "city": "Lima", "name": "PE#4", "hostname": "node-pe-01.protonvpn.net", @@ -92330,8 +88667,6 @@ }, { "country": "Philippines", - "region": "", - "city": "", "name": "SE-PH#1", "hostname": "se-ph-01a.protonvpn.com", "entry_ip": "185.159.156.86", @@ -92341,7 +88676,6 @@ }, { "country": "Philippines", - "region": "", "city": "Manila", "name": "PH#1", "hostname": "node-ph-01.protonvpn.net", @@ -92359,8 +88693,6 @@ }, { "country": "Poland", - "region": "", - "city": "", "name": "CH-PL#1", "hostname": "ch-pl-01a.protonvpn.com", "entry_ip": "185.159.157.32", @@ -92370,8 +88702,6 @@ }, { "country": "Poland", - "region": "", - "city": "", "name": "CH-PL#1", "hostname": "ch-pl-01b.protonvpn.com", "entry_ip": "185.159.157.33", @@ -92381,8 +88711,6 @@ }, { "country": "Poland", - "region": "", - "city": "", "name": "CH-PL#1", "hostname": "ch-pl-01c.protonvpn.com", "entry_ip": "185.159.157.96", @@ -92392,8 +88720,6 @@ }, { "country": "Poland", - "region": "", - "city": "", "name": "CH-PL#1", "hostname": "ch-pl-01d.protonvpn.com", "entry_ip": "185.159.157.151", @@ -92403,7 +88729,6 @@ }, { "country": "Poland", - "region": "", "city": "Warsaw", "name": "PL#1", "hostname": "pl-01.protonvpn.net", @@ -92415,7 +88740,6 @@ }, { "country": "Poland", - "region": "", "city": "Warsaw", "name": "PL#13", "hostname": "pl-13.protonvpn.net", @@ -92428,7 +88752,6 @@ }, { "country": "Poland", - "region": "", "city": "Warsaw", "name": "PL#16", "hostname": "node-pl-03.protonvpn.net", @@ -92443,7 +88766,6 @@ }, { "country": "Poland", - "region": "", "city": "Warsaw", "name": "PL#21", "hostname": "pl-21.protonvpn.com", @@ -92454,7 +88776,6 @@ }, { "country": "Poland", - "region": "", "city": "Warsaw", "name": "PL#22", "hostname": "lxc-pl-04.protonvpn.com", @@ -92467,7 +88788,6 @@ }, { "country": "Poland", - "region": "", "city": "Warsaw", "name": "PL#3", "hostname": "node-pl-01.protonvpn.net", @@ -92479,8 +88799,6 @@ }, { "country": "Portugal", - "region": "", - "city": "", "name": "CH-PT#1", "hostname": "ch-pt-01d.protonvpn.com", "entry_ip": "185.159.157.113", @@ -92490,8 +88808,6 @@ }, { "country": "Portugal", - "region": "", - "city": "", "name": "SE-PT#1", "hostname": "se-pt-01d.protonvpn.com", "entry_ip": "185.159.156.58", @@ -92501,7 +88817,6 @@ }, { "country": "Portugal", - "region": "", "city": "Lisbon", "name": "PT#5", "hostname": "pt-05b.protonvpn.net", @@ -92514,7 +88829,6 @@ }, { "country": "Portugal", - "region": "", "city": "Lisbon", "name": "PT#8", "hostname": "node-pt-02b.protonvpn.net", @@ -92529,8 +88843,6 @@ }, { "country": "Romania", - "region": "", - "city": "", "name": "SE-RO#1", "hostname": "se-ro-01a.protonvpn.com", "entry_ip": "185.159.156.81", @@ -92540,7 +88852,6 @@ }, { "country": "Romania", - "region": "", "city": "Bucharest", "name": "RO#16", "hostname": "ro-16.protonvpn.net", @@ -92553,7 +88864,6 @@ }, { "country": "Romania", - "region": "", "city": "Bucharest", "name": "RO#9", "hostname": "node-ro-02.protonvpn.net", @@ -92570,8 +88880,6 @@ }, { "country": "Russian Federation", - "region": "", - "city": "", "name": "IS-RU#1", "hostname": "is-ru-01a.protonvpn.com", "entry_ip": "185.159.158.132", @@ -92581,8 +88889,6 @@ }, { "country": "Russian Federation", - "region": "", - "city": "", "name": "IS-RU#1", "hostname": "is-ru-01b.protonvpn.com", "entry_ip": "185.159.158.140", @@ -92592,8 +88898,6 @@ }, { "country": "Russian Federation", - "region": "", - "city": "", "name": "IS-RU#1", "hostname": "is-ru-01c.protonvpn.com", "entry_ip": "185.159.158.59", @@ -92603,8 +88907,6 @@ }, { "country": "Russian Federation", - "region": "", - "city": "", "name": "SE-RU#1", "hostname": "se-ru-01a.protonvpn.com", "entry_ip": "185.159.156.35", @@ -92614,7 +88916,6 @@ }, { "country": "Russian Federation", - "region": "", "city": "Saint Petersburg", "name": "RU#1", "hostname": "ru-01.protonvpn.com", @@ -92626,7 +88927,6 @@ }, { "country": "Russian Federation", - "region": "", "city": "Saint Petersburg", "name": "RU#13", "hostname": "ru-13.protonvpn.net", @@ -92638,7 +88938,6 @@ }, { "country": "Russian Federation", - "region": "", "city": "Saint Petersburg", "name": "RU#15", "hostname": "node-ru-03.protonvpn.net", @@ -92650,7 +88949,6 @@ }, { "country": "Russian Federation", - "region": "", "city": "Saint Petersburg", "name": "RU#3", "hostname": "lxc-ru-01.protonvpn.com", @@ -92662,7 +88960,6 @@ }, { "country": "Russian Federation", - "region": "", "city": "Saint Petersburg", "name": "RU#5", "hostname": "ru-05.protonvpn.com", @@ -92675,7 +88972,6 @@ }, { "country": "Russian Federation", - "region": "", "city": "Saint Petersburg", "name": "RU#8", "hostname": "lxc-ru-02.protonvpn.com", @@ -92690,8 +88986,6 @@ }, { "country": "Serbia", - "region": "", - "city": "", "name": "CH-RS#1", "hostname": "ch-rs-01a.protonvpn.com", "entry_ip": "185.159.157.27", @@ -92701,7 +88995,6 @@ }, { "country": "Serbia", - "region": "", "city": "Belgrade", "name": "RS#1", "hostname": "rs-01.protonvpn.com", @@ -92714,7 +89007,6 @@ }, { "country": "Serbia", - "region": "", "city": "Belgrade", "name": "RS#4", "hostname": "lxc-rs-01.protonvpn.com", @@ -92729,8 +89021,6 @@ }, { "country": "Singapore", - "region": "", - "city": "", "name": "CH-SG#1", "hostname": "ch-sg-01b.protonvpn.com", "entry_ip": "185.159.157.138", @@ -92740,8 +89030,6 @@ }, { "country": "Singapore", - "region": "", - "city": "", "name": "CH-SG#1", "hostname": "ch-sg-01c.protonvpn.com", "entry_ip": "185.159.157.139", @@ -92751,8 +89039,6 @@ }, { "country": "Singapore", - "region": "", - "city": "", "name": "CH-SG#1", "hostname": "ch-sg-01d.protonvpn.com", "entry_ip": "185.159.157.56", @@ -92762,8 +89048,6 @@ }, { "country": "Singapore", - "region": "", - "city": "", "name": "CH-SG#1", "hostname": "ch-sg-01e.protonvpn.com", "entry_ip": "185.159.157.57", @@ -92773,8 +89057,6 @@ }, { "country": "Singapore", - "region": "", - "city": "", "name": "CH-SG#1", "hostname": "ch-sg-01f.protonvpn.com", "entry_ip": "185.159.157.58", @@ -92784,8 +89066,6 @@ }, { "country": "Singapore", - "region": "", - "city": "", "name": "CH-SG#1", "hostname": "ch-sg-01g.protonvpn.com", "entry_ip": "185.159.157.140", @@ -92795,8 +89075,6 @@ }, { "country": "Singapore", - "region": "", - "city": "", "name": "SE-SG#1", "hostname": "se-sg-01a.protonvpn.com", "entry_ip": "185.159.156.53", @@ -92806,7 +89084,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#21", "hostname": "sg-21.protonvpn.net", @@ -92818,7 +89095,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#23", "hostname": "node-sg-06.protonvpn.net", @@ -92834,7 +89110,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#29", "hostname": "lxc-sg-07.protonvpn.com", @@ -92852,7 +89127,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#37", "hostname": "sg-37.protonvpn.net", @@ -92866,7 +89140,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#41", "hostname": "node-sg-08.protonvpn.net", @@ -92880,7 +89153,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#45", "hostname": "sg-45.protonvpn.net", @@ -92893,7 +89165,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#48", "hostname": "node-sg-09.protonvpn.net", @@ -92908,7 +89179,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#57", "hostname": "lxc-sg-11.protonvpn.com", @@ -92922,7 +89192,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#61", "hostname": "sg-61.protonvpn.net", @@ -92934,7 +89203,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#63", "hostname": "node-sg-12.protonvpn.net", @@ -92946,7 +89214,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#65", "hostname": "sg-65.protonvpn.com", @@ -92957,7 +89224,6 @@ }, { "country": "Singapore", - "region": "", "city": "Singapore", "name": "SG#66", "hostname": "lxc-sg-13.protonvpn.com", @@ -92970,8 +89236,6 @@ }, { "country": "Slovakia", - "region": "", - "city": "", "name": "CH-SK#1", "hostname": "ch-sk-01a.protonvpn.com", "entry_ip": "185.159.157.62", @@ -92981,8 +89245,6 @@ }, { "country": "Slovakia", - "region": "", - "city": "", "name": "CH-SK#1", "hostname": "ch-sk-01b.protonvpn.com", "entry_ip": "185.159.157.85", @@ -92992,7 +89254,6 @@ }, { "country": "Slovakia", - "region": "", "city": "Bratislava", "name": "SK#1", "hostname": "sk-01.protonvpn.com", @@ -93005,7 +89266,6 @@ }, { "country": "Slovakia", - "region": "", "city": "Bratislava", "name": "SK#4", "hostname": "lxc-sk-01.protonvpn.com", @@ -93020,8 +89280,6 @@ }, { "country": "Slovenia", - "region": "", - "city": "", "name": "CH-SI#1", "hostname": "ch-si-01a.protonvpn.com", "entry_ip": "185.159.157.93", @@ -93031,7 +89289,6 @@ }, { "country": "Slovenia", - "region": "", "city": "Ljubljana", "name": "SI#1", "hostname": "si-01.protonvpn.net", @@ -93044,7 +89301,6 @@ }, { "country": "Slovenia", - "region": "", "city": "Ljubljana", "name": "SI#4", "hostname": "node-si-01.protonvpn.net", @@ -93059,8 +89315,6 @@ }, { "country": "South Africa", - "region": "", - "city": "", "name": "IS-ZA#1", "hostname": "is-za-01a.protonvpn.com", "entry_ip": "185.159.158.184", @@ -93070,7 +89324,6 @@ }, { "country": "South Africa", - "region": "", "city": "Johannesburg", "name": "ZA#13", "hostname": "za-13.protonvpn.net", @@ -93083,7 +89336,6 @@ }, { "country": "South Africa", - "region": "", "city": "Johannesburg", "name": "ZA#16", "hostname": "node-za-01.protonvpn.net", @@ -93102,8 +89354,6 @@ }, { "country": "Spain", - "region": "", - "city": "", "name": "CH-ES#1", "hostname": "ch-es-01a.protonvpn.com", "entry_ip": "185.159.157.43", @@ -93113,8 +89363,6 @@ }, { "country": "Spain", - "region": "", - "city": "", "name": "IS-ES#1", "hostname": "is-es-01c.protonvpn.com", "entry_ip": "185.159.158.148", @@ -93124,8 +89372,6 @@ }, { "country": "Spain", - "region": "", - "city": "", "name": "IS-ES#1", "hostname": "is-es-01d.protonvpn.com", "entry_ip": "185.159.158.149", @@ -93135,7 +89381,6 @@ }, { "country": "Spain", - "region": "", "city": "Madrid", "name": "ES#12", "hostname": "node-es-03.protonvpn.net", @@ -93150,7 +89395,6 @@ }, { "country": "Spain", - "region": "", "city": "Madrid", "name": "ES#17", "hostname": "es-17.protonvpn.com", @@ -93161,7 +89405,6 @@ }, { "country": "Spain", - "region": "", "city": "Madrid", "name": "ES#18", "hostname": "lxc-es-04.protonvpn.com", @@ -93174,7 +89417,6 @@ }, { "country": "Spain", - "region": "", "city": "Madrid", "name": "ES#21", "hostname": "es-21.protonvpn.net", @@ -93185,7 +89427,6 @@ }, { "country": "Spain", - "region": "", "city": "Madrid", "name": "ES#22", "hostname": "node-es-05.protonvpn.net", @@ -93198,7 +89439,6 @@ }, { "country": "Spain", - "region": "", "city": "Madrid", "name": "ES#25", "hostname": "node-es-06.protonvpn.net", @@ -93213,7 +89453,6 @@ }, { "country": "Spain", - "region": "", "city": "Madrid", "name": "ES#9", "hostname": "es-09.protonvpn.net", @@ -93226,8 +89465,6 @@ }, { "country": "Sweden", - "region": "", - "city": "", "name": "SE#31-TOR", "hostname": "se-09-tor.protonvpn.net", "entry_ip": "185.159.156.90", @@ -93237,7 +89474,6 @@ }, { "country": "Sweden", - "region": "", "city": "Stockholm", "name": "SE#1", "hostname": "node-se-01.protonvpn.net", @@ -93251,7 +89487,6 @@ }, { "country": "Sweden", - "region": "", "city": "Stockholm", "name": "SE#17", "hostname": "se-17.protonvpn.net", @@ -93265,7 +89500,6 @@ }, { "country": "Sweden", - "region": "", "city": "Stockholm", "name": "SE#23", "hostname": "node-se-05.protonvpn.net", @@ -93283,7 +89517,6 @@ }, { "country": "Sweden", - "region": "", "city": "Stockholm", "name": "SE#3", "hostname": "node-se-02.protonvpn.net", @@ -93297,8 +89530,6 @@ }, { "country": "Switzerland", - "region": "", - "city": "", "name": "CH#18-TOR", "hostname": "ch-09-tor.protonvpn.net", "entry_ip": "185.159.157.176", @@ -93308,7 +89539,6 @@ }, { "country": "Switzerland", - "region": "", "city": "Zurich", "name": "CH#10", "hostname": "node-ch-05.protonvpn.net", @@ -93320,7 +89550,6 @@ }, { "country": "Switzerland", - "region": "", "city": "Zurich", "name": "CH#12", "hostname": "node-ch-06.protonvpn.net", @@ -93332,7 +89561,6 @@ }, { "country": "Switzerland", - "region": "", "city": "Zurich", "name": "CH#14", "hostname": "node-ch-07.protonvpn.net", @@ -93344,7 +89572,6 @@ }, { "country": "Switzerland", - "region": "", "city": "Zurich", "name": "CH#16", "hostname": "node-ch-08.protonvpn.net", @@ -93356,7 +89583,6 @@ }, { "country": "Switzerland", - "region": "", "city": "Zurich", "name": "CH#5", "hostname": "node-ch-02.protonvpn.net", @@ -93368,7 +89594,6 @@ }, { "country": "Switzerland", - "region": "", "city": "Zurich", "name": "CH#7", "hostname": "node-ch-03.protonvpn.net", @@ -93380,8 +89605,6 @@ }, { "country": "Taiwan", - "region": "", - "city": "", "name": "CH-TW#1", "hostname": "ch-tw-01a.protonvpn.com", "entry_ip": "185.159.157.141", @@ -93391,8 +89614,6 @@ }, { "country": "Taiwan", - "region": "", - "city": "", "name": "SE-TW#01", "hostname": "se-tw-01a.protonvpn.com", "entry_ip": "185.159.156.82", @@ -93402,7 +89623,6 @@ }, { "country": "Taiwan", - "region": "", "city": "Taichung City", "name": "TW#13", "hostname": "tw-13.protonvpn.net", @@ -93415,7 +89635,6 @@ }, { "country": "Taiwan", - "region": "", "city": "Taichung City", "name": "TW#16", "hostname": "node-tw-03.protonvpn.net", @@ -93430,7 +89649,6 @@ }, { "country": "Taiwan", - "region": "", "city": "Taipei", "name": "TW#21", "hostname": "node-tw-04.protonvpn.net", @@ -93448,8 +89666,6 @@ }, { "country": "Turkey", - "region": "", - "city": "", "name": "CH-TR#1", "hostname": "ch-tr-01a.protonvpn.com", "entry_ip": "185.159.157.72", @@ -93459,7 +89675,6 @@ }, { "country": "Turkey", - "region": "", "city": "Istanbul", "name": "TR#12", "hostname": "lxc-tr-02.protonvpn.com", @@ -93474,7 +89689,6 @@ }, { "country": "Turkey", - "region": "", "city": "Istanbul", "name": "TR#9", "hostname": "tr-09.protonvpn.com", @@ -93487,8 +89701,6 @@ }, { "country": "Ukraine", - "region": "", - "city": "", "name": "CH-UA#1", "hostname": "ch-ua-01a.protonvpn.com", "entry_ip": "185.159.157.60", @@ -93498,7 +89710,6 @@ }, { "country": "Ukraine", - "region": "", "city": "Kyiv", "name": "UA#12", "hostname": "node-ua-02.protonvpn.net", @@ -93513,7 +89724,6 @@ }, { "country": "Ukraine", - "region": "", "city": "Kyiv", "name": "UA#9", "hostname": "ua-09.protonvpn.net", @@ -93526,8 +89736,6 @@ }, { "country": "United Arab Emirates", - "region": "", - "city": "", "name": "CH-AE#1", "hostname": "ch-ae-01a.protonvpn.com", "entry_ip": "185.159.157.161", @@ -93537,8 +89745,6 @@ }, { "country": "United Arab Emirates", - "region": "", - "city": "", "name": "CH-AE#1", "hostname": "ch-ae-01b.protonvpn.com", "entry_ip": "185.159.157.104", @@ -93548,7 +89754,6 @@ }, { "country": "United Arab Emirates", - "region": "", "city": "Dubai", "name": "AE#12", "hostname": "node-ae-02.protonvpn.net", @@ -93563,7 +89768,6 @@ }, { "country": "United Arab Emirates", - "region": "", "city": "Dubai", "name": "AE#17", "hostname": "ae-17.protonvpn.net", @@ -93574,7 +89778,6 @@ }, { "country": "United Arab Emirates", - "region": "", "city": "Dubai", "name": "AE#18", "hostname": "node-ae-03.protonvpn.net", @@ -93587,7 +89790,6 @@ }, { "country": "United Arab Emirates", - "region": "", "city": "Dubai", "name": "AE#9", "hostname": "ae-09.protonvpn.net", @@ -93600,8 +89802,6 @@ }, { "country": "United Kingdom", - "region": "", - "city": "", "name": "CH-UK#1", "hostname": "ch-uk-01a.protonvpn.com", "entry_ip": "185.159.157.152", @@ -93611,8 +89811,6 @@ }, { "country": "United Kingdom", - "region": "", - "city": "", "name": "CH-UK#1", "hostname": "ch-uk-01b.protonvpn.com", "entry_ip": "185.159.157.103", @@ -93622,8 +89820,6 @@ }, { "country": "United Kingdom", - "region": "", - "city": "", "name": "CH-UK#1", "hostname": "ch-uk-01c.protonvpn.com", "entry_ip": "185.159.157.117", @@ -93633,8 +89829,6 @@ }, { "country": "United Kingdom", - "region": "", - "city": "", "name": "CH-UK#1", "hostname": "ch-uk-01d.protonvpn.com", "entry_ip": "185.159.157.153", @@ -93644,8 +89838,6 @@ }, { "country": "United Kingdom", - "region": "", - "city": "", "name": "CH-UK#1", "hostname": "ch-uk-01h.protonvpn.com", "entry_ip": "185.159.157.16", @@ -93655,8 +89847,6 @@ }, { "country": "United Kingdom", - "region": "", - "city": "", "name": "CH-UK#1", "hostname": "ch-uk-01i.protonvpn.com", "entry_ip": "185.159.157.88", @@ -93666,8 +89856,6 @@ }, { "country": "United Kingdom", - "region": "", - "city": "", "name": "IS-UK#1", "hostname": "is-uk-01a.protonvpn.com", "entry_ip": "185.159.158.171", @@ -93677,8 +89865,6 @@ }, { "country": "United Kingdom", - "region": "", - "city": "", "name": "IS-UK#1", "hostname": "is-uk-01b.protonvpn.com", "entry_ip": "185.159.158.187", @@ -93688,7 +89874,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#25", "hostname": "uk-25.protonvpn.net", @@ -93701,7 +89886,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#28", "hostname": "node-uk-06.protonvpn.net", @@ -93716,7 +89900,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#33", "hostname": "uk-33.protonvpn.com", @@ -93727,7 +89910,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#34", "hostname": "lxc-uk-07.protonvpn.com", @@ -93740,7 +89922,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#41", "hostname": "uk-41.protonvpn.com", @@ -93751,7 +89932,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#42", "hostname": "lxc-uk-09.protonvpn.com", @@ -93764,7 +89944,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#45", "hostname": "uk-45.protonvpn.com", @@ -93775,7 +89954,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#46", "hostname": "lxc-uk-10.protonvpn.com", @@ -93788,7 +89966,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#49", "hostname": "uk-49.protonvpn.net", @@ -93799,7 +89976,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#50", "hostname": "node-uk-11.protonvpn.net", @@ -93812,7 +89988,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#53", "hostname": "uk-53.protonvpn.net", @@ -93824,7 +89999,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "London", "name": "UK#55", "hostname": "node-uk-12.protonvpn.net", @@ -93844,7 +90018,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "Manchester", "name": "UK#17", "hostname": "uk-17.protonvpn.com", @@ -93857,7 +90030,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "Manchester", "name": "UK#20", "hostname": "lxc-uk-05.protonvpn.com", @@ -93872,7 +90044,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "Manchester", "name": "UK#37", "hostname": "uk-37.protonvpn.com", @@ -93883,7 +90054,6 @@ }, { "country": "United Kingdom", - "region": "", "city": "Manchester", "name": "UK#38", "hostname": "lxc-uk-08.protonvpn.com", @@ -93896,8 +90066,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01a.protonvpn.com", "entry_ip": "185.159.157.175", @@ -93907,8 +90075,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01b.protonvpn.com", "entry_ip": "185.159.157.86", @@ -93918,8 +90084,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01c.protonvpn.com", "entry_ip": "185.159.157.92", @@ -93929,8 +90093,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01d.protonvpn.com", "entry_ip": "185.159.157.99", @@ -93940,8 +90102,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01e.protonvpn.com", "entry_ip": "185.159.157.54", @@ -93951,8 +90111,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01f.protonvpn.com", "entry_ip": "185.159.157.53", @@ -93962,8 +90120,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01g.protonvpn.com", "entry_ip": "185.159.157.29", @@ -93973,8 +90129,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01h.protonvpn.com", "entry_ip": "185.159.157.30", @@ -93984,8 +90138,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01i.protonvpn.com", "entry_ip": "185.159.157.41", @@ -93995,8 +90147,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01j.protonvpn.com", "entry_ip": "185.159.157.42", @@ -94006,8 +90156,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01k.protonvpn.com", "entry_ip": "185.159.157.169", @@ -94017,8 +90165,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01l.protonvpn.com", "entry_ip": "185.159.157.73", @@ -94028,8 +90174,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01m.protonvpn.com", "entry_ip": "185.159.157.74", @@ -94039,8 +90183,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01n.protonvpn.com", "entry_ip": "185.159.157.170", @@ -94050,8 +90192,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01o.protonvpn.com", "entry_ip": "185.159.157.121", @@ -94061,8 +90201,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01p.protonvpn.com", "entry_ip": "185.159.157.116", @@ -94072,8 +90210,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01q.protonvpn.com", "entry_ip": "185.159.157.119", @@ -94083,8 +90219,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01r.protonvpn.com", "entry_ip": "185.159.157.120", @@ -94094,8 +90228,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01s.protonvpn.com", "entry_ip": "185.159.157.122", @@ -94105,8 +90237,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01t.protonvpn.com", "entry_ip": "185.159.157.123", @@ -94116,8 +90246,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01v.protonvpn.com", "entry_ip": "185.159.157.142", @@ -94127,8 +90255,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01w.protonvpn.com", "entry_ip": "185.159.157.143", @@ -94138,8 +90264,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01x.protonvpn.com", "entry_ip": "185.159.157.144", @@ -94149,8 +90273,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01y.protonvpn.com", "entry_ip": "185.159.157.145", @@ -94160,8 +90282,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-01z.protonvpn.com", "entry_ip": "185.159.157.146", @@ -94171,8 +90291,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02a.protonvpn.com", "entry_ip": "185.159.157.157", @@ -94182,8 +90300,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02b.protonvpn.com", "entry_ip": "185.159.157.158", @@ -94193,8 +90309,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02c.protonvpn.com", "entry_ip": "185.159.157.159", @@ -94204,8 +90318,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02d.protonvpn.com", "entry_ip": "185.159.157.160", @@ -94215,8 +90327,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02e.protonvpn.com", "entry_ip": "185.159.157.162", @@ -94226,8 +90336,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02f.protonvpn.com", "entry_ip": "185.159.157.163", @@ -94237,8 +90345,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02g.protonvpn.com", "entry_ip": "185.159.157.164", @@ -94248,8 +90354,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02h.protonvpn.com", "entry_ip": "185.159.157.171", @@ -94259,8 +90363,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02i.protonvpn.com", "entry_ip": "185.159.157.172", @@ -94270,8 +90372,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02j.protonvpn.com", "entry_ip": "185.159.157.173", @@ -94281,8 +90381,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "CH-US#1", "hostname": "ch-us-02k.protonvpn.com", "entry_ip": "185.159.157.174", @@ -94292,8 +90390,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01a.protonvpn.com", "entry_ip": "185.159.158.150", @@ -94303,8 +90399,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01b.protonvpn.com", "entry_ip": "185.159.158.192", @@ -94314,8 +90408,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01c.protonvpn.com", "entry_ip": "185.159.158.185", @@ -94325,8 +90417,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01d.protonvpn.com", "entry_ip": "185.159.158.186", @@ -94336,8 +90426,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01e.protonvpn.com", "entry_ip": "185.159.158.133", @@ -94347,8 +90435,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01f.protonvpn.com", "entry_ip": "185.159.158.151", @@ -94358,8 +90444,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01g.protonvpn.com", "entry_ip": "185.159.158.158", @@ -94369,8 +90453,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01h.protonvpn.com", "entry_ip": "185.159.158.159", @@ -94380,8 +90462,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01i.protonvpn.com", "entry_ip": "185.159.158.160", @@ -94391,8 +90471,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01j.protonvpn.com", "entry_ip": "185.159.158.161", @@ -94402,8 +90480,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01k.protonvpn.com", "entry_ip": "185.159.158.162", @@ -94413,8 +90489,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01l.protonvpn.com", "entry_ip": "185.159.158.163", @@ -94424,8 +90498,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01m.protonvpn.com", "entry_ip": "185.159.158.167", @@ -94435,8 +90507,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01n.protonvpn.com", "entry_ip": "185.159.158.168", @@ -94446,8 +90516,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01o.protonvpn.com", "entry_ip": "185.159.158.169", @@ -94457,8 +90525,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01p.protonvpn.com", "entry_ip": "185.159.158.170", @@ -94468,8 +90534,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01q.protonvpn.com", "entry_ip": "185.159.158.188", @@ -94479,8 +90543,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01r.protonvpn.com", "entry_ip": "185.159.158.189", @@ -94490,8 +90552,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "IS-US#1", "hostname": "is-us-01s.protonvpn.com", "entry_ip": "185.159.158.190", @@ -94501,8 +90561,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01a.protonvpn.com", "entry_ip": "185.159.156.54", @@ -94512,8 +90570,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01b.protonvpn.com", "entry_ip": "185.159.156.57", @@ -94523,8 +90579,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01c.protonvpn.com", "entry_ip": "185.159.156.61", @@ -94534,8 +90588,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01d.protonvpn.com", "entry_ip": "185.159.156.62", @@ -94545,8 +90597,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01e.protonvpn.com", "entry_ip": "185.159.156.63", @@ -94556,8 +90606,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01f.protonvpn.com", "entry_ip": "185.159.156.64", @@ -94567,8 +90615,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01g.protonvpn.com", "entry_ip": "185.159.156.66", @@ -94578,8 +90624,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01h.protonvpn.com", "entry_ip": "185.159.156.67", @@ -94589,8 +90633,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01i.protonvpn.com", "entry_ip": "185.159.156.69", @@ -94600,8 +90642,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01j.protonvpn.com", "entry_ip": "185.159.156.70", @@ -94611,8 +90651,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01k.protonvpn.com", "entry_ip": "185.159.156.71", @@ -94622,8 +90660,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "SE-US#1", "hostname": "se-us-01m.protonvpn.com", "entry_ip": "185.159.156.78", @@ -94633,8 +90669,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#1", "hostname": "lxc-us-04.protonvpn.com", "entry_ip": "108.59.0.14", @@ -94647,8 +90681,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#1", "hostname": "lxc-us-05.protonvpn.com", "entry_ip": "192.96.203.86", @@ -94661,8 +90693,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#1", "hostname": "lxc-us-06.protonvpn.com", "entry_ip": "199.115.115.80", @@ -94675,8 +90705,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#1", "hostname": "node-us-132.protonvpn.net", "entry_ip": "156.146.51.129", @@ -94695,8 +90723,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#2", "hostname": "lxc-us-55.protonvpn.com", "entry_ip": "45.87.214.114", @@ -94709,8 +90735,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#2", "hostname": "lxc-us-61.protonvpn.com", "entry_ip": "84.17.45.156", @@ -94723,8 +90747,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#2", "hostname": "lxc-us-72.protonvpn.com", "entry_ip": "89.187.185.161", @@ -94737,8 +90759,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#2", "hostname": "lxc-us-91.protonvpn.com", "entry_ip": "45.87.214.106", @@ -94751,8 +90771,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#3", "hostname": "lxc-us-56.protonvpn.com", "entry_ip": "89.187.171.225", @@ -94765,8 +90783,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#3", "hostname": "lxc-us-60.protonvpn.com", "entry_ip": "195.181.163.1", @@ -94779,8 +90795,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#3", "hostname": "lxc-us-70.protonvpn.com", "entry_ip": "89.187.170.159", @@ -94793,8 +90807,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#3", "hostname": "lxc-us-73.protonvpn.com", "entry_ip": "195.181.162.163", @@ -94807,8 +90819,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#4", "hostname": "lxc-us-47.protonvpn.com", "entry_ip": "45.89.173.194", @@ -94821,8 +90831,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#4", "hostname": "lxc-us-81.protonvpn.com", "entry_ip": "185.230.126.2", @@ -94835,8 +90843,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#4", "hostname": "lxc-us-86.protonvpn.com", "entry_ip": "162.253.68.114", @@ -94849,8 +90855,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#5", "hostname": "lxc-us-45.protonvpn.com", "entry_ip": "217.138.206.82", @@ -94863,8 +90867,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#5", "hostname": "lxc-us-54.protonvpn.com", "entry_ip": "38.132.103.146", @@ -94877,8 +90879,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#5", "hostname": "lxc-us-76.protonvpn.com", "entry_ip": "193.148.18.58", @@ -94891,8 +90891,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#5", "hostname": "lxc-us-78.protonvpn.com", "entry_ip": "193.148.18.74", @@ -94905,8 +90903,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#6", "hostname": "lxc-us-117.protonvpn.com", "entry_ip": "209.58.147.18", @@ -94919,8 +90915,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#6", "hostname": "lxc-us-14.protonvpn.com", "entry_ip": "209.58.147.203", @@ -94933,8 +90927,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#6", "hostname": "node-us-133.protonvpn.net", "entry_ip": "37.19.200.1", @@ -94953,8 +90945,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#7", "hostname": "lxc-us-62.protonvpn.com", "entry_ip": "89.187.179.55", @@ -94967,8 +90957,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#7", "hostname": "lxc-us-71.protonvpn.com", "entry_ip": "89.187.177.71", @@ -94981,8 +90969,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#8", "hostname": "lxc-us-07.protonvpn.com", "entry_ip": "209.58.142.133", @@ -94995,8 +90981,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#8", "hostname": "lxc-us-08.protonvpn.com", "entry_ip": "209.58.142.134", @@ -95009,8 +90993,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#8", "hostname": "node-us-131.protonvpn.net", "entry_ip": "156.146.54.81", @@ -95029,8 +91011,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#9", "hostname": "lxc-us-39.protonvpn.com", "entry_ip": "74.119.146.34", @@ -95043,8 +91023,6 @@ }, { "country": "United States", - "region": "", - "city": "", "name": "US-FREE#9", "hostname": "node-us-128.protonvpn.net", "entry_ip": "89.187.180.1", @@ -95065,7 +91043,6 @@ }, { "country": "United States", - "region": "", "city": "Ashburn", "name": "US-VA#14", "hostname": "us-va-14.protonvpn.net", @@ -95078,7 +91055,6 @@ }, { "country": "United States", - "region": "", "city": "Ashburn", "name": "US-VA#17", "hostname": "node-us-119.protonvpn.net", @@ -95097,7 +91073,6 @@ }, { "country": "United States", - "region": "", "city": "Atlanta", "name": "US-GA#109", "hostname": "node-us-121.protonvpn.net", @@ -95119,7 +91094,6 @@ }, { "country": "United States", - "region": "", "city": "Atlanta", "name": "US-GA#13", "hostname": "us-ga-13.protonvpn.net", @@ -95132,7 +91106,6 @@ }, { "country": "United States", - "region": "", "city": "Atlanta", "name": "US-GA#16", "hostname": "node-us-59.protonvpn.net", @@ -95147,7 +91120,6 @@ }, { "country": "United States", - "region": "", "city": "Atlanta", "name": "US-GA#21", "hostname": "us-ga-21.protonvpn.net", @@ -95158,7 +91130,6 @@ }, { "country": "United States", - "region": "", "city": "Atlanta", "name": "US-GA#22", "hostname": "node-us-69.protonvpn.net", @@ -95171,7 +91142,6 @@ }, { "country": "United States", - "region": "", "city": "Atlanta", "name": "US-GA#25", "hostname": "lxc-us-84.protonvpn.com", @@ -95185,7 +91155,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#17", "hostname": "us-il-17.protonvpn.com", @@ -95198,7 +91167,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#20", "hostname": "lxc-us-52.protonvpn.com", @@ -95213,7 +91181,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#25", "hostname": "us-il-25.protonvpn.com", @@ -95226,7 +91193,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#28", "hostname": "lxc-us-53.protonvpn.com", @@ -95241,7 +91207,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#33", "hostname": "lxc-us-87.protonvpn.com", @@ -95255,7 +91220,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#37", "hostname": "us-il-37.protonvpn.net", @@ -95266,7 +91230,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#38", "hostname": "node-us-88.protonvpn.net", @@ -95279,7 +91242,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#41", "hostname": "us-il-41.protonvpn.net", @@ -95290,7 +91252,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#42", "hostname": "node-us-89.protonvpn.net", @@ -95303,7 +91264,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#45", "hostname": "us-il-45.protonvpn.net", @@ -95316,7 +91276,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#49", "hostname": "node-us-129.protonvpn.net", @@ -95335,7 +91294,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#57", "hostname": "us-il-57.protonvpn.net", @@ -95348,7 +91306,6 @@ }, { "country": "United States", - "region": "", "city": "Chicago", "name": "US-IL#60", "hostname": "node-us-130.protonvpn.net", @@ -95367,7 +91324,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#12", "hostname": "node-us-57.protonvpn.net", @@ -95382,7 +91338,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#17", "hostname": "us-tx-17.protonvpn.net", @@ -95393,7 +91348,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#18", "hostname": "node-us-75.protonvpn.net", @@ -95406,7 +91360,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#21", "hostname": "us-tx-21.protonvpn.com", @@ -95417,7 +91370,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#22", "hostname": "lxc-us-108.protonvpn.com", @@ -95430,7 +91382,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#25", "hostname": "us-tx-25.protonvpn.net", @@ -95441,7 +91392,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#26", "hostname": "node-us-109.protonvpn.net", @@ -95454,7 +91404,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#29", "hostname": "us-tx-29.protonvpn.net", @@ -95465,7 +91414,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#30", "hostname": "node-us-125.protonvpn.net", @@ -95486,7 +91434,6 @@ }, { "country": "United States", - "region": "", "city": "Dallas", "name": "US-TX#9", "hostname": "us-tx-09.protonvpn.net", @@ -95499,7 +91446,6 @@ }, { "country": "United States", - "region": "", "city": "Denver", "name": "US-CO#1", "hostname": "us-co-01.protonvpn.net", @@ -95512,7 +91458,6 @@ }, { "country": "United States", - "region": "", "city": "Denver", "name": "US-CO#10", "hostname": "node-us-74.protonvpn.net", @@ -95525,7 +91470,6 @@ }, { "country": "United States", - "region": "", "city": "Denver", "name": "US-CO#13", "hostname": "us-co-13.protonvpn.net", @@ -95536,7 +91480,6 @@ }, { "country": "United States", - "region": "", "city": "Denver", "name": "US-CO#14", "hostname": "node-us-93.protonvpn.net", @@ -95549,7 +91492,6 @@ }, { "country": "United States", - "region": "", "city": "Denver", "name": "US-CO#17", "hostname": "us-co-17.protonvpn.net", @@ -95560,7 +91502,6 @@ }, { "country": "United States", - "region": "", "city": "Denver", "name": "US-CO#18", "hostname": "node-us-94.protonvpn.net", @@ -95573,7 +91514,6 @@ }, { "country": "United States", - "region": "", "city": "Denver", "name": "US-CO#4", "hostname": "node-us-58.protonvpn.net", @@ -95588,7 +91528,6 @@ }, { "country": "United States", - "region": "", "city": "Denver", "name": "US-CO#9", "hostname": "us-co-09.protonvpn.net", @@ -95599,7 +91538,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#17", "hostname": "us-ca-17.protonvpn.com", @@ -95612,7 +91550,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#20", "hostname": "lxc-us-48.protonvpn.com", @@ -95627,7 +91564,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#25", "hostname": "us-ca-25.protonvpn.com", @@ -95640,7 +91576,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#28", "hostname": "lxc-us-49.protonvpn.com", @@ -95655,7 +91590,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#33", "hostname": "us-ca-33.protonvpn.net", @@ -95668,7 +91602,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#36", "hostname": "node-us-65.protonvpn.net", @@ -95683,7 +91616,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#41", "hostname": "us-ca-41.protonvpn.net", @@ -95696,7 +91628,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#44", "hostname": "node-us-66.protonvpn.net", @@ -95711,7 +91642,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#49", "hostname": "us-ca-49.protonvpn.com", @@ -95722,7 +91652,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#50", "hostname": "lxc-us-82.protonvpn.com", @@ -95735,7 +91664,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#53", "hostname": "us-ca-53.protonvpn.com", @@ -95746,7 +91674,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#54", "hostname": "lxc-us-95.protonvpn.com", @@ -95759,7 +91686,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#57", "hostname": "us-ca-57.protonvpn.com", @@ -95770,7 +91696,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#58", "hostname": "lxc-us-96.protonvpn.com", @@ -95783,7 +91708,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#61", "hostname": "us-ca-61.protonvpn.net", @@ -95794,7 +91718,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#62", "hostname": "node-us-97.protonvpn.net", @@ -95807,7 +91730,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#65", "hostname": "us-ca-65.protonvpn.net", @@ -95818,7 +91740,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#66", "hostname": "node-us-98.protonvpn.net", @@ -95831,7 +91752,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#69", "hostname": "us-ca-69.protonvpn.net", @@ -95842,7 +91762,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#70", "hostname": "node-us-99.protonvpn.net", @@ -95855,7 +91774,6 @@ }, { "country": "United States", - "region": "", "city": "Los Angeles", "name": "US-CA#89", "hostname": "node-us-122.protonvpn.net", @@ -95878,7 +91796,6 @@ }, { "country": "United States", - "region": "", "city": "Manassas", "name": "US-VA#10", "hostname": "us-va-10.protonvpn.net", @@ -95889,7 +91806,6 @@ }, { "country": "United States", - "region": "", "city": "Manassas", "name": "US-VA#11", "hostname": "node-us-113.protonvpn.net", @@ -95902,7 +91818,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#1", "hostname": "us-fl-01.protonvpn.com", @@ -95915,7 +91830,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#12", "hostname": "lxc-us-51.protonvpn.com", @@ -95930,7 +91844,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#17", "hostname": "us-fl-17.protonvpn.net", @@ -95943,7 +91856,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#20", "hostname": "node-us-63.protonvpn.net", @@ -95958,7 +91870,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#25", "hostname": "us-fl-25.protonvpn.net", @@ -95971,7 +91882,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#28", "hostname": "node-us-64.protonvpn.net", @@ -95986,7 +91896,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#33", "hostname": "us-fl-33.protonvpn.net", @@ -95997,7 +91906,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#34", "hostname": "node-us-90.protonvpn.net", @@ -96010,7 +91918,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#37", "hostname": "us-fl-37.protonvpn.net", @@ -96021,7 +91928,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#38", "hostname": "node-us-100.protonvpn.net", @@ -96034,7 +91940,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#4", "hostname": "lxc-us-50.protonvpn.com", @@ -96049,7 +91954,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#41", "hostname": "us-fl-41.protonvpn.net", @@ -96060,7 +91964,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#42", "hostname": "node-us-101.protonvpn.net", @@ -96073,7 +91976,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#45", "hostname": "us-fl-45.protonvpn.net", @@ -96084,7 +91986,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#46", "hostname": "node-us-102.protonvpn.net", @@ -96097,7 +91998,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#49", "hostname": "us-fl-49.protonvpn.com", @@ -96108,7 +92008,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#50", "hostname": "lxc-us-103.protonvpn.com", @@ -96121,7 +92020,6 @@ }, { "country": "United States", - "region": "", "city": "Miami", "name": "US-FL#9", "hostname": "us-fl-09.protonvpn.com", @@ -96134,7 +92032,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#13", "hostname": "us-ny-13.protonvpn.com", @@ -96147,7 +92044,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#16", "hostname": "lxc-us-46.protonvpn.com", @@ -96162,7 +92058,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#21", "hostname": "us-ny-21.protonvpn.net", @@ -96175,7 +92070,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#24", "hostname": "node-us-67.protonvpn.net", @@ -96190,7 +92084,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#29", "hostname": "us-ny-29.protonvpn.net", @@ -96203,7 +92096,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#32", "hostname": "node-us-68.protonvpn.net", @@ -96218,7 +92110,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#37", "hostname": "us-ny-37.protonvpn.net", @@ -96229,7 +92120,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#38", "hostname": "node-us-77.protonvpn.net", @@ -96242,7 +92132,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#41", "hostname": "us-ny-41.protonvpn.com", @@ -96253,7 +92142,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#42", "hostname": "lxc-us-104.protonvpn.com", @@ -96266,7 +92154,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#45", "hostname": "us-ny-45.protonvpn.net", @@ -96277,7 +92164,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#46", "hostname": "node-us-105.protonvpn.net", @@ -96290,7 +92176,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#49", "hostname": "us-ny-49.protonvpn.net", @@ -96301,7 +92186,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#5", "hostname": "us-ny-05.protonvpn.com", @@ -96312,7 +92196,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#50", "hostname": "node-us-106.protonvpn.net", @@ -96325,7 +92208,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#53", "hostname": "us-ny-53.protonvpn.net", @@ -96336,7 +92218,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#54", "hostname": "node-us-107.protonvpn.net", @@ -96349,7 +92230,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#57", "hostname": "us-ny-57.protonvpn.net", @@ -96360,7 +92240,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#58", "hostname": "node-us-114.protonvpn.net", @@ -96373,7 +92252,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#61", "hostname": "us-ny-61.protonvpn.net", @@ -96387,7 +92265,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#65", "hostname": "node-us-117.protonvpn.net", @@ -96405,7 +92282,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#73", "hostname": "node-us-118.protonvpn.net", @@ -96427,7 +92303,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#8", "hostname": "lxc-us-32.protonvpn.com", @@ -96440,7 +92315,6 @@ }, { "country": "United States", - "region": "", "city": "New York City", "name": "US-NY#9", "hostname": "lxc-us-41.protonvpn.com", @@ -96454,7 +92328,6 @@ }, { "country": "United States", - "region": "", "city": "Phoenix", "name": "US-AZ#10", "hostname": "node-us-126.protonvpn.net", @@ -96475,7 +92348,6 @@ }, { "country": "United States", - "region": "", "city": "Phoenix", "name": "US-AZ#5", "hostname": "us-az-05.protonvpn.net", @@ -96486,7 +92358,6 @@ }, { "country": "United States", - "region": "", "city": "Phoenix", "name": "US-AZ#6", "hostname": "node-us-116.protonvpn.net", @@ -96499,7 +92370,6 @@ }, { "country": "United States", - "region": "", "city": "Phoenix", "name": "US-AZ#9", "hostname": "us-az-09.protonvpn.net", @@ -96510,7 +92380,6 @@ }, { "country": "United States", - "region": "", "city": "Salt Lake City", "name": "US-UT#25", "hostname": "us-ut-25b.protonvpn.com", @@ -96521,7 +92390,6 @@ }, { "country": "United States", - "region": "", "city": "Salt Lake City", "name": "US-UT#26", "hostname": "lxc-us-110.protonvpn.com", @@ -96534,7 +92402,6 @@ }, { "country": "United States", - "region": "", "city": "Salt Lake City", "name": "US-UT#29", "hostname": "us-ut-29.protonvpn.net", @@ -96545,7 +92412,6 @@ }, { "country": "United States", - "region": "", "city": "Salt Lake City", "name": "US-UT#30", "hostname": "node-us-111.protonvpn.net", @@ -96558,7 +92424,6 @@ }, { "country": "United States", - "region": "", "city": "Salt Lake City", "name": "US-UT#33", "hostname": "us-ut-33.protonvpn.net", @@ -96569,7 +92434,6 @@ }, { "country": "United States", - "region": "", "city": "Salt Lake City", "name": "US-UT#34", "hostname": "node-us-112.protonvpn.net", @@ -96582,7 +92446,6 @@ }, { "country": "United States", - "region": "", "city": "San Jose", "name": "US-CA#73", "hostname": "us-ca-73.protonvpn.net", @@ -96593,7 +92456,6 @@ }, { "country": "United States", - "region": "", "city": "San Jose", "name": "US-CA#74", "hostname": "node-us-115.protonvpn.net", @@ -96606,7 +92468,6 @@ }, { "country": "United States", - "region": "", "city": "San Jose", "name": "US-CA#77", "hostname": "us-ca-77.protonvpn.net", @@ -96618,7 +92479,6 @@ }, { "country": "United States", - "region": "", "city": "San Jose", "name": "US-CA#79", "hostname": "node-us-120.protonvpn.net", @@ -96638,7 +92498,6 @@ }, { "country": "United States", - "region": "", "city": "Seattle", "name": "US-WA#21", "hostname": "node-us-123.protonvpn.net", @@ -96660,7 +92519,6 @@ }, { "country": "United States", - "region": "", "city": "Seattle", "name": "US-WA#34", "hostname": "node-us-124.protonvpn.net", @@ -96682,7 +92540,6 @@ }, { "country": "United States", - "region": "", "city": "Secaucus", "name": "US-NJ#13", "hostname": "lxc-us-83.protonvpn.com", @@ -96696,7 +92553,6 @@ }, { "country": "United States", - "region": "", "city": "Washington DC", "name": "US-VA#26", "hostname": "us-va-26.protonvpn.net", @@ -96708,7 +92564,6 @@ }, { "country": "United States", - "region": "", "city": "Washington DC", "name": "US-VA#28", "hostname": "node-us-127.protonvpn.net", @@ -96781,7 +92636,6 @@ { "country": "United States", "region": "West", - "city": "", "name": "US-CO#21-TOR", "hostname": "us-co-21-tor.protonvpn.net", "entry_ip": "84.17.63.17", @@ -96792,7 +92646,6 @@ { "country": "United States", "region": "West", - "city": "", "name": "US-GA#29-TOR", "hostname": "us-ga-29-tor.protonvpn.net", "entry_ip": "89.187.171.248", @@ -96816,7 +92669,6 @@ }, { "country": "Vietnam", - "region": "", "city": "Hanoi", "name": "SE-VN#1", "hostname": "se-vn-01a.protonvpn.com", @@ -96827,7 +92679,6 @@ }, { "country": "Vietnam", - "region": "", "city": "Hanoi", "name": "VN#1", "hostname": "node-vn-01.protonvpn.net", @@ -96855,7 +92706,6 @@ "city": "Sydney", "hostname": "au-sd2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "43.245.163.82", "46.243.245.4" @@ -96866,7 +92716,6 @@ "region": "New South Wales", "city": "Sydney", "hostname": "au-sd2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "43.245.161.80", @@ -96881,7 +92730,6 @@ "city": "Perth", "hostname": "au2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "43.250.205.50" ] @@ -96891,7 +92739,6 @@ "region": "Western Australia", "city": "Perth", "hostname": "au2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "43.250.205.50", @@ -96904,7 +92751,6 @@ "city": "Perth", "hostname": "au2-pe-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "43.250.205.50", "43.250.205.51" @@ -96915,7 +92761,6 @@ "region": "Western Australia", "city": "Perth", "hostname": "au2-pe-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "43.250.205.34" @@ -96927,7 +92772,6 @@ "city": "Vienna", "hostname": "at2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "217.64.127.251", "217.64.127.252" @@ -96938,7 +92782,6 @@ "region": "Vienna", "city": "Vienna", "hostname": "at2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "37.120.212.219", @@ -96950,7 +92793,6 @@ "region": "Flanders", "city": "Zaventem", "hostname": "vleu-be2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "217.138.211.87", @@ -96964,7 +92806,6 @@ "city": "São Paulo", "hostname": "br2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "181.41.201.83", "181.41.201.84" @@ -96975,7 +92816,6 @@ "region": "São Paulo", "city": "São Paulo", "hostname": "br2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "138.99.210.4", @@ -96990,7 +92830,6 @@ "city": "Sofia", "hostname": "vleu-be2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "217.138.221.114" ] @@ -97001,7 +92840,6 @@ "city": "Vancouver", "hostname": "cav2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "66.115.147.34" ] @@ -97011,7 +92849,6 @@ "region": "British Columbia", "city": "Vancouver", "hostname": "cav2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "66.115.147.34", @@ -97028,7 +92865,6 @@ "city": "Toronto", "hostname": "ca2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "104.200.138.212" ] @@ -97038,7 +92874,6 @@ "region": "Ontario", "city": "Toronto", "hostname": "ca2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "104.200.138.213", @@ -97052,7 +92887,6 @@ "city": "Prague", "hostname": "cz2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "185.156.174.36" ] @@ -97062,7 +92896,6 @@ "region": "Hlavní město Praha", "city": "Prague", "hostname": "cz2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "185.156.174.38", @@ -97075,7 +92908,6 @@ "city": "Paris", "hostname": "fr2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "45.152.181.68" ] @@ -97085,7 +92917,6 @@ "region": "Île-de-France", "city": "Paris", "hostname": "fr2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "45.152.181.67", @@ -97098,7 +92929,6 @@ "city": "Frankfurt am Main", "hostname": "de2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "5.254.88.213" ] @@ -97108,7 +92938,6 @@ "region": "Hesse", "city": "Frankfurt am Main", "hostname": "de2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "5.254.82.50", @@ -97121,7 +92950,6 @@ "city": "Hong Kong", "hostname": "hk2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "103.109.103.59", "103.109.103.60", @@ -97133,7 +92961,6 @@ "region": "Central and Western", "city": "Hong Kong", "hostname": "hk2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "172.111.168.4" @@ -97145,7 +92972,6 @@ "city": "Hong Kong", "hostname": "vlap-ph2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "36.255.97.3", "129.227.119.84" @@ -97156,7 +92982,6 @@ "region": "Central and Western", "city": "Hong Kong", "hostname": "vlap-ph2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "36.255.97.3" @@ -97168,7 +92993,6 @@ "city": "Milan", "hostname": "it2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "172.111.173.3" ] @@ -97178,7 +93002,6 @@ "region": "Lombardy", "city": "Milan", "hostname": "it2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "172.111.173.3" @@ -97189,7 +93012,6 @@ "region": "Tokyo", "city": "Tokyo", "hostname": "jp2-ovpn.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "185.242.4.59" @@ -97200,7 +93022,6 @@ "region": "Gangwon-do", "city": "Hongch’ŏn", "hostname": "kr2-ovpn.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "43.226.231.4", @@ -97213,7 +93034,6 @@ "city": "Kuala Lumpur", "hostname": "my2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "103.55.10.134" ] @@ -97223,7 +93043,6 @@ "region": "Kuala Lumpur", "city": "Kuala Lumpur", "hostname": "my2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "103.28.90.32" @@ -97235,7 +93054,6 @@ "city": "Amsterdam", "hostname": "nl2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "5.254.73.172", "5.254.73.252", @@ -97248,7 +93066,6 @@ "region": "North Holland", "city": "Amsterdam", "hostname": "nl2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "5.254.73.171", @@ -97263,7 +93080,6 @@ "city": "Amsterdam", "hostname": "vlap-th2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "104.37.6.4" ] @@ -97273,7 +93089,6 @@ "region": "North Holland", "city": "Amsterdam", "hostname": "vlap-th2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "104.37.6.4" @@ -97285,7 +93100,6 @@ "city": "Oslo", "hostname": "vleu-no2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "82.102.22.212" ] @@ -97295,7 +93109,6 @@ "region": "Oslo", "city": "Oslo", "hostname": "vleu-no2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "82.102.22.212" @@ -97306,7 +93119,6 @@ "region": "Mazovia", "city": "Warsaw", "hostname": "pl2-ovpn.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "5.253.206.251" @@ -97317,7 +93129,6 @@ "region": "Lisbon", "city": "Lisbon", "hostname": "Pt2-ovpn.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "5.154.174.3" @@ -97329,7 +93140,6 @@ "city": "Saint Petersburg", "hostname": "ru2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "94.242.54.23", "206.123.139.4" @@ -97340,7 +93150,6 @@ "region": "St.-Petersburg", "city": "Saint Petersburg", "hostname": "ru2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "94.242.54.23", @@ -97353,7 +93162,6 @@ "city": "Singapore", "hostname": "sg2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "84.247.49.181" ] @@ -97363,7 +93171,6 @@ "region": "Singapore", "city": "Singapore", "hostname": "sg2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "37.120.208.147", @@ -97375,7 +93182,6 @@ "region": "Gauteng", "city": "Johannesburg", "hostname": "za2-ovpn.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "102.165.3.33", @@ -97388,7 +93194,6 @@ "city": "Stockholm", "hostname": "se2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "45.12.220.123", "86.106.103.178", @@ -97400,7 +93205,6 @@ "region": "Stockholm", "city": "Stockholm", "hostname": "se2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "45.12.220.125", @@ -97413,7 +93217,6 @@ "city": "Zürich", "hostname": "ch2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "45.12.222.98", "45.12.222.99" @@ -97424,7 +93227,6 @@ "region": "Zurich", "city": "Zürich", "hostname": "ch2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "45.12.222.100", @@ -97439,7 +93241,6 @@ "city": "Taipei", "hostname": "tw2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "128.1.155.178" ] @@ -97449,7 +93250,6 @@ "region": "Taiwan", "city": "Taipei", "hostname": "tw2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "128.1.155.178" @@ -97461,7 +93261,6 @@ "city": "London", "hostname": "ukg2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "45.74.0.4" ] @@ -97472,7 +93271,6 @@ "city": "London", "hostname": "ukl2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "45.74.0.4" ] @@ -97482,7 +93280,6 @@ "region": "England", "city": "Manchester", "hostname": "ukg2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "89.238.165.148", @@ -97494,7 +93291,6 @@ "region": "England", "city": "Manchester", "hostname": "ukl2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "89.238.165.148", @@ -97507,7 +93303,6 @@ "city": "Manchester", "hostname": "ukm2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "188.72.89.4" ] @@ -97517,7 +93312,6 @@ "region": "England", "city": "Manchester", "hostname": "ukm2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "188.72.89.4" @@ -97529,7 +93323,6 @@ "city": "Los Angeles", "hostname": "usla2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "89.45.4.2" ] @@ -97540,7 +93333,6 @@ "city": "Los Angeles", "hostname": "vlus-mx2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "104.243.243.131" ] @@ -97550,7 +93342,6 @@ "region": "California", "city": "Los Angeles", "hostname": "vlus-mx2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "104.243.243.131" @@ -97562,7 +93353,6 @@ "city": "San Jose", "hostname": "ussf2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "141.101.166.4" ] @@ -97573,7 +93363,6 @@ "city": "Miami", "hostname": "usfl2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "5.254.79.100", "5.254.79.116" @@ -97584,7 +93373,6 @@ "region": "Florida", "city": "Miami", "hostname": "usfl2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "5.254.79.114", @@ -97596,7 +93384,6 @@ "region": "Georgia", "city": "Cumming", "hostname": "in2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "169.38.69.12" @@ -97607,7 +93394,6 @@ "region": "New Jersey", "city": "Piscataway", "hostname": "usny2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "209.127.184.71", @@ -97622,7 +93408,6 @@ "city": "New York City", "hostname": "usnj2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "172.94.72.4" ] @@ -97632,7 +93417,6 @@ "region": "New York", "city": "New York City", "hostname": "usnj2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "172.94.72.4" @@ -97644,7 +93428,6 @@ "city": "New York City", "hostname": "usny2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "141.101.153.4" ] @@ -97654,7 +93437,6 @@ "region": "New York", "city": "New York City", "hostname": "ussf2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "172.94.72.4", @@ -97666,7 +93448,6 @@ "region": "New York", "city": "New York City", "hostname": "uswdc2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "172.94.72.4", @@ -97679,7 +93460,6 @@ "city": "New York City", "hostname": "vlus-pa2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "172.111.149.4" ] @@ -97689,7 +93469,6 @@ "region": "New York", "city": "New York City", "hostname": "vlus-pa2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "172.111.149.4" @@ -97701,7 +93480,6 @@ "city": "Pittsburgh", "hostname": "in2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "104.250.160.132" ] @@ -97712,7 +93490,6 @@ "city": "Allen", "hostname": "usga2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "172.94.108.4" ] @@ -97723,7 +93500,6 @@ "city": "Allen", "hostname": "usil2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "172.94.108.4" ] @@ -97734,7 +93510,6 @@ "city": "Dallas", "hostname": "ustx2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "208.84.155.100", "208.84.155.101" @@ -97745,7 +93520,6 @@ "region": "Texas", "city": "Dallas", "hostname": "ustx2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "104.217.255.185", @@ -97757,7 +93531,6 @@ "region": "Virginia", "city": "Centreville", "hostname": "usva2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "5.254.109.115", @@ -97770,7 +93543,6 @@ "city": "Reston", "hostname": "usva2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "5.254.77.26", "5.254.77.27" @@ -97781,7 +93553,6 @@ "region": "Washington", "city": "Seattle", "hostname": "ussa2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "172.94.86.4" @@ -97793,7 +93564,6 @@ "city": "Washington", "hostname": "us2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "46.243.249.4" ] @@ -97803,7 +93573,6 @@ "region": "Washington, D.C.", "city": "Washington", "hostname": "us2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "141.101.169.4", @@ -97816,7 +93585,6 @@ "region": "Washington, D.C.", "city": "Washington", "hostname": "usga2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "141.101.169.4", @@ -97828,7 +93596,6 @@ "region": "Washington, D.C.", "city": "Washington", "hostname": "usil2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "141.101.169.4", @@ -97841,7 +93608,6 @@ "region": "Washington, D.C.", "city": "Washington", "hostname": "usla2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "141.101.169.4", @@ -97853,7 +93619,6 @@ "region": "Washington, D.C.", "city": "Washington", "hostname": "usphx2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "141.101.169.4" @@ -97865,7 +93630,6 @@ "city": "Washington", "hostname": "ussa2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "46.243.249.4" ] @@ -97876,7 +93640,6 @@ "city": "Washington", "hostname": "usut2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "46.243.249.4" ] @@ -97886,7 +93649,6 @@ "region": "Washington, D.C.", "city": "Washington", "hostname": "usut2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "141.101.169.4", @@ -97900,7 +93662,6 @@ "city": "Washington", "hostname": "uswdc2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "46.243.249.4" ] @@ -97911,7 +93672,6 @@ "city": "Hanoi", "hostname": "vlap-vn2-ovpn-tcp.pointtoserver.com", "tcp": true, - "udp": false, "ips": [ "192.253.249.132" ] @@ -97921,7 +93681,6 @@ "region": "Hanoi", "city": "Hanoi", "hostname": "vlap-vn2-ovpn-udp.pointtoserver.com", - "tcp": false, "udp": true, "ips": [ "192.253.249.132" @@ -97939,7 +93698,6 @@ "city": "Adelaide", "retroloc": "Australia Adelaide", "hostname": "au-adl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -97955,7 +93713,6 @@ "city": "Brisbane", "retroloc": "Australia Brisbane", "hostname": "au-bne.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -97973,7 +93730,6 @@ "city": "Melbourne", "retroloc": "Australia Melbourne", "hostname": "au-mel.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -97992,7 +93748,6 @@ "city": "Perth", "retroloc": "Australia Perth", "hostname": "au-per.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98008,7 +93763,6 @@ "city": "Sydney", "retroloc": "Australia Sydney", "hostname": "au-syd.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98028,7 +93782,6 @@ "city": "Baku", "retroloc": "Azerbaijan", "hostname": "az-bak.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98048,7 +93801,6 @@ "city": "Hong Kong", "retroloc": "Hong Kong", "hostname": "hk-hkg.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98064,7 +93816,6 @@ "city": "Chennai", "retroloc": "India Chennai", "hostname": "in-chn.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98082,7 +93833,6 @@ "city": "Indore", "retroloc": "India Indore", "hostname": "in-idr.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98096,7 +93846,6 @@ "city": "Mumbai", "retroloc": "India Mumbai", "hostname": "in-mum.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98118,7 +93867,6 @@ "city": "Jakarta", "retroloc": "Indonesia", "hostname": "id-jak.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98134,7 +93882,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st001", "hostname": "jp-tok-st001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98147,7 +93894,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st002", "hostname": "jp-tok-st002.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98160,7 +93906,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st003", "hostname": "jp-tok-st003.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98173,7 +93918,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st004", "hostname": "jp-tok-st004.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98186,7 +93930,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st005", "hostname": "jp-tok-st005.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98199,7 +93942,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st006", "hostname": "jp-tok-st006.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98212,7 +93954,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st007", "hostname": "jp-tok-st007.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98225,7 +93966,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st008", "hostname": "jp-tok-st008.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98238,7 +93978,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st009", "hostname": "jp-tok-st009.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98251,7 +93990,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st010", "hostname": "jp-tok-st010.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98264,7 +94002,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st011", "hostname": "jp-tok-st011.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98277,7 +94014,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st012", "hostname": "jp-tok-st012.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98290,7 +94026,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo st013", "hostname": "jp-tok-st013.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98303,7 +94038,6 @@ "city": "Tokyo", "retroloc": "Japan Tokyo", "hostname": "jp-tok.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98320,7 +94054,6 @@ "city": "Oral", "retroloc": "Kazakhstan", "hostname": "kz-ura.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98334,7 +94067,6 @@ "city": "Kuala Lumpur", "retroloc": "Malaysia", "hostname": "my-kul.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98350,7 +94082,6 @@ "city": "Auckland", "retroloc": "New Zealand", "hostname": "nz-akl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98366,7 +94097,6 @@ "city": "Manila", "retroloc": "Philippines", "hostname": "ph-mnl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98381,7 +94111,6 @@ "city": "Singapore", "retroloc": "Singapore mp001", "hostname": "sg-sng-mp001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98394,7 +94123,6 @@ "city": "Singapore", "retroloc": "Singapore st001", "hostname": "sg-sng-st001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98407,7 +94135,6 @@ "city": "Singapore", "retroloc": "Singapore st002", "hostname": "sg-sng-st002.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98420,7 +94147,6 @@ "city": "Singapore", "retroloc": "Singapore st003", "hostname": "sg-sng-st003.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98433,7 +94159,6 @@ "city": "Singapore", "retroloc": "Singapore st004", "hostname": "sg-sng-st004.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98446,7 +94171,6 @@ "city": "Singapore", "retroloc": "Singapore", "hostname": "sg-sng.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98462,7 +94186,6 @@ "city": "Hong Kong", "retroloc": "Singapore Hong Kong", "hostname": "sg-hk.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98472,10 +94195,8 @@ { "region": "Asia Pacific", "country": "Singapore in", - "city": "", "retroloc": "Singapore in", "hostname": "sg-in.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98488,7 +94209,6 @@ "city": "Seoul", "retroloc": "Korea", "hostname": "kr-seo.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98506,7 +94226,6 @@ "city": "Taichung City", "retroloc": "Taiwan", "hostname": "tw-tai.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98526,7 +94245,6 @@ "city": "Bangkok", "retroloc": "Thailand", "hostname": "th-bkk.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98540,7 +94258,6 @@ "city": "Ho Chi Minh City", "retroloc": "Vietnam", "hostname": "vn-hcm.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98553,7 +94270,6 @@ "city": "Tirana", "retroloc": "Albania", "hostname": "al-tia.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98571,7 +94287,6 @@ "city": "Vienna", "retroloc": "Austria", "hostname": "at-vie.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98585,7 +94300,6 @@ "city": "Brussels", "retroloc": "Belgium", "hostname": "be-bru.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98609,7 +94323,6 @@ "city": "Sarajevo", "retroloc": "Bosnia and Herzegovina", "hostname": "ba-sjj.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98627,7 +94340,6 @@ "city": "Sofia", "retroloc": "Bulgaria", "hostname": "bg-sof.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98643,7 +94355,6 @@ "city": "Zagreb", "retroloc": "Croatia", "hostname": "hr-zag.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98657,7 +94368,6 @@ "city": "Nicosia", "retroloc": "Cyprus", "hostname": "cy-nic.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98673,7 +94383,6 @@ "city": "Prague", "retroloc": "Czech Republic", "hostname": "cz-prg.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98693,7 +94402,6 @@ "city": "Copenhagen", "retroloc": "Denmark", "hostname": "dk-cph.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98713,7 +94421,6 @@ "city": "Tallinn", "retroloc": "Estonia", "hostname": "ee-tll.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98729,7 +94436,6 @@ "city": "Helsinki", "retroloc": "Finland", "hostname": "fi-hel.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98747,7 +94453,6 @@ "city": "Bordeaux", "retroloc": "France Bordeaux", "hostname": "fr-bod.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98763,7 +94468,6 @@ "city": "Marseille", "retroloc": "France Marseilles", "hostname": "fr-mrs.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98781,7 +94485,6 @@ "city": "Paris", "retroloc": "France Paris", "hostname": "fr-par.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98798,10 +94501,8 @@ { "region": "Europe", "country": "France Sweden", - "city": "", "retroloc": "France Sweden", "hostname": "fr-se.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98812,9 +94513,7 @@ "region": "Europe", "country": "Georgia", "city": "Tbilisi", - "retroloc": "", "hostname": "ge-tbs.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98828,7 +94527,6 @@ "city": "Berlin", "retroloc": "Germany Berlin", "hostname": "de-ber.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98850,7 +94548,6 @@ "city": "Frankfurt am Main", "retroloc": "Germany Frankfurt mp001", "hostname": "de-fra-mp001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98863,7 +94560,6 @@ "city": "Frankfurt am Main", "retroloc": "Germany Frankfurt am Main st001", "hostname": "de-fra-st001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98876,7 +94572,6 @@ "city": "Frankfurt am Main", "retroloc": "Germany Frankfurt am Main st002", "hostname": "de-fra-st002.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98889,7 +94584,6 @@ "city": "Frankfurt am Main", "retroloc": "Germany Frankfurt am Main st003", "hostname": "de-fra-st003.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98902,7 +94596,6 @@ "city": "Frankfurt am Main", "retroloc": "Germany Frankfurt am Main st004", "hostname": "de-fra-st004.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98915,7 +94608,6 @@ "city": "Frankfurt am Main", "retroloc": "Germany Frankfurt am Main st005", "hostname": "de-fra-st005.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98928,7 +94620,6 @@ "city": "Frankfurt am Main", "retroloc": "Germany Frankfurt am Main", "hostname": "de-fra.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98945,10 +94636,8 @@ { "region": "Europe", "country": "Germany Singapour", - "city": "", "retroloc": "Germany Singapour", "hostname": "de-sg.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98958,10 +94647,8 @@ { "region": "Europe", "country": "Germany UK", - "city": "", "retroloc": "Germany UK", "hostname": "de-uk.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98974,7 +94661,6 @@ "city": "Athens", "retroloc": "Greece", "hostname": "gr-ath.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -98994,7 +94680,6 @@ "city": "Budapest", "retroloc": "Hungary", "hostname": "hu-bud.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99012,7 +94697,6 @@ "city": "Reykjavik", "retroloc": "Iceland", "hostname": "is-rkv.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99025,10 +94709,8 @@ { "region": "Europe", "country": "India UK", - "city": "", "retroloc": "India UK", "hostname": "in-uk.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99041,7 +94723,6 @@ "city": "Dublin", "retroloc": "Ireland", "hostname": "ie-dub.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99061,7 +94742,6 @@ "city": "Milan", "retroloc": "Italy Milan", "hostname": "it-mil.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99080,7 +94760,6 @@ "city": "Rome", "retroloc": "Italy Rome", "hostname": "it-rom.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99096,7 +94775,6 @@ "city": "Riga", "retroloc": "Latvia", "hostname": "lv-rig.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99114,7 +94792,6 @@ "city": "Luxembourg", "retroloc": "Luxembourg", "hostname": "lu-ste.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99140,9 +94817,7 @@ "region": "Europe", "country": "Malta", "city": "Valletta", - "retroloc": "", "hostname": "mt-mla.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99156,7 +94831,6 @@ "city": "Chisinau", "retroloc": "Moldova", "hostname": "md-chi.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99170,7 +94844,6 @@ "city": "Amsterdam", "retroloc": "Netherlands Amsterdam mp001", "hostname": "nl-ams-mp001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99183,7 +94856,6 @@ "city": "Amsterdam", "retroloc": "Netherlands Amsterdam st001", "hostname": "nl-ams-st001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99196,7 +94868,6 @@ "city": "Amsterdam", "retroloc": "Netherlands Amsterdam", "hostname": "nl-ams.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99212,7 +94883,6 @@ "city": "Skopje", "retroloc": "North Macedonia", "hostname": "mk-skp.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99227,7 +94897,6 @@ "city": "Oslo", "retroloc": "Norway", "hostname": "no-osl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99243,7 +94912,6 @@ "city": "Gdansk", "retroloc": "Poland Gdansk", "hostname": "pl-gdn.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99259,7 +94927,6 @@ "city": "Warsaw", "retroloc": "Poland Warsaw", "hostname": "pl-waw.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99275,7 +94942,6 @@ "city": "Lisbon", "retroloc": "Portugal Lisbon", "hostname": "pt-lis.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99292,7 +94958,6 @@ "city": "Porto", "retroloc": "Portugal Porto", "hostname": "pt-opo.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99308,7 +94973,6 @@ "city": "Bucharest", "retroloc": "Romania", "hostname": "ro-buc.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99328,7 +94992,6 @@ "city": "Moscow", "retroloc": "Russia Moscow", "hostname": "ru-mos.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99344,7 +95007,6 @@ "city": "Belgrade", "retroloc": "Serbia", "hostname": "rs-beg.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99358,10 +95020,8 @@ { "region": "Europe", "country": "Singapore Netherlands", - "city": "", "retroloc": "Singapore Netherlands", "hostname": "sg-nl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99374,7 +95034,6 @@ "city": "Bratislava", "retroloc": "Slovekia", "hostname": "sk-bts.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99388,7 +95047,6 @@ "city": "Ljubljana", "retroloc": "Slovenia", "hostname": "si-lju.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99406,7 +95064,6 @@ "city": "Barcelona", "retroloc": "Spain Barcelona", "hostname": "es-bcn.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99422,7 +95079,6 @@ "city": "Madrid", "retroloc": "Spain Madrid", "hostname": "es-mad.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99450,7 +95106,6 @@ "city": "Valencia", "retroloc": "Spain Valencia", "hostname": "es-vlc.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99470,7 +95125,6 @@ "city": "Stockholm", "retroloc": "Sweden", "hostname": "se-sto.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99490,7 +95144,6 @@ "city": "Zurich", "retroloc": "Switzerland", "hostname": "ch-zur.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99506,7 +95159,6 @@ "city": "Istanbul", "retroloc": "Turkey Istanbul", "hostname": "tr-ist.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99517,10 +95169,8 @@ { "region": "Europe", "country": "UK France", - "city": "", "retroloc": "UK France", "hostname": "uk-fr.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99530,10 +95180,8 @@ { "region": "Europe", "country": "UK Germany", - "city": "", "retroloc": "UK Germany", "hostname": "uk-de.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99543,10 +95191,8 @@ { "region": "Europe", "country": "US Netherlands", - "city": "", "retroloc": "US Netherlands", "hostname": "us-nl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99556,10 +95202,8 @@ { "region": "Europe", "country": "US Portugal", - "city": "", "retroloc": "US Portugal", "hostname": "us-pt.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99572,7 +95216,6 @@ "city": "Kyiv", "retroloc": "Ukraine", "hostname": "ua-iev.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99588,7 +95231,6 @@ "city": "Glasgow", "retroloc": "UK Glasgow", "hostname": "uk-gla.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99604,7 +95246,6 @@ "city": "London", "retroloc": "UK London mp001", "hostname": "uk-lon-mp001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99617,7 +95258,6 @@ "city": "London", "retroloc": "UK London st001", "hostname": "uk-lon-st001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99630,7 +95270,6 @@ "city": "London", "retroloc": "UK London st002", "hostname": "uk-lon-st002.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99643,7 +95282,6 @@ "city": "London", "retroloc": "UK London st003", "hostname": "uk-lon-st003.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99656,7 +95294,6 @@ "city": "London", "retroloc": "UK London st004", "hostname": "uk-lon-st004.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99669,7 +95306,6 @@ "city": "London", "retroloc": "UK London st005", "hostname": "uk-lon-st005.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99682,7 +95318,6 @@ "city": "London", "retroloc": "UK London", "hostname": "uk-lon.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99698,7 +95333,6 @@ "city": "Manchester", "retroloc": "UK Manchester", "hostname": "uk-man.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99718,7 +95352,6 @@ "city": "Tel Aviv", "retroloc": "Israel", "hostname": "il-tlv.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99734,7 +95367,6 @@ "city": "Lagos", "retroloc": "Nigeria", "hostname": "ng-lag.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99752,7 +95384,6 @@ "city": "Johannesburg", "retroloc": "South Africa", "hostname": "za-jnb.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99770,7 +95401,6 @@ "city": "Dubai", "retroloc": "United Arab Emirates", "hostname": "ae-dub.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99787,7 +95417,6 @@ "city": "Buenos Aires", "retroloc": "Argentina Buenos Aires", "hostname": "ar-bua.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99808,10 +95437,8 @@ { "region": "The Americas", "country": "Australia US", - "city": "", "retroloc": "Australia US", "hostname": "au-us.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99824,7 +95451,6 @@ "city": "Sao Paulo", "retroloc": "Brazil", "hostname": "br-sao.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99847,7 +95473,6 @@ "city": "Montreal", "retroloc": "Canada Montreal", "hostname": "ca-mon.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99865,7 +95490,6 @@ "city": "Toronto", "retroloc": "Canada Toronto mp001", "hostname": "ca-tor-mp001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99878,7 +95502,6 @@ "city": "Toronto", "retroloc": "Canada Toronto", "hostname": "ca-tor.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99896,7 +95519,6 @@ "city": "Vancouver", "retroloc": "Canada Vancouver", "hostname": "ca-van.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99909,10 +95531,8 @@ { "region": "The Americas", "country": "Canada US", - "city": "", "retroloc": "Canada US", "hostname": "ca-us.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99925,7 +95545,6 @@ "city": "Santiago", "retroloc": "Chile", "hostname": "cl-san.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99939,7 +95558,6 @@ "city": "Bogota", "retroloc": "Colombia", "hostname": "co-bog.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99953,7 +95571,6 @@ "city": "San Jose", "retroloc": "Costa Rica", "hostname": "cr-sjn.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99969,7 +95586,6 @@ "city": "Mexico City", "retroloc": "Mexico City Mexico", "hostname": "mx-mex.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99982,10 +95598,8 @@ { "region": "The Americas", "country": "Netherlands US", - "city": "", "retroloc": "Netherlands US", "hostname": "nl-us.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -99996,9 +95610,7 @@ "region": "The Americas", "country": "Panama", "city": "Panama", - "retroloc": "", "hostname": "pa-pac.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100012,9 +95624,7 @@ "region": "The Americas", "country": "Peru", "city": "Lima", - "retroloc": "", "hostname": "pe-lim.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100028,9 +95638,7 @@ "region": "The Americas", "country": "United States", "city": "Ashburn", - "retroloc": "", "hostname": "us-ash.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100044,7 +95652,6 @@ "city": "Atlanta", "retroloc": "US Atlanta", "hostname": "us-atl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100062,7 +95669,6 @@ "city": "Bend", "retroloc": "US Bend", "hostname": "us-bdn.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100081,7 +95687,6 @@ "city": "Boston", "retroloc": "US Boston", "hostname": "us-bos.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100099,7 +95704,6 @@ "city": "Buffalo", "retroloc": "US Buffalo", "hostname": "us-buf.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100115,7 +95719,6 @@ "city": "Charlotte", "retroloc": "US Charlotte", "hostname": "us-clt.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100138,7 +95741,6 @@ "city": "Chicago", "retroloc": "US Chicago", "hostname": "us-chi.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100157,7 +95759,6 @@ "city": "Dallas", "retroloc": "US Dallas", "hostname": "us-dal.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100179,7 +95780,6 @@ "city": "Denver", "retroloc": "US Denver", "hostname": "us-den.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100199,7 +95799,6 @@ "city": "Detroit", "retroloc": "US Gahanna", "hostname": "us-dtw.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100222,7 +95821,6 @@ "city": "Houston", "retroloc": "US Houston", "hostname": "us-hou.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100247,7 +95845,6 @@ "city": "Kansas City", "retroloc": "US Kansas City", "hostname": "us-kan.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100265,7 +95862,6 @@ "city": "Las Vegas", "retroloc": "US Las Vegas", "hostname": "us-las.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100286,7 +95882,6 @@ "city": "Latham", "retroloc": "US Latham", "hostname": "us-ltm.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100305,7 +95900,6 @@ "city": "Los Angeles", "retroloc": "US Los Angeles", "hostname": "us-lax.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100322,7 +95916,6 @@ "city": "Manassas", "retroloc": "US Maryland", "hostname": "us-mnz.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100341,7 +95934,6 @@ "city": "Miami", "retroloc": "US Miami", "hostname": "us-mia.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100359,7 +95951,6 @@ "city": "New York", "retroloc": "US New York City mp001", "hostname": "us-nyc-mp001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100372,7 +95963,6 @@ "city": "New York", "retroloc": "US New York City st001", "hostname": "us-nyc-st001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100385,7 +95975,6 @@ "city": "New York", "retroloc": "US New York City st002", "hostname": "us-nyc-st002.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100398,7 +95987,6 @@ "city": "New York", "retroloc": "US New York City st003", "hostname": "us-nyc-st003.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100411,7 +95999,6 @@ "city": "New York", "retroloc": "US New York City st004", "hostname": "us-nyc-st004.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100424,7 +96011,6 @@ "city": "New York", "retroloc": "US New York City st005", "hostname": "us-nyc-st005.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100437,7 +96023,6 @@ "city": "New York", "retroloc": "US New York City", "hostname": "us-nyc.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100457,7 +96042,6 @@ "city": "Orlando", "retroloc": "US Orlando", "hostname": "us-orl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100475,7 +96059,6 @@ "city": "Phoenix", "retroloc": "US Phoenix", "hostname": "us-phx.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100495,7 +96078,6 @@ "city": "Salt Lake City", "retroloc": "US Salt Lake City", "hostname": "us-slc.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100511,7 +96093,6 @@ "city": "San Francisco", "retroloc": "US San Francisco mp001", "hostname": "us-sfo-mp001.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100524,7 +96105,6 @@ "city": "San Francisco", "retroloc": "US San Francisco", "hostname": "us-sfo.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100544,7 +96124,6 @@ "city": "Seattle", "retroloc": "US Seatle", "hostname": "us-sea.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100562,7 +96141,6 @@ "city": "St. Louis", "retroloc": "US Saint Louis", "hostname": "us-stl.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100578,7 +96156,6 @@ "city": "Tampa", "retroloc": "US Tampa", "hostname": "us-tpa.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100593,9 +96170,7 @@ "region": "The Americas", "country": "Venezuela", "city": "Caracas", - "retroloc": "", "hostname": "ve-car.prod.surfshark.com", - "multihop": false, "tcp": true, "udp": true, "ips": [ @@ -100646,7 +96221,6 @@ }, { "country": "Austria", - "city": "", "hostname": "aus.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100660,7 +96234,6 @@ }, { "country": "Belarus", - "city": "", "hostname": "bl.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100670,7 +96243,6 @@ }, { "country": "Belgium", - "city": "", "hostname": "bg.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100690,7 +96262,6 @@ }, { "country": "Brazil", - "city": "", "hostname": "br.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100704,7 +96275,6 @@ }, { "country": "Bulgaria", - "city": "", "hostname": "bul.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100754,7 +96324,6 @@ }, { "country": "Chile", - "city": "", "hostname": "chil.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100766,7 +96335,6 @@ }, { "country": "Cyprus", - "city": "", "hostname": "cp.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100776,7 +96344,6 @@ }, { "country": "Czech", - "city": "", "hostname": "czech.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100790,7 +96357,6 @@ }, { "country": "Denmark", - "city": "", "hostname": "den.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100813,7 +96379,6 @@ }, { "country": "Finland", - "city": "", "hostname": "fin.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100825,7 +96390,6 @@ }, { "country": "France", - "city": "", "hostname": "fr.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100859,7 +96423,6 @@ }, { "country": "Germany", - "city": "", "hostname": "gr.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100869,7 +96432,6 @@ }, { "country": "Greece", - "city": "", "hostname": "gre.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100901,7 +96463,6 @@ }, { "country": "Hungary", - "city": "", "hostname": "hg.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100912,7 +96473,6 @@ }, { "country": "Iceland", - "city": "", "hostname": "ice.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100945,7 +96505,6 @@ }, { "country": "Ireland", - "city": "", "hostname": "ire.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100959,7 +96518,6 @@ }, { "country": "Israel", - "city": "", "hostname": "isr.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100970,7 +96528,6 @@ }, { "country": "Italy", - "city": "", "hostname": "it.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -100984,7 +96541,6 @@ }, { "country": "Japan", - "city": "", "hostname": "jp.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101006,7 +96562,6 @@ }, { "country": "Latvia", - "city": "", "hostname": "lv.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101016,7 +96571,6 @@ }, { "country": "Luxembourg", - "city": "", "hostname": "lux.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101030,7 +96584,6 @@ }, { "country": "Mexico", - "city": "", "hostname": "mx.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101044,7 +96597,6 @@ }, { "country": "Moldova", - "city": "", "hostname": "md.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101055,7 +96607,6 @@ }, { "country": "Netherlands", - "city": "", "hostname": "nl.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101107,7 +96658,6 @@ }, { "country": "Norway", - "city": "", "hostname": "no.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101133,7 +96683,6 @@ }, { "country": "Poland", - "city": "", "hostname": "pl.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101147,7 +96696,6 @@ }, { "country": "Portugal", - "city": "", "hostname": "por.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101160,7 +96708,6 @@ }, { "country": "Romania", - "city": "", "hostname": "ro.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101182,7 +96729,6 @@ }, { "country": "Singapore", - "city": "", "hostname": "singp.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101201,7 +96747,6 @@ }, { "country": "Slovakia", - "city": "", "hostname": "slk.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101229,7 +96774,6 @@ }, { "country": "Spain", - "city": "", "hostname": "sp.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101248,7 +96792,6 @@ }, { "country": "Sweden", - "city": "", "hostname": "swe.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101279,7 +96822,6 @@ }, { "country": "Switzerland", - "city": "", "hostname": "swiss.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101304,7 +96846,6 @@ }, { "country": "Taiwan", - "city": "", "hostname": "tw.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101314,7 +96855,6 @@ }, { "country": "Thailand", - "city": "", "hostname": "thai.torguardvpnaccess.com", "tcp": true, "udp": true, @@ -101328,7 +96868,6 @@ }, { "country": "UAE", - "city": "", "hostname": "uae.secureconnect.me", "tcp": true, "udp": true, @@ -101619,11 +97158,7 @@ "servers": [ { "country": "Argentina", - "city": "", "hostname": "ar.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "131.255.4.187", @@ -101634,9 +97169,6 @@ "country": "Australia", "city": "Sydney", "hostname": "au-syd.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "139.99.130.220", @@ -101645,11 +97177,7 @@ }, { "country": "Austria", - "city": "", "hostname": "at.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "50.7.115.19", @@ -101659,11 +97187,7 @@ }, { "country": "Belarus", - "city": "", "hostname": "by.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.66.68.18", @@ -101678,11 +97202,7 @@ }, { "country": "Belgium", - "city": "", "hostname": "be.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "37.120.143.178", @@ -101691,11 +97211,7 @@ }, { "country": "Bosnia and Herzegovina", - "city": "", "hostname": "ba.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.164.35.37" @@ -101703,11 +97219,7 @@ }, { "country": "Brazil", - "city": "", "hostname": "br.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "66.90.70.7", @@ -101722,11 +97234,7 @@ }, { "country": "Bulgaria", - "city": "", "hostname": "bg.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "37.120.152.26" @@ -101734,11 +97242,7 @@ }, { "country": "Canada", - "city": "", "hostname": "ca.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "192.99.6.164", @@ -101752,9 +97256,6 @@ "country": "Canada", "city": "Toronto", "hostname": "ca-tr.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "104.254.90.34", @@ -101771,9 +97272,6 @@ "country": "Canada", "city": "Vancouver", "hostname": "ca-vn.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "162.221.202.17", @@ -101783,11 +97281,7 @@ }, { "country": "Costa Rica", - "city": "", "hostname": "cr.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "138.59.19.8" @@ -101795,11 +97289,7 @@ }, { "country": "Croatia", - "city": "", "hostname": "hr.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "85.10.51.3", @@ -101810,11 +97300,7 @@ }, { "country": "Cyprus", - "city": "", "hostname": "cy.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "194.30.136.102", @@ -101823,11 +97309,7 @@ }, { "country": "Czech Republic", - "city": "", "hostname": "cz.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.216.35.46" @@ -101835,11 +97317,7 @@ }, { "country": "Denmark", - "city": "", "hostname": "dk.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "37.120.194.174", @@ -101848,11 +97326,7 @@ }, { "country": "Estonia", - "city": "", "hostname": "ee.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.155.96.132" @@ -101860,11 +97334,7 @@ }, { "country": "Finland", - "city": "", "hostname": "fi.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "91.233.116.44", @@ -101873,11 +97343,7 @@ }, { "country": "France", - "city": "", "hostname": "fr.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "62.210.38.83", @@ -101902,9 +97368,6 @@ "country": "France", "city": "Roubaix", "hostname": "fr-rbx.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "51.255.71.16", @@ -101914,11 +97377,7 @@ }, { "country": "Germany", - "city": "", "hostname": "de.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "84.16.236.168", @@ -101932,9 +97391,6 @@ "country": "Germany", "city": "Düsseldorf", "hostname": "de-dus.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "85.14.243.42", @@ -101944,11 +97400,7 @@ }, { "country": "Greece", - "city": "", "hostname": "gr.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "154.57.3.36" @@ -101956,11 +97408,7 @@ }, { "country": "Hungary", - "city": "", "hostname": "hu.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "91.219.238.174" @@ -101968,11 +97416,7 @@ }, { "country": "Iceland", - "city": "", "hostname": "is.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "37.235.49.15", @@ -101986,11 +97430,7 @@ }, { "country": "India", - "city": "", "hostname": "in.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "103.26.204.46", @@ -102001,9 +97441,6 @@ "country": "India", "city": "Karnataka", "hostname": "in-ka.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "139.59.16.78", @@ -102019,9 +97456,6 @@ "country": "Ireland", "city": "Dublin", "hostname": "ie-dub.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "188.241.178.118" @@ -102029,11 +97463,7 @@ }, { "country": "Isle of Man", - "city": "", "hostname": "im.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "37.235.55.14", @@ -102045,11 +97475,7 @@ }, { "country": "Israel", - "city": "", "hostname": "il.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "193.182.144.23", @@ -102061,9 +97487,6 @@ "country": "Italy", "city": "Milan", "hostname": "it-mil.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "91.193.5.50" @@ -102071,11 +97494,7 @@ }, { "country": "Japan", - "city": "", "hostname": "jp.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "85.208.110.122", @@ -102098,11 +97517,7 @@ }, { "country": "Korea", - "city": "", "hostname": "kr.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "160.202.162.60", @@ -102111,11 +97526,7 @@ }, { "country": "Kuala Lumpur", - "city": "", "hostname": "mys.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "111.90.141.34", @@ -102124,11 +97535,7 @@ }, { "country": "Latvia", - "city": "", "hostname": "lv.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "195.123.209.168", @@ -102137,11 +97544,7 @@ }, { "country": "Libya", - "city": "", "hostname": "ly.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "41.208.71.39" @@ -102149,11 +97552,7 @@ }, { "country": "Lithuania", - "city": "", "hostname": "lt.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.25.48.81", @@ -102163,11 +97562,7 @@ }, { "country": "Mexico", - "city": "", "hostname": "mx.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "169.57.35.104" @@ -102175,11 +97570,7 @@ }, { "country": "Moldova", - "city": "", "hostname": "md.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.163.46.141" @@ -102187,11 +97578,7 @@ }, { "country": "Netherlands", - "city": "", "hostname": "nl.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "190.2.132.16", @@ -102201,11 +97588,7 @@ }, { "country": "New Zealand", - "city": "", "hostname": "nz.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "103.75.119.11", @@ -102226,11 +97609,7 @@ }, { "country": "Norway", - "city": "", "hostname": "no.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.90.61.21", @@ -102239,11 +97618,7 @@ }, { "country": "Oman", - "city": "", "hostname": "om.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.226.124.110" @@ -102251,11 +97626,7 @@ }, { "country": "Poland", - "city": "", "hostname": "pl.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "37.120.156.234" @@ -102263,11 +97634,7 @@ }, { "country": "Portugal", - "city": "", "hostname": "pt.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.31.159.110" @@ -102275,11 +97642,7 @@ }, { "country": "Romania", - "city": "", "hostname": "ro.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "77.81.98.70", @@ -102291,11 +97654,7 @@ }, { "country": "Serbia", - "city": "", "hostname": "rs.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "152.89.160.142" @@ -102303,11 +97662,8 @@ }, { "country": "Singapore", - "city": "", "hostname": "sg-free.vpnunlimitedapp.com", "free": true, - "stream": false, - "tcp": false, "udp": true, "ips": [ "178.128.48.177", @@ -102318,11 +97674,7 @@ }, { "country": "Singapore", - "city": "", "hostname": "sg.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "50.7.60.52", @@ -102333,11 +97685,7 @@ }, { "country": "Slovakia", - "city": "", "hostname": "sk.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "46.29.2.131" @@ -102345,11 +97693,7 @@ }, { "country": "Slovenia", - "city": "", "hostname": "si.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "192.71.244.28", @@ -102358,11 +97702,7 @@ }, { "country": "South Africa", - "city": "", "hostname": "za.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "129.232.130.179", @@ -102376,11 +97716,7 @@ }, { "country": "Spain", - "city": "", "hostname": "es.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "194.99.104.58", @@ -102389,11 +97725,7 @@ }, { "country": "Sweden", - "city": "", "hostname": "se.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "91.132.138.174" @@ -102401,11 +97733,7 @@ }, { "country": "Switzerland", - "city": "", "hostname": "ch.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "152.89.162.86", @@ -102414,11 +97742,7 @@ }, { "country": "Thailand", - "city": "", "hostname": "th.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "103.159.3.121" @@ -102426,11 +97750,7 @@ }, { "country": "Turkey", - "city": "", "hostname": "tr.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.17.115.62", @@ -102439,11 +97759,7 @@ }, { "country": "United Arab Emirates", - "city": "", "hostname": "ae.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "45.9.249.201", @@ -102463,11 +97779,7 @@ }, { "country": "United Kingdom", - "city": "", "hostname": "uk.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "5.152.213.186", @@ -102482,9 +97794,6 @@ "country": "United Kingdom", "city": "London", "hostname": "uk-cv.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "5.101.143.66", @@ -102496,9 +97805,6 @@ "country": "United Kingdom", "city": "London", "hostname": "uk-lon.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "5.101.136.154", @@ -102509,11 +97815,8 @@ }, { "country": "United States", - "city": "", "hostname": "us-stream.vpnunlimitedapp.com", - "free": false, "stream": true, - "tcp": false, "udp": true, "ips": [ "64.227.111.143", @@ -102540,11 +97843,7 @@ }, { "country": "United States", - "city": "", "hostname": "us.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "199.115.115.139", @@ -102558,9 +97857,6 @@ "country": "United States", "city": "Chicago", "hostname": "us-chi.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "66.23.205.226", @@ -102573,9 +97869,6 @@ "country": "United States", "city": "Dallas", "hostname": "us-dal.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "172.241.112.92", @@ -102587,9 +97880,6 @@ "country": "United States", "city": "Denver", "hostname": "us-den.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "23.237.26.67", @@ -102600,9 +97890,6 @@ "country": "United States", "city": "Houston", "hostname": "us-hou.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "66.187.75.122", @@ -102615,9 +97902,6 @@ "country": "United States", "city": "Las Vegas", "hostname": "us-lv.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "185.242.5.18", @@ -102628,9 +97912,6 @@ "country": "United States", "city": "Los Angeles", "hostname": "us-la.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "23.83.37.209", @@ -102644,9 +97925,6 @@ "country": "United States", "city": "Miami", "hostname": "us-mia.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "186.233.184.31", @@ -102663,8 +97941,6 @@ "city": "New York", "hostname": "us-ny-free.vpnunlimitedapp.com", "free": true, - "stream": false, - "tcp": false, "udp": true, "ips": [ "64.94.215.66", @@ -102676,9 +97952,6 @@ "country": "United States", "city": "New York", "hostname": "us-ny.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "23.105.134.162", @@ -102692,9 +97965,6 @@ "country": "United States", "city": "Saint Louis", "hostname": "us-sl.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "69.64.58.110", @@ -102707,9 +97977,6 @@ "country": "United States", "city": "Salt Lake City", "hostname": "us-slc.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "209.95.53.223", @@ -102720,9 +97987,6 @@ "country": "United States", "city": "Seattle", "hostname": "us-sea.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "23.81.209.137", @@ -102732,11 +97996,7 @@ }, { "country": "Vietnam", - "city": "", "hostname": "vn.vpnunlimitedapp.com", - "free": false, - "stream": false, - "tcp": false, "udp": true, "ips": [ "103.9.78.84", @@ -102752,7 +98012,6 @@ { "region": "Algeria", "hostname": "dz1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.75.20" @@ -102761,7 +98020,6 @@ { "region": "Argentina", "hostname": "ar1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.109.19" @@ -102770,7 +98028,6 @@ { "region": "Australia Melbourne", "hostname": "au2.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.117.19" @@ -102779,7 +98036,6 @@ { "region": "Australia Perth", "hostname": "au3.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.19" @@ -102788,7 +98044,6 @@ { "region": "Australia Sydney", "hostname": "au1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.117.18" @@ -102797,7 +98052,6 @@ { "region": "Austria", "hostname": "at1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.18" @@ -102806,7 +98060,6 @@ { "region": "Bahrain", "hostname": "bh1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.115.19" @@ -102815,7 +98068,6 @@ { "region": "Belgium", "hostname": "be1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.20" @@ -102824,7 +98076,6 @@ { "region": "Brazil", "hostname": "br1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.109.20" @@ -102833,7 +98084,6 @@ { "region": "Bulgaria", "hostname": "bg1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.22" @@ -102842,7 +98092,6 @@ { "region": "Canada", "hostname": "ca1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.21.18" @@ -102851,7 +98100,6 @@ { "region": "Columbia", "hostname": "co1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.109.21" @@ -102860,7 +98108,6 @@ { "region": "Costa Rica", "hostname": "cr1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.109.22" @@ -102869,7 +98116,6 @@ { "region": "Czech Republic", "hostname": "cz1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.24" @@ -102878,7 +98124,6 @@ { "region": "Denmark", "hostname": "dk1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.28" @@ -102887,7 +98132,6 @@ { "region": "Dubai", "hostname": "ae1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.45.104" @@ -102896,7 +98140,6 @@ { "region": "Egypt", "hostname": "eg1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.75.21" @@ -102905,7 +98148,6 @@ { "region": "El Salvador", "hostname": "sv1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.61.20" @@ -102914,7 +98156,6 @@ { "region": "Finland", "hostname": "fi1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.32" @@ -102923,7 +98164,6 @@ { "region": "France", "hostname": "fr1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.34" @@ -102932,7 +98172,6 @@ { "region": "Germany", "hostname": "de1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.26" @@ -102941,7 +98180,6 @@ { "region": "Greece", "hostname": "gr1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.75.22" @@ -102950,7 +98188,6 @@ { "region": "Hong Kong", "hostname": "hk1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.227.18" @@ -102959,7 +98196,6 @@ { "region": "Iceland", "hostname": "is1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.22.20" @@ -102968,7 +98204,6 @@ { "region": "India", "hostname": "in1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.115.20" @@ -102977,7 +98212,6 @@ { "region": "Indonesia", "hostname": "id1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.20" @@ -102986,7 +98220,6 @@ { "region": "Ireland", "hostname": "ie1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.22.19" @@ -102995,7 +98228,6 @@ { "region": "Israel", "hostname": "il1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.75.18" @@ -103004,7 +98236,6 @@ { "region": "Italy", "hostname": "it1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.36" @@ -103013,7 +98244,6 @@ { "region": "Japan", "hostname": "jp1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.113.18" @@ -103022,7 +98252,6 @@ { "region": "Latvia", "hostname": "lv1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.44" @@ -103031,7 +98260,6 @@ { "region": "Liechtenstein", "hostname": "li1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.38" @@ -103040,7 +98268,6 @@ { "region": "Lithuania", "hostname": "lt1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.40" @@ -103049,7 +98276,6 @@ { "region": "Luxembourg", "hostname": "lu1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.42" @@ -103058,7 +98284,6 @@ { "region": "Macao", "hostname": "mo1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.227.36" @@ -103067,7 +98292,6 @@ { "region": "Malaysia", "hostname": "my1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.21" @@ -103076,7 +98300,6 @@ { "region": "Maldives", "hostname": "mv1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.26" @@ -103085,7 +98308,6 @@ { "region": "Marshall Islands", "hostname": "mh1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.25" @@ -103094,7 +98316,6 @@ { "region": "Mexico", "hostname": "mx1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.61.19" @@ -103103,7 +98324,6 @@ { "region": "Netherlands", "hostname": "eu1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.16" @@ -103112,7 +98332,6 @@ { "region": "New Zealand", "hostname": "nz1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.117.20" @@ -103121,7 +98340,6 @@ { "region": "Norway", "hostname": "no1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.46" @@ -103130,7 +98348,6 @@ { "region": "Pakistan", "hostname": "pk1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.75.23" @@ -103139,7 +98356,6 @@ { "region": "Panama", "hostname": "pa1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.109.23" @@ -103148,7 +98364,6 @@ { "region": "Philippines", "hostname": "ph1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.22" @@ -103157,7 +98372,6 @@ { "region": "Poland", "hostname": "pl1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.48" @@ -103166,7 +98380,6 @@ { "region": "Portugal", "hostname": "pt1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.50" @@ -103175,7 +98388,6 @@ { "region": "Qatar", "hostname": "qa1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.115.21" @@ -103184,7 +98396,6 @@ { "region": "Romania", "hostname": "ro1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.52" @@ -103193,7 +98404,6 @@ { "region": "Russia", "hostname": "ru1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.54" @@ -103202,7 +98412,6 @@ { "region": "Saudi Arabia", "hostname": "sa1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.115.22" @@ -103211,7 +98420,6 @@ { "region": "Singapore", "hostname": "sg1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.18" @@ -103220,7 +98428,6 @@ { "region": "Slovakia", "hostname": "sk1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.60" @@ -103229,7 +98436,6 @@ { "region": "Slovenia", "hostname": "si1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.58" @@ -103238,7 +98444,6 @@ { "region": "South Korea", "hostname": "kr1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.113.19" @@ -103247,7 +98452,6 @@ { "region": "Spain", "hostname": "es1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.30" @@ -103256,7 +98460,6 @@ { "region": "Sweden", "hostname": "se1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.56" @@ -103265,7 +98468,6 @@ { "region": "Switzerland", "hostname": "ch1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.60.18" @@ -103274,7 +98476,6 @@ { "region": "Taiwan", "hostname": "tw1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.227.27" @@ -103283,7 +98484,6 @@ { "region": "Thailand", "hostname": "th1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.23" @@ -103292,7 +98492,6 @@ { "region": "Turkey", "hostname": "tr1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.62" @@ -103301,7 +98500,6 @@ { "region": "USA Austin", "hostname": "us3.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.61.18" @@ -103310,7 +98508,6 @@ { "region": "USA Chicago", "hostname": "us6.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.93.18" @@ -103319,7 +98516,6 @@ { "region": "USA Los Angeles", "hostname": "us1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.67.18" @@ -103328,7 +98524,6 @@ { "region": "USA Miami", "hostname": "us4.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.109.18" @@ -103337,7 +98532,6 @@ { "region": "USA New York", "hostname": "us5.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.63.18" @@ -103346,7 +98540,6 @@ { "region": "USA San Francisco", "hostname": "us7.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.95.18" @@ -103355,7 +98548,6 @@ { "region": "USA Seattle", "hostname": "us8.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.94.18" @@ -103364,7 +98556,6 @@ { "region": "USA Washington DC", "hostname": "us2.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.62.18" @@ -103373,7 +98564,6 @@ { "region": "Ukraine", "hostname": "ua1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "128.90.96.64" @@ -103382,7 +98572,6 @@ { "region": "United Kingdom", "hostname": "uk1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.22.18" @@ -103391,7 +98580,6 @@ { "region": "Uruguay", "hostname": "uy1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.61.21" @@ -103400,7 +98588,6 @@ { "region": "Vietnam", "hostname": "vn1.vyprvpn.com", - "tcp": false, "udp": true, "ips": [ "209.99.1.24" @@ -103415,7 +98602,6 @@ { "city": "Amsterdam", "hostname": "amsterdam.wevpn.com", - "tcp": false, "udp": true, "ips": [ "89.238.177.234" @@ -103424,7 +98610,6 @@ { "city": "Athens", "hostname": "athens.wevpn.com", - "tcp": false, "udp": true, "ips": [ "185.51.134.210" @@ -103433,7 +98618,6 @@ { "city": "Atlanta", "hostname": "atlanta.wevpn.com", - "tcp": false, "udp": true, "ips": [ "104.223.91.146" @@ -103442,7 +98626,6 @@ { "city": "Auckland", "hostname": "auckland.wevpn.com", - "tcp": false, "udp": true, "ips": [ "103.108.94.226" @@ -103451,7 +98634,6 @@ { "city": "Belgrade", "hostname": "belgrade.wevpn.com", - "tcp": false, "udp": true, "ips": [ "37.120.193.170" @@ -103460,7 +98642,6 @@ { "city": "Brussels", "hostname": "brussels.wevpn.com", - "tcp": false, "udp": true, "ips": [ "77.243.191.178" @@ -103469,7 +98650,6 @@ { "city": "Bucharest", "hostname": "bucharest.wevpn.com", - "tcp": false, "udp": true, "ips": [ "86.105.25.162" @@ -103478,7 +98658,6 @@ { "city": "Budapest", "hostname": "budapest.wevpn.com", - "tcp": false, "udp": true, "ips": [ "185.128.26.130" @@ -103487,7 +98666,6 @@ { "city": "Buenos Aires", "hostname": "buenosaires.wevpn.com", - "tcp": false, "udp": true, "ips": [ "131.255.4.140" @@ -103496,7 +98674,6 @@ { "city": "Cairo", "hostname": "cairo.wevpn.com", - "tcp": false, "udp": true, "ips": [ "188.214.122.138" @@ -103505,7 +98682,6 @@ { "city": "Chennai", "hostname": "chennai.wevpn.com", - "tcp": false, "udp": true, "ips": [ "169.38.107.52" @@ -103514,7 +98690,6 @@ { "city": "Chicago", "hostname": "chicago.wevpn.com", - "tcp": false, "udp": true, "ips": [ "69.39.239.57" @@ -103523,7 +98698,6 @@ { "city": "Copenhagen", "hostname": "copenhagen.wevpn.com", - "tcp": false, "udp": true, "ips": [ "37.120.194.82" @@ -103532,7 +98706,6 @@ { "city": "Dallas", "hostname": "dallas.wevpn.com", - "tcp": false, "udp": true, "ips": [ "194.110.112.74" @@ -103541,7 +98714,6 @@ { "city": "Denizli", "hostname": "bursa.wevpn.com", - "tcp": false, "udp": true, "ips": [ "95.173.161.240" @@ -103550,7 +98722,6 @@ { "city": "Denver", "hostname": "denver.wevpn.com", - "tcp": false, "udp": true, "ips": [ "70.39.71.2" @@ -103559,7 +98730,6 @@ { "city": "Dubai", "hostname": "dubai.wevpn.com", - "tcp": false, "udp": true, "ips": [ "217.138.193.42" @@ -103568,7 +98738,6 @@ { "city": "Dublin", "hostname": "dublin.wevpn.com", - "tcp": false, "udp": true, "ips": [ "217.138.222.138" @@ -103577,7 +98746,6 @@ { "city": "Frankfurt", "hostname": "frankfurt.wevpn.com", - "tcp": false, "udp": true, "ips": [ "45.141.152.178" @@ -103586,7 +98754,6 @@ { "city": "Hanoi", "hostname": "hanoi.wevpn.com", - "tcp": false, "udp": true, "ips": [ "188.214.152.194" @@ -103595,7 +98762,6 @@ { "city": "Helsinki", "hostname": "helsinki.wevpn.com", - "tcp": false, "udp": true, "ips": [ "185.212.149.152" @@ -103604,7 +98770,6 @@ { "city": "Hong Kong", "hostname": "hongkong.wevpn.com", - "tcp": false, "udp": true, "ips": [ "84.17.37.55" @@ -103613,7 +98778,6 @@ { "city": "Jakarta", "hostname": "jakarta.wevpn.com", - "tcp": false, "udp": true, "ips": [ "45.133.181.58" @@ -103622,7 +98786,6 @@ { "city": "Johannesburg", "hostname": "johannesburg.wevpn.com", - "tcp": false, "udp": true, "ips": [ "102.165.20.38" @@ -103631,7 +98794,6 @@ { "city": "Kiev", "hostname": "kyiv.wevpn.com", - "tcp": false, "udp": true, "ips": [ "37.19.218.197" @@ -103640,7 +98802,6 @@ { "city": "Lagos", "hostname": "lagos.wevpn.com", - "tcp": false, "udp": true, "ips": [ "102.129.144.142" @@ -103649,7 +98810,6 @@ { "city": "Lisbon", "hostname": "lisbon.wevpn.com", - "tcp": false, "udp": true, "ips": [ "185.90.57.152" @@ -103658,7 +98818,6 @@ { "city": "London", "hostname": "london.wevpn.com", - "tcp": false, "udp": true, "ips": [ "45.141.154.2" @@ -103667,7 +98826,6 @@ { "city": "London-PF", "hostname": "london-pf.wevpn.com", - "tcp": false, "udp": true, "ips": [ "77.243.177.78" @@ -103676,7 +98834,6 @@ { "city": "Los Angeles", "hostname": "losangeles.wevpn.com", - "tcp": false, "udp": true, "ips": [ "45.152.182.82" @@ -103685,7 +98842,6 @@ { "city": "Los Angeles-PF", "hostname": "losangeles-pf.wevpn.com", - "tcp": false, "udp": true, "ips": [ "66.55.92.75" @@ -103694,7 +98850,6 @@ { "city": "Luxembourg", "hostname": "luxembourg.wevpn.com", - "tcp": false, "udp": true, "ips": [ "5.253.204.194" @@ -103703,7 +98858,6 @@ { "city": "Madrid", "hostname": "madrid.wevpn.com", - "tcp": false, "udp": true, "ips": [ "45.152.183.242" @@ -103712,7 +98866,6 @@ { "city": "Manchester", "hostname": "manchester.wevpn.com", - "tcp": false, "udp": true, "ips": [ "86.106.136.98" @@ -103721,7 +98874,6 @@ { "city": "Manila", "hostname": "manila.wevpn.com", - "tcp": false, "udp": true, "ips": [ "188.214.125.106" @@ -103730,7 +98882,6 @@ { "city": "Melbourne", "hostname": "melbourne.wevpn.com", - "tcp": false, "udp": true, "ips": [ "116.206.230.130" @@ -103739,7 +98890,6 @@ { "city": "Mexico City", "hostname": "mexico.wevpn.com", - "tcp": false, "udp": true, "ips": [ "169.57.35.97" @@ -103748,7 +98898,6 @@ { "city": "Miami", "hostname": "miami.wevpn.com", - "tcp": false, "udp": true, "ips": [ "96.47.224.2" @@ -103757,7 +98906,6 @@ { "city": "Milan", "hostname": "milan.wevpn.com", - "tcp": false, "udp": true, "ips": [ "217.138.197.138" @@ -103766,7 +98914,6 @@ { "city": "Montreal", "hostname": "montreal.wevpn.com", - "tcp": false, "udp": true, "ips": [ "217.138.200.242" @@ -103775,7 +98922,6 @@ { "city": "Moscow", "hostname": "moscow.wevpn.com", - "tcp": false, "udp": true, "ips": [ "80.93.181.194" @@ -103784,7 +98930,6 @@ { "city": "New Jersey", "hostname": "newjersey.wevpn.com", - "tcp": false, "udp": true, "ips": [ "23.226.131.146" @@ -103793,7 +98938,6 @@ { "city": "New York", "hostname": "newyork.wevpn.com", - "tcp": false, "udp": true, "ips": [ "217.138.206.106" @@ -103802,7 +98946,6 @@ { "city": "New York-PF", "hostname": "newyork-pf.wevpn.com", - "tcp": false, "udp": true, "ips": [ "188.241.179.2" @@ -103811,7 +98954,6 @@ { "city": "Oslo", "hostname": "oslo.wevpn.com", - "tcp": false, "udp": true, "ips": [ "84.247.50.10" @@ -103820,7 +98962,6 @@ { "city": "Oulu", "hostname": "oulu.wevpn.com", - "tcp": false, "udp": true, "ips": [ "188.126.89.174" @@ -103829,7 +98970,6 @@ { "city": "Paris", "hostname": "paris.wevpn.com", - "tcp": false, "udp": true, "ips": [ "37.120.136.234" @@ -103838,7 +98978,6 @@ { "city": "Phoenix", "hostname": "phoenix.wevpn.com", - "tcp": false, "udp": true, "ips": [ "170.130.15.34" @@ -103847,7 +98986,6 @@ { "city": "Prague", "hostname": "prague.wevpn.com", - "tcp": false, "udp": true, "ips": [ "217.138.199.138" @@ -103856,7 +98994,6 @@ { "city": "Salt Lake City", "hostname": "saltlakecity.wevpn.com", - "tcp": false, "udp": true, "ips": [ "107.182.234.233" @@ -103865,7 +99002,6 @@ { "city": "San Jose", "hostname": "sanjose.wevpn.com", - "tcp": false, "udp": true, "ips": [ "169.62.109.140" @@ -103874,7 +99010,6 @@ { "city": "Sao Paulo", "hostname": "saopaulo.wevpn.com", - "tcp": false, "udp": true, "ips": [ "177.54.152.89" @@ -103883,7 +99018,6 @@ { "city": "Seattle", "hostname": "seattle.wevpn.com", - "tcp": false, "udp": true, "ips": [ "104.140.21.178" @@ -103892,7 +99026,6 @@ { "city": "Seoul", "hostname": "seoul.wevpn.com", - "tcp": false, "udp": true, "ips": [ "169.56.83.206" @@ -103901,7 +99034,6 @@ { "city": "Sibu", "hostname": "kualalumpur.wevpn.com", - "tcp": false, "udp": true, "ips": [ "223.25.246.4" @@ -103910,7 +99042,6 @@ { "city": "Singapore", "hostname": "singapore.wevpn.com", - "tcp": false, "udp": true, "ips": [ "84.17.38.144" @@ -103919,7 +99050,6 @@ { "city": "Sofia", "hostname": "sofia.wevpn.com", - "tcp": false, "udp": true, "ips": [ "217.138.221.42" @@ -103928,7 +99058,6 @@ { "city": "St Petersburg", "hostname": "petersburg.wevpn.com", - "tcp": false, "udp": true, "ips": [ "82.202.220.242" @@ -103937,7 +99066,6 @@ { "city": "Stockholm", "hostname": "stockholm.wevpn.com", - "tcp": false, "udp": true, "ips": [ "45.83.91.66" @@ -103946,7 +99074,6 @@ { "city": "Sydney", "hostname": "sydney.wevpn.com", - "tcp": false, "udp": true, "ips": [ "46.102.153.106" @@ -103955,7 +99082,6 @@ { "city": "Taipei", "hostname": "taipei.wevpn.com", - "tcp": false, "udp": true, "ips": [ "188.214.106.98" @@ -103964,7 +99090,6 @@ { "city": "Tel Aviv", "hostname": "telaviv.wevpn.com", - "tcp": false, "udp": true, "ips": [ "193.43.72.242" @@ -103973,7 +99098,6 @@ { "city": "Tokyo", "hostname": "tokyo.wevpn.com", - "tcp": false, "udp": true, "ips": [ "84.17.34.8" @@ -103982,7 +99106,6 @@ { "city": "Toronto", "hostname": "toronto.wevpn.com", - "tcp": false, "udp": true, "ips": [ "184.75.208.234" @@ -103991,7 +99114,6 @@ { "city": "Vancouver", "hostname": "vancouver.wevpn.com", - "tcp": false, "udp": true, "ips": [ "71.19.249.109" @@ -104000,7 +99122,6 @@ { "city": "Vienna", "hostname": "vienna.wevpn.com", - "tcp": false, "udp": true, "ips": [ "37.120.212.162" @@ -104009,7 +99130,6 @@ { "city": "Warsaw", "hostname": "warsaw.wevpn.com", - "tcp": false, "udp": true, "ips": [ "217.138.209.122" @@ -104018,7 +99138,6 @@ { "city": "Washington DC", "hostname": "washington.wevpn.com", - "tcp": false, "udp": true, "ips": [ "70.32.0.208" @@ -104027,7 +99146,6 @@ { "city": "Zurich", "hostname": "zurich.wevpn.com", - "tcp": false, "udp": true, "ips": [ "37.120.137.82"