diff --git a/.golangci.yml b/.golangci.yml index b2e8e1520..c0aa90915 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -10,6 +10,7 @@ issues: - goerr113 - containedctx - goconst + - maintidx - path: "internal\\/server\\/.+\\.go" linters: - dupl diff --git a/Dockerfile b/Dockerfile index 694e3e76c..654579b3c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -109,6 +109,7 @@ ENV VPN_SERVICE_PROVIDER=pia \ SERVER_COUNTRIES= \ SERVER_CITIES= \ SERVER_HOSTNAMES= \ + SERVER_CATEGORIES= \ # # Mullvad only: ISP= \ OWNED_ONLY=no \ diff --git a/internal/configuration/settings/errors.go b/internal/configuration/settings/errors.go index 80d1f1598..17fa42787 100644 --- a/internal/configuration/settings/errors.go +++ b/internal/configuration/settings/errors.go @@ -5,6 +5,7 @@ import "errors" var ( ErrCityNotValid = errors.New("the city specified is not valid") ErrControlServerPrivilegedPort = errors.New("cannot use privileged port without running as root") + ErrCategoryNotValid = errors.New("the category specified is not valid") ErrCountryNotValid = errors.New("the country specified is not valid") ErrFilepathMissing = errors.New("filepath is missing") ErrFirewallZeroPort = errors.New("cannot have a zero port") diff --git a/internal/configuration/settings/serverselection.go b/internal/configuration/settings/serverselection.go index 7bf1f1e89..4468c4c75 100644 --- a/internal/configuration/settings/serverselection.go +++ b/internal/configuration/settings/serverselection.go @@ -27,8 +27,10 @@ type ServerSelection struct { //nolint:maligned // state, and can be set to the unspecified address to indicate // there is not target IP address to use. TargetIP netip.Addr `json:"target_ip"` - // Counties is the list of countries to filter VPN servers with. + // Countries is the list of countries to filter VPN servers with. Countries []string `json:"countries"` + // Categories is the list of categories to filter VPN servers with. + Categories []string `json:"categories"` // Regions is the list of regions to filter VPN servers with. Regions []string `json:"regions"` // Cities is the list of cities to filter VPN servers with. @@ -224,6 +226,11 @@ func validateServerFilters(settings ServerSelection, filterChoices models.Filter return fmt.Errorf("%w: %w", ErrNameNotValid, err) } + err = validate.AreAllOneOfCaseInsensitive(settings.Categories, filterChoices.Categories) + if err != nil { + return fmt.Errorf("%w: %w", ErrCategoryNotValid, err) + } + return nil } @@ -232,6 +239,7 @@ func (ss *ServerSelection) copy() (copied ServerSelection) { VPN: ss.VPN, TargetIP: ss.TargetIP, Countries: gosettings.CopySlice(ss.Countries), + Categories: gosettings.CopySlice(ss.Categories), Regions: gosettings.CopySlice(ss.Regions), Cities: gosettings.CopySlice(ss.Cities), ISPs: gosettings.CopySlice(ss.ISPs), @@ -253,6 +261,7 @@ func (ss *ServerSelection) mergeWith(other ServerSelection) { ss.VPN = gosettings.MergeWithString(ss.VPN, other.VPN) ss.TargetIP = gosettings.MergeWithValidator(ss.TargetIP, other.TargetIP) ss.Countries = gosettings.MergeWithSlice(ss.Countries, other.Countries) + ss.Categories = gosettings.MergeWithSlice(ss.Categories, other.Categories) ss.Regions = gosettings.MergeWithSlice(ss.Regions, other.Regions) ss.Cities = gosettings.MergeWithSlice(ss.Cities, other.Cities) ss.ISPs = gosettings.MergeWithSlice(ss.ISPs, other.ISPs) @@ -274,6 +283,7 @@ func (ss *ServerSelection) overrideWith(other ServerSelection) { ss.VPN = gosettings.OverrideWithString(ss.VPN, other.VPN) ss.TargetIP = gosettings.OverrideWithValidator(ss.TargetIP, other.TargetIP) ss.Countries = gosettings.OverrideWithSlice(ss.Countries, other.Countries) + ss.Categories = gosettings.OverrideWithSlice(ss.Categories, other.Categories) ss.Regions = gosettings.OverrideWithSlice(ss.Regions, other.Regions) ss.Cities = gosettings.OverrideWithSlice(ss.Cities, other.Cities) ss.ISPs = gosettings.OverrideWithSlice(ss.ISPs, other.ISPs) @@ -318,6 +328,10 @@ func (ss ServerSelection) toLinesNode() (node *gotree.Node) { node.Appendf("Countries: %s", strings.Join(ss.Countries, ", ")) } + if len(ss.Categories) > 0 { + node.Appendf("Categories: %s", strings.Join(ss.Categories, ", ")) + } + if len(ss.Regions) > 0 { node.Appendf("Regions: %s", strings.Join(ss.Regions, ", ")) } diff --git a/internal/configuration/settings/validation/servers.go b/internal/configuration/settings/validation/servers.go index fb1d7f4e7..c659ff32d 100644 --- a/internal/configuration/settings/validation/servers.go +++ b/internal/configuration/settings/validation/servers.go @@ -33,6 +33,28 @@ func ExtractCountries(servers []models.Server) (values []string) { return values } +func ExtractCategories(servers []models.Server) (values []string) { + seen := make(map[string]struct{}, len(servers)) + values = make([]string, 0, len(servers)) + for _, server := range servers { + categories := server.Categories + if len(categories) == 0 { + continue + } + + for _, value := range categories { + _, alreadySeen := seen[value] + if alreadySeen { + continue + } + seen[value] = struct{}{} + + values = sortedInsert(values, value) + } + } + return values +} + func ExtractRegions(servers []models.Server) (values []string) { seen := make(map[string]struct{}, len(servers)) values = make([]string, 0, len(servers)) diff --git a/internal/configuration/sources/env/serverselection.go b/internal/configuration/sources/env/serverselection.go index 405395e57..a86abe8c3 100644 --- a/internal/configuration/sources/env/serverselection.go +++ b/internal/configuration/sources/env/serverselection.go @@ -33,6 +33,7 @@ func (s *Source) readServerSelection(vpnProvider, vpnType string) ( ss.Hostnames = s.env.CSV("SERVER_HOSTNAMES", env.RetroKeys("SERVER_HOSTNAME")) ss.Names = s.env.CSV("SERVER_NAMES", env.RetroKeys("SERVER_NAME")) ss.Numbers, err = s.env.CSVUint16("SERVER_NUMBER") + ss.Categories = s.env.CSV("SERVER_CATEGORIES") if err != nil { return ss, err } diff --git a/internal/models/filters.go b/internal/models/filters.go index 8a7512acc..6a758c51b 100644 --- a/internal/models/filters.go +++ b/internal/models/filters.go @@ -1,10 +1,11 @@ package models type FilterChoices struct { - Countries []string - Regions []string - Cities []string - ISPs []string - Names []string - Hostnames []string + Countries []string + Regions []string + Cities []string + Categories []string + ISPs []string + Names []string + Hostnames []string } diff --git a/internal/models/markdown.go b/internal/models/markdown.go index 7c1c8106b..b2c491371 100644 --- a/internal/models/markdown.go +++ b/internal/models/markdown.go @@ -23,6 +23,7 @@ func markdownTableHeading(legendFields ...string) (markdown string) { const ( cityHeader = "City" countryHeader = "Country" + categoriesHeader = "Categories" freeHeader = "Free" hostnameHeader = "Hostname" ispHeader = "ISP" @@ -51,6 +52,8 @@ func (s *Server) ToMarkdown(headers ...string) (markdown string) { fields[i] = s.City case countryHeader: fields[i] = s.Country + case categoriesHeader: + fields[i] = strings.Join(s.Categories, ", ") case freeHeader: fields[i] = boolToMarkdown(s.Free) case hostnameHeader: @@ -120,7 +123,7 @@ func getMarkdownHeaders(vpnProvider string) (headers []string) { case providers.Mullvad: return []string{countryHeader, cityHeader, ispHeader, ownedHeader, hostnameHeader, vpnHeader} case providers.Nordvpn: - return []string{countryHeader, regionHeader, cityHeader, hostnameHeader} + return []string{countryHeader, regionHeader, cityHeader, hostnameHeader, categoriesHeader} case providers.Perfectprivacy: return []string{cityHeader, tcpHeader, udpHeader} case providers.Privado: diff --git a/internal/models/server.go b/internal/models/server.go index 5446bc7f7..f39bc99c2 100644 --- a/internal/models/server.go +++ b/internal/models/server.go @@ -17,6 +17,7 @@ type Server struct { Region string `json:"region,omitempty"` City string `json:"city,omitempty"` ISP string `json:"isp,omitempty"` + Categories []string `json:"categories,omitempty"` Owned bool `json:"owned,omitempty"` Number uint16 `json:"number,omitempty"` ServerName string `json:"server_name,omitempty"` diff --git a/internal/provider/nordvpn/updater/models.go b/internal/provider/nordvpn/updater/models.go index c7c3e12d4..6c2a51780 100644 --- a/internal/provider/nordvpn/updater/models.go +++ b/internal/provider/nordvpn/updater/models.go @@ -139,6 +139,19 @@ func (s *serverData) hasVPNService(services map[uint32]serviceData) (ok bool) { return false } +// categories returns the list of categories for the server. +func (s *serverData) categories(groups map[uint32]groupData) (categories []string) { + categories = make([]string, 0, len(s.GroupIDs)) + for _, groupID := range s.GroupIDs { + data, ok := groups[groupID] + if !ok || data.Type.Identifier == "regions" { + continue + } + categories = append(categories, data.Title) + } + return categories +} + // ips returns the list of IP addresses for the server. func (s *serverData) ips() (ips []netip.Addr) { ips = make([]netip.Addr, 0, len(s.IPs)) diff --git a/internal/provider/nordvpn/updater/servers.go b/internal/provider/nordvpn/updater/servers.go index b2b7450ee..b54274453 100644 --- a/internal/provider/nordvpn/updater/servers.go +++ b/internal/provider/nordvpn/updater/servers.go @@ -78,11 +78,12 @@ func extractServers(jsonServer serverData, groups map[uint32]groupData, } server := models.Server{ - Country: location.Country.Name, - Region: jsonServer.region(groups), - City: location.Country.City.Name, - Hostname: jsonServer.Hostname, - IPs: jsonServer.ips(), + Country: location.Country.Name, + Region: jsonServer.region(groups), + City: location.Country.City.Name, + Categories: jsonServer.categories(groups), + Hostname: jsonServer.Hostname, + IPs: jsonServer.ips(), } number, err := parseServerName(jsonServer.Name) diff --git a/internal/provider/utils/filtering.go b/internal/provider/utils/filtering.go index a13de1ca0..88e861d6d 100644 --- a/internal/provider/utils/filtering.go +++ b/internal/provider/utils/filtering.go @@ -61,6 +61,10 @@ func filterServer(server models.Server, return true } + if filterAnyByPossibilities(server.Categories, selection.Categories) { + return true + } + if filterByPossibilities(server.Region, selection.Regions) { return true } @@ -101,3 +105,17 @@ func filterByPossibilities[T string | uint16](value T, possibilities []T) (filte } return true } + +func filterAnyByPossibilities(values, possibilities []string) (filtered bool) { + if len(possibilities) == 0 { + return false + } + + for _, value := range values { + if !filterByPossibilities(value, possibilities) { + return false // found a valid value + } + } + + return true +} diff --git a/internal/provider/utils/filtering_test.go b/internal/provider/utils/filtering_test.go index 5d3f2ae01..3aabaa573 100644 --- a/internal/provider/utils/filtering_test.go +++ b/internal/provider/utils/filtering_test.go @@ -179,6 +179,19 @@ func Test_FilterServers(t *testing.T) { {City: "b", VPN: vpn.OpenVPN, UDP: true}, }, }, + "filter by category": { + selection: settings.ServerSelection{ + Categories: []string{"legacy_p2p"}, + }.WithDefaults(providers.Nordvpn), + servers: []models.Server{ + {Categories: []string{"legacy_p2p"}, VPN: vpn.OpenVPN, UDP: true}, + {Categories: []string{"legacy_standard"}, VPN: vpn.OpenVPN, UDP: true}, + {VPN: vpn.OpenVPN, UDP: true}, + }, + filtered: []models.Server{ + {Categories: []string{"legacy_p2p"}, VPN: vpn.OpenVPN, UDP: true}, + }, + }, "filter by ISP": { selection: settings.ServerSelection{ ISPs: []string{"b"}, diff --git a/internal/storage/choices.go b/internal/storage/choices.go index 155f61fb1..d78a304f5 100644 --- a/internal/storage/choices.go +++ b/internal/storage/choices.go @@ -17,11 +17,12 @@ func (s *Storage) GetFilterChoices(provider string) models.FilterChoices { serversObject := s.getMergedServersObject(provider) servers := serversObject.Servers return models.FilterChoices{ - Countries: validation.ExtractCountries(servers), - Regions: validation.ExtractRegions(servers), - Cities: validation.ExtractCities(servers), - ISPs: validation.ExtractISPs(servers), - Names: validation.ExtractServerNames(servers), - Hostnames: validation.ExtractHostnames(servers), + Countries: validation.ExtractCountries(servers), + Categories: validation.ExtractCategories(servers), + Regions: validation.ExtractRegions(servers), + Cities: validation.ExtractCities(servers), + ISPs: validation.ExtractISPs(servers), + Names: validation.ExtractServerNames(servers), + Hostnames: validation.ExtractHostnames(servers), } } diff --git a/internal/storage/filter.go b/internal/storage/filter.go index 17f6725c1..bf229e1e8 100644 --- a/internal/storage/filter.go +++ b/internal/storage/filter.go @@ -82,6 +82,10 @@ func filterServer(server models.Server, return true } + if filterAnyByPossibilities(server.Categories, selection.Categories) { + return true + } + if filterByPossibilities(server.Region, selection.Regions) { return true } @@ -123,6 +127,20 @@ func filterByPossibilities[T string | uint16](value T, possibilities []T) (filte return true } +func filterAnyByPossibilities(values, possibilities []string) (filtered bool) { + if len(possibilities) == 0 { + return false + } + + for _, value := range values { + if !filterByPossibilities(value, possibilities) { + return false // found a valid value + } + } + + return true +} + func filterByProtocol(selection settings.ServerSelection, serverTCP, serverUDP bool) (filtered bool) { switch selection.VPN { diff --git a/internal/storage/formatting.go b/internal/storage/formatting.go index ceeb29a6f..27d7171a9 100644 --- a/internal/storage/formatting.go +++ b/internal/storage/formatting.go @@ -37,6 +37,16 @@ func noServerFoundError(selection settings.ServerSelection) (err error) { messageParts = append(messageParts, part) } + switch len(selection.Categories) { + case 0: + case 1: + part := "category " + selection.Categories[0] + messageParts = append(messageParts, part) + default: + part := "categories " + commaJoin(selection.Categories) + messageParts = append(messageParts, part) + } + switch len(selection.Regions) { case 0: case 1: diff --git a/internal/storage/servers.json b/internal/storage/servers.json index 6628e08a4..9f9074f84 100644 --- a/internal/storage/servers.json +++ b/internal/storage/servers.json @@ -57729,19 +57729,22 @@ }, "nordvpn": { "version": 5, - "timestamp": 1684964695, + "timestamp": 1711034061, "servers": [ { "vpn": "openvpn", "country": "Albania", "region": "Europe", "city": "Tirana", - "number": 27, - "hostname": "al27.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "al36.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.171.155.147" + "87.120.102.3" ] }, { @@ -57749,11 +57752,14 @@ "country": "Albania", "region": "Europe", "city": "Tirana", - "number": 27, - "hostname": "al27.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "al36.nordvpn.com", "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", "ips": [ - "31.171.155.147" + "87.120.102.3" ] }, { @@ -57761,12 +57767,15 @@ "country": "Albania", "region": "Europe", "city": "Tirana", - "number": 28, - "hostname": "al28.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "al37.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.171.155.163" + "87.120.102.19" ] }, { @@ -57774,11 +57783,14 @@ "country": "Albania", "region": "Europe", "city": "Tirana", - "number": 28, - "hostname": "al28.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "al37.nordvpn.com", "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", "ips": [ - "31.171.155.163" + "87.120.102.19" ] }, { @@ -57786,12 +57798,15 @@ "country": "Albania", "region": "Europe", "city": "Tirana", - "number": 29, - "hostname": "al29.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "al38.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.171.155.179" + "87.120.102.51" ] }, { @@ -57799,11 +57814,14 @@ "country": "Albania", "region": "Europe", "city": "Tirana", - "number": 29, - "hostname": "al29.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "al38.nordvpn.com", "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", "ips": [ - "31.171.155.179" + "87.120.102.51" ] }, { @@ -57811,12 +57829,15 @@ "country": "Albania", "region": "Europe", "city": "Tirana", - "number": 30, - "hostname": "al30.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "al39.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.171.155.227" + "87.120.102.67" ] }, { @@ -57824,11 +57845,208 @@ "country": "Albania", "region": "Europe", "city": "Tirana", - "number": 30, - "hostname": "al30.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "al39.nordvpn.com", "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", "ips": [ - "31.171.155.227" + "87.120.102.67" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "al40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.35" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "al40.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.35" + ] + }, + { + "vpn": "openvpn", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "al41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.120.102.83" + ] + }, + { + "vpn": "wireguard", + "country": "Albania", + "region": "Europe", + "city": "Tirana", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "al41.nordvpn.com", + "wgpubkey": "0sAxvVg+N0it7/I4PzWdJdtKY66diiuTsXEfYGThKjg=", + "ips": [ + "87.120.102.83" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "region": "Africa, the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "dz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "region": "Africa, the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "dz1.nordvpn.com", + "wgpubkey": "GtDkZCX0vxVeQ1w+vW5D0GYqk0n0cVY3AfxtNWAfolA=", + "ips": [ + "45.137.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Algeria", + "region": "Africa, the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "dz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Algeria", + "region": "Africa, the Middle East and India", + "city": "Algiers", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "dz2.nordvpn.com", + "wgpubkey": "GtDkZCX0vxVeQ1w+vW5D0GYqk0n0cVY3AfxtNWAfolA=", + "ips": [ + "45.137.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ad1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.77.1" + ] + }, + { + "vpn": "wireguard", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ad1.nordvpn.com", + "wgpubkey": "HZ0CXtSBLyy4/M8ideAbNUnP7EIZq4FJHTyjJ1jNSzc=", + "ips": [ + "45.137.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ad2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.77.3" + ] + }, + { + "vpn": "wireguard", + "country": "Andorra", + "region": "Europe", + "city": "Andorra la Vella", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ad2.nordvpn.com", + "wgpubkey": "HZ0CXtSBLyy4/M8ideAbNUnP7EIZq4FJHTyjJ1jNSzc=", + "ips": [ + "45.137.77.3" ] }, { @@ -57836,6 +58054,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 50, "hostname": "ar50.nordvpn.com", "tcp": true, @@ -57849,6 +58071,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 50, "hostname": "ar50.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -57861,6 +58087,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 51, "hostname": "ar51.nordvpn.com", "tcp": true, @@ -57874,6 +58104,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 51, "hostname": "ar51.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -57886,6 +58120,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 52, "hostname": "ar52.nordvpn.com", "tcp": true, @@ -57899,6 +58137,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 52, "hostname": "ar52.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -57911,6 +58153,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 53, "hostname": "ar53.nordvpn.com", "tcp": true, @@ -57924,6 +58170,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 53, "hostname": "ar53.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -57936,6 +58186,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 54, "hostname": "ar54.nordvpn.com", "tcp": true, @@ -57949,6 +58203,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 54, "hostname": "ar54.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -57961,6 +58219,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 55, "hostname": "ar55.nordvpn.com", "tcp": true, @@ -57974,6 +58236,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 55, "hostname": "ar55.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -57986,6 +58252,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 56, "hostname": "ar56.nordvpn.com", "tcp": true, @@ -57999,6 +58269,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 56, "hostname": "ar56.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -58011,6 +58285,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 57, "hostname": "ar57.nordvpn.com", "tcp": true, @@ -58024,6 +58302,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 57, "hostname": "ar57.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -58036,6 +58318,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 58, "hostname": "ar58.nordvpn.com", "tcp": true, @@ -58049,6 +58335,10 @@ "country": "Argentina", "region": "The Americas", "city": "Buenos Aires", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 58, "hostname": "ar58.nordvpn.com", "wgpubkey": "yRz3uhKlC/37ZUfrDvr3pv2NuBLF4/urYtOoCfUbqjQ=", @@ -58056,11 +58346,81 @@ "103.50.33.159" ] }, + { + "vpn": "openvpn", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "am1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "am1.nordvpn.com", + "wgpubkey": "KKXtpt9VG8WTixvZIZeiMJl0DrdtlmnyZPtNIbsVsUk=", + "ips": [ + "45.137.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "am2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.78.3" + ] + }, + { + "vpn": "wireguard", + "country": "Armenia", + "region": "Europe", + "city": "Yerevan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "am2.nordvpn.com", + "wgpubkey": "KKXtpt9VG8WTixvZIZeiMJl0DrdtlmnyZPtNIbsVsUk=", + "ips": [ + "45.137.78.3" + ] + }, { "vpn": "openvpn", "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 638, "hostname": "au638.nordvpn.com", "tcp": true, @@ -58074,6 +58434,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 638, "hostname": "au638.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58086,6 +58450,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 639, "hostname": "au639.nordvpn.com", "tcp": true, @@ -58099,6 +58467,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 639, "hostname": "au639.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58111,6 +58483,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 658, "hostname": "au658.nordvpn.com", "tcp": true, @@ -58124,6 +58500,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 658, "hostname": "au658.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58136,6 +58516,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 659, "hostname": "au659.nordvpn.com", "tcp": true, @@ -58149,6 +58533,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 659, "hostname": "au659.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58161,6 +58549,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 660, "hostname": "au660.nordvpn.com", "tcp": true, @@ -58174,6 +58566,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 660, "hostname": "au660.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58186,6 +58582,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 661, "hostname": "au661.nordvpn.com", "tcp": true, @@ -58199,6 +58599,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 661, "hostname": "au661.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58211,56 +58615,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", - "number": 662, - "hostname": "au662.nordvpn.com", - "tcp": true, - "udp": true, - "ips": [ - "103.137.12.243" - ] - }, - { - "vpn": "wireguard", - "country": "Australia", - "region": "Asia Pacific", - "city": "Adelaide", - "number": 662, - "hostname": "au662.nordvpn.com", - "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", - "ips": [ - "103.137.12.243" - ] - }, - { - "vpn": "openvpn", - "country": "Australia", - "region": "Asia Pacific", - "city": "Adelaide", - "number": 663, - "hostname": "au663.nordvpn.com", - "tcp": true, - "udp": true, - "ips": [ - "103.137.12.251" - ] - }, - { - "vpn": "wireguard", - "country": "Australia", - "region": "Asia Pacific", - "city": "Adelaide", - "number": 663, - "hostname": "au663.nordvpn.com", - "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", - "ips": [ - "103.137.12.251" - ] - }, - { - "vpn": "openvpn", - "country": "Australia", - "region": "Asia Pacific", - "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 680, "hostname": "au680.nordvpn.com", "tcp": true, @@ -58274,6 +58632,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 680, "hostname": "au680.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58286,6 +58648,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 681, "hostname": "au681.nordvpn.com", "tcp": true, @@ -58299,6 +58665,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 681, "hostname": "au681.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58311,6 +58681,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 682, "hostname": "au682.nordvpn.com", "tcp": true, @@ -58324,6 +58698,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 682, "hostname": "au682.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58336,6 +58714,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 733, "hostname": "au733.nordvpn.com", "tcp": true, @@ -58349,6 +58731,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 733, "hostname": "au733.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58361,6 +58747,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 785, "hostname": "au785.nordvpn.com", "tcp": true, @@ -58374,6 +58764,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 785, "hostname": "au785.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58386,6 +58780,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 786, "hostname": "au786.nordvpn.com", "tcp": true, @@ -58399,6 +58797,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 786, "hostname": "au786.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58411,6 +58813,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 787, "hostname": "au787.nordvpn.com", "tcp": true, @@ -58424,6 +58830,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 787, "hostname": "au787.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58436,6 +58846,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 788, "hostname": "au788.nordvpn.com", "tcp": true, @@ -58449,6 +58863,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 788, "hostname": "au788.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58461,6 +58879,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 789, "hostname": "au789.nordvpn.com", "tcp": true, @@ -58474,6 +58896,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 789, "hostname": "au789.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58486,6 +58912,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 801, "hostname": "au801.nordvpn.com", "tcp": true, @@ -58499,6 +58929,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 801, "hostname": "au801.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58511,6 +58945,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 802, "hostname": "au802.nordvpn.com", "tcp": true, @@ -58524,6 +58962,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 802, "hostname": "au802.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58536,6 +58978,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 803, "hostname": "au803.nordvpn.com", "tcp": true, @@ -58549,6 +58995,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Adelaide", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 803, "hostname": "au803.nordvpn.com", "wgpubkey": "oqq6Jshs2r5V31j6lw2GfWai5Qb/D/jDqhgXa1zRNEg=", @@ -58561,6 +59011,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 585, "hostname": "au585.nordvpn.com", "tcp": true, @@ -58574,6 +59028,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 585, "hostname": "au585.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58586,6 +59044,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 586, "hostname": "au586.nordvpn.com", "tcp": true, @@ -58599,6 +59061,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 586, "hostname": "au586.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58611,6 +59077,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 587, "hostname": "au587.nordvpn.com", "tcp": true, @@ -58624,6 +59094,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 587, "hostname": "au587.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58636,6 +59110,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 588, "hostname": "au588.nordvpn.com", "tcp": true, @@ -58649,6 +59127,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 588, "hostname": "au588.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58661,6 +59143,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 610, "hostname": "au610.nordvpn.com", "tcp": true, @@ -58674,6 +59160,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 610, "hostname": "au610.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58686,6 +59176,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 611, "hostname": "au611.nordvpn.com", "tcp": true, @@ -58699,6 +59193,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 611, "hostname": "au611.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58711,6 +59209,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 612, "hostname": "au612.nordvpn.com", "tcp": true, @@ -58724,6 +59226,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 612, "hostname": "au612.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58736,6 +59242,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 613, "hostname": "au613.nordvpn.com", "tcp": true, @@ -58749,6 +59259,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 613, "hostname": "au613.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58761,6 +59275,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 614, "hostname": "au614.nordvpn.com", "tcp": true, @@ -58774,6 +59292,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 614, "hostname": "au614.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58786,6 +59308,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 615, "hostname": "au615.nordvpn.com", "tcp": true, @@ -58799,6 +59325,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 615, "hostname": "au615.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58811,6 +59341,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 640, "hostname": "au640.nordvpn.com", "tcp": true, @@ -58824,6 +59358,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 640, "hostname": "au640.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58836,6 +59374,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 641, "hostname": "au641.nordvpn.com", "tcp": true, @@ -58849,6 +59391,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 641, "hostname": "au641.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58861,6 +59407,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 642, "hostname": "au642.nordvpn.com", "tcp": true, @@ -58874,6 +59424,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 642, "hostname": "au642.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58886,6 +59440,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 643, "hostname": "au643.nordvpn.com", "tcp": true, @@ -58899,6 +59457,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 643, "hostname": "au643.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58911,6 +59473,76 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "au662.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.243" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "au662.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.243" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "au663.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.137.12.251" + ] + }, + { + "vpn": "wireguard", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "au663.nordvpn.com", + "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", + "ips": [ + "103.137.12.251" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 684, "hostname": "au684.nordvpn.com", "tcp": true, @@ -58924,6 +59556,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 684, "hostname": "au684.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58936,6 +59572,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 685, "hostname": "au685.nordvpn.com", "tcp": true, @@ -58949,6 +59589,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 685, "hostname": "au685.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58961,6 +59605,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 734, "hostname": "au734.nordvpn.com", "tcp": true, @@ -58974,6 +59622,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 734, "hostname": "au734.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -58986,6 +59638,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 735, "hostname": "au735.nordvpn.com", "tcp": true, @@ -58999,6 +59655,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 735, "hostname": "au735.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59011,6 +59671,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 736, "hostname": "au736.nordvpn.com", "tcp": true, @@ -59024,6 +59688,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 736, "hostname": "au736.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59036,6 +59704,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 737, "hostname": "au737.nordvpn.com", "tcp": true, @@ -59049,6 +59721,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 737, "hostname": "au737.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59061,6 +59737,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 738, "hostname": "au738.nordvpn.com", "tcp": true, @@ -59074,6 +59754,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 738, "hostname": "au738.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59086,6 +59770,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 739, "hostname": "au739.nordvpn.com", "tcp": true, @@ -59099,6 +59787,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 739, "hostname": "au739.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59111,6 +59803,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 740, "hostname": "au740.nordvpn.com", "tcp": true, @@ -59124,6 +59820,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 740, "hostname": "au740.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59136,6 +59836,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 741, "hostname": "au741.nordvpn.com", "tcp": true, @@ -59149,6 +59853,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 741, "hostname": "au741.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59161,6 +59869,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 742, "hostname": "au742.nordvpn.com", "tcp": true, @@ -59174,6 +59886,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 742, "hostname": "au742.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59186,6 +59902,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 743, "hostname": "au743.nordvpn.com", "tcp": true, @@ -59199,6 +59919,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 743, "hostname": "au743.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59211,6 +59935,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 744, "hostname": "au744.nordvpn.com", "tcp": true, @@ -59224,6 +59952,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 744, "hostname": "au744.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59236,6 +59968,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 745, "hostname": "au745.nordvpn.com", "tcp": true, @@ -59249,6 +59985,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 745, "hostname": "au745.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59261,6 +60001,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 797, "hostname": "au797.nordvpn.com", "tcp": true, @@ -59274,6 +60018,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 797, "hostname": "au797.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59286,6 +60034,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 798, "hostname": "au798.nordvpn.com", "tcp": true, @@ -59299,6 +60051,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 798, "hostname": "au798.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59311,6 +60067,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 799, "hostname": "au799.nordvpn.com", "tcp": true, @@ -59324,6 +60084,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 799, "hostname": "au799.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59336,6 +60100,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 800, "hostname": "au800.nordvpn.com", "tcp": true, @@ -59349,6 +60117,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Brisbane", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 800, "hostname": "au800.nordvpn.com", "wgpubkey": "VrT9Q0sxH1v/m9vaOvcZeCjVm+4KjokZ5NCPskOtJzc=", @@ -59361,6 +60133,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 569, "hostname": "au569.nordvpn.com", "tcp": true, @@ -59374,6 +60150,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 569, "hostname": "au569.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59386,6 +60166,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 570, "hostname": "au570.nordvpn.com", "tcp": true, @@ -59399,6 +60183,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 570, "hostname": "au570.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59411,6 +60199,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 595, "hostname": "au595.nordvpn.com", "tcp": true, @@ -59424,6 +60216,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 595, "hostname": "au595.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59436,6 +60232,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 596, "hostname": "au596.nordvpn.com", "tcp": true, @@ -59449,6 +60249,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 596, "hostname": "au596.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59461,6 +60265,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 644, "hostname": "au644.nordvpn.com", "tcp": true, @@ -59474,6 +60282,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 644, "hostname": "au644.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59486,6 +60298,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 645, "hostname": "au645.nordvpn.com", "tcp": true, @@ -59499,6 +60315,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 645, "hostname": "au645.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59511,6 +60331,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 646, "hostname": "au646.nordvpn.com", "tcp": true, @@ -59524,6 +60348,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 646, "hostname": "au646.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59536,6 +60364,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 647, "hostname": "au647.nordvpn.com", "tcp": true, @@ -59549,6 +60381,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 647, "hostname": "au647.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59561,6 +60397,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 665, "hostname": "au665.nordvpn.com", "tcp": true, @@ -59574,6 +60414,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 665, "hostname": "au665.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59586,6 +60430,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 666, "hostname": "au666.nordvpn.com", "tcp": true, @@ -59599,6 +60447,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 666, "hostname": "au666.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59611,6 +60463,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 667, "hostname": "au667.nordvpn.com", "tcp": true, @@ -59624,6 +60480,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 667, "hostname": "au667.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59636,6 +60496,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 668, "hostname": "au668.nordvpn.com", "tcp": true, @@ -59649,6 +60513,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 668, "hostname": "au668.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59661,6 +60529,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 669, "hostname": "au669.nordvpn.com", "tcp": true, @@ -59674,6 +60546,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 669, "hostname": "au669.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59686,6 +60562,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 686, "hostname": "au686.nordvpn.com", "tcp": true, @@ -59699,6 +60579,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 686, "hostname": "au686.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59711,6 +60595,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 688, "hostname": "au688.nordvpn.com", "tcp": true, @@ -59724,6 +60612,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 688, "hostname": "au688.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59736,6 +60628,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 689, "hostname": "au689.nordvpn.com", "tcp": true, @@ -59749,6 +60645,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 689, "hostname": "au689.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59761,6 +60661,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 690, "hostname": "au690.nordvpn.com", "tcp": true, @@ -59774,6 +60678,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 690, "hostname": "au690.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59786,6 +60694,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 691, "hostname": "au691.nordvpn.com", "tcp": true, @@ -59799,6 +60711,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 691, "hostname": "au691.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59811,6 +60727,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 753, "hostname": "au753.nordvpn.com", "tcp": true, @@ -59824,6 +60744,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 753, "hostname": "au753.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59836,6 +60760,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 754, "hostname": "au754.nordvpn.com", "tcp": true, @@ -59849,6 +60777,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 754, "hostname": "au754.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59861,6 +60793,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 755, "hostname": "au755.nordvpn.com", "tcp": true, @@ -59874,6 +60810,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 755, "hostname": "au755.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59886,6 +60826,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 756, "hostname": "au756.nordvpn.com", "tcp": true, @@ -59899,6 +60843,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 756, "hostname": "au756.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59911,6 +60859,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 757, "hostname": "au757.nordvpn.com", "tcp": true, @@ -59924,6 +60876,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 757, "hostname": "au757.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59936,6 +60892,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 758, "hostname": "au758.nordvpn.com", "tcp": true, @@ -59949,6 +60909,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 758, "hostname": "au758.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59961,6 +60925,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 759, "hostname": "au759.nordvpn.com", "tcp": true, @@ -59974,6 +60942,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 759, "hostname": "au759.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -59986,6 +60958,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 760, "hostname": "au760.nordvpn.com", "tcp": true, @@ -59999,6 +60975,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 760, "hostname": "au760.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60011,6 +60991,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 761, "hostname": "au761.nordvpn.com", "tcp": true, @@ -60024,6 +61008,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 761, "hostname": "au761.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60036,6 +61024,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 762, "hostname": "au762.nordvpn.com", "tcp": true, @@ -60049,6 +61041,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 762, "hostname": "au762.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60061,6 +61057,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 763, "hostname": "au763.nordvpn.com", "tcp": true, @@ -60074,6 +61074,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 763, "hostname": "au763.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60086,6 +61090,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 764, "hostname": "au764.nordvpn.com", "tcp": true, @@ -60099,6 +61107,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 764, "hostname": "au764.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60111,6 +61123,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 765, "hostname": "au765.nordvpn.com", "tcp": true, @@ -60124,6 +61140,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 765, "hostname": "au765.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60136,6 +61156,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 766, "hostname": "au766.nordvpn.com", "tcp": true, @@ -60149,6 +61173,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 766, "hostname": "au766.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60161,6 +61189,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 767, "hostname": "au767.nordvpn.com", "tcp": true, @@ -60174,6 +61206,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 767, "hostname": "au767.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60186,6 +61222,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 768, "hostname": "au768.nordvpn.com", "tcp": true, @@ -60199,6 +61239,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 768, "hostname": "au768.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60211,6 +61255,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 769, "hostname": "au769.nordvpn.com", "tcp": true, @@ -60224,6 +61272,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 769, "hostname": "au769.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60236,6 +61288,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 770, "hostname": "au770.nordvpn.com", "tcp": true, @@ -60249,6 +61305,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Melbourne", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 770, "hostname": "au770.nordvpn.com", "wgpubkey": "f+xo9hOjVEkHVkGJowuRGU5UEESXCpiI3wYCQZPSils=", @@ -60261,6 +61321,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 599, "hostname": "au599.nordvpn.com", "tcp": true, @@ -60274,6 +61338,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 599, "hostname": "au599.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60286,6 +61354,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 600, "hostname": "au600.nordvpn.com", "tcp": true, @@ -60299,6 +61371,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 600, "hostname": "au600.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60311,6 +61387,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 601, "hostname": "au601.nordvpn.com", "tcp": true, @@ -60324,6 +61404,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 601, "hostname": "au601.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60336,6 +61420,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 602, "hostname": "au602.nordvpn.com", "tcp": true, @@ -60349,6 +61437,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 602, "hostname": "au602.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60361,6 +61453,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 648, "hostname": "au648.nordvpn.com", "tcp": true, @@ -60374,6 +61470,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 648, "hostname": "au648.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60386,6 +61486,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 649, "hostname": "au649.nordvpn.com", "tcp": true, @@ -60399,6 +61503,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 649, "hostname": "au649.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60411,6 +61519,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 650, "hostname": "au650.nordvpn.com", "tcp": true, @@ -60424,6 +61536,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 650, "hostname": "au650.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60436,6 +61552,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 651, "hostname": "au651.nordvpn.com", "tcp": true, @@ -60449,6 +61569,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 651, "hostname": "au651.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60461,6 +61585,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 670, "hostname": "au670.nordvpn.com", "tcp": true, @@ -60474,6 +61602,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 670, "hostname": "au670.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60486,6 +61618,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 671, "hostname": "au671.nordvpn.com", "tcp": true, @@ -60499,6 +61635,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 671, "hostname": "au671.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60511,6 +61651,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 673, "hostname": "au673.nordvpn.com", "tcp": true, @@ -60524,6 +61668,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 673, "hostname": "au673.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60536,6 +61684,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 692, "hostname": "au692.nordvpn.com", "tcp": true, @@ -60549,6 +61701,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 692, "hostname": "au692.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60561,6 +61717,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 693, "hostname": "au693.nordvpn.com", "tcp": true, @@ -60574,6 +61734,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 693, "hostname": "au693.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60586,6 +61750,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 694, "hostname": "au694.nordvpn.com", "tcp": true, @@ -60599,6 +61767,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 694, "hostname": "au694.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60611,6 +61783,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 695, "hostname": "au695.nordvpn.com", "tcp": true, @@ -60624,6 +61800,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 695, "hostname": "au695.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60636,6 +61816,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 772, "hostname": "au772.nordvpn.com", "tcp": true, @@ -60649,6 +61833,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 772, "hostname": "au772.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60661,6 +61849,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 773, "hostname": "au773.nordvpn.com", "tcp": true, @@ -60674,6 +61866,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 773, "hostname": "au773.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60686,6 +61882,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 774, "hostname": "au774.nordvpn.com", "tcp": true, @@ -60699,6 +61899,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 774, "hostname": "au774.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60711,6 +61915,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 775, "hostname": "au775.nordvpn.com", "tcp": true, @@ -60724,6 +61932,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 775, "hostname": "au775.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60736,31 +61948,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", - "number": 776, - "hostname": "au776.nordvpn.com", - "tcp": true, - "udp": true, - "ips": [ - "45.248.78.231" - ] - }, - { - "vpn": "wireguard", - "country": "Australia", - "region": "Asia Pacific", - "city": "Perth", - "number": 776, - "hostname": "au776.nordvpn.com", - "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", - "ips": [ - "45.248.78.231" - ] - }, - { - "vpn": "openvpn", - "country": "Australia", - "region": "Asia Pacific", - "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 777, "hostname": "au777.nordvpn.com", "tcp": true, @@ -60774,6 +61965,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 777, "hostname": "au777.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60786,6 +61981,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 778, "hostname": "au778.nordvpn.com", "tcp": true, @@ -60799,6 +61998,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 778, "hostname": "au778.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60811,6 +62014,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 779, "hostname": "au779.nordvpn.com", "tcp": true, @@ -60824,6 +62031,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 779, "hostname": "au779.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60836,6 +62047,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 780, "hostname": "au780.nordvpn.com", "tcp": true, @@ -60849,6 +62064,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 780, "hostname": "au780.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60861,6 +62080,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 781, "hostname": "au781.nordvpn.com", "tcp": true, @@ -60874,6 +62097,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 781, "hostname": "au781.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60886,6 +62113,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 782, "hostname": "au782.nordvpn.com", "tcp": true, @@ -60899,6 +62130,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 782, "hostname": "au782.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60911,6 +62146,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 783, "hostname": "au783.nordvpn.com", "tcp": true, @@ -60924,6 +62163,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 783, "hostname": "au783.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60936,6 +62179,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 790, "hostname": "au790.nordvpn.com", "tcp": true, @@ -60949,6 +62196,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 790, "hostname": "au790.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60961,6 +62212,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 791, "hostname": "au791.nordvpn.com", "tcp": true, @@ -60974,6 +62229,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 791, "hostname": "au791.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -60986,6 +62245,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 792, "hostname": "au792.nordvpn.com", "tcp": true, @@ -60999,6 +62262,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 792, "hostname": "au792.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -61011,6 +62278,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 793, "hostname": "au793.nordvpn.com", "tcp": true, @@ -61024,6 +62295,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 793, "hostname": "au793.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -61036,6 +62311,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 794, "hostname": "au794.nordvpn.com", "tcp": true, @@ -61049,6 +62328,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 794, "hostname": "au794.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -61061,6 +62344,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 795, "hostname": "au795.nordvpn.com", "tcp": true, @@ -61074,6 +62361,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 795, "hostname": "au795.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -61086,6 +62377,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 796, "hostname": "au796.nordvpn.com", "tcp": true, @@ -61099,6 +62394,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Perth", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 796, "hostname": "au796.nordvpn.com", "wgpubkey": "SNftyabvPDqSQj1v7uQqsPALwAnI2S5Um9xgyEWd9XM=", @@ -61111,6 +62410,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 529, "hostname": "au529.nordvpn.com", "tcp": true, @@ -61124,6 +62427,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 529, "hostname": "au529.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61136,6 +62443,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 530, "hostname": "au530.nordvpn.com", "tcp": true, @@ -61149,6 +62460,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 530, "hostname": "au530.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61161,6 +62476,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 531, "hostname": "au531.nordvpn.com", "tcp": true, @@ -61174,6 +62493,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 531, "hostname": "au531.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61186,6 +62509,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 532, "hostname": "au532.nordvpn.com", "tcp": true, @@ -61199,6 +62526,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 532, "hostname": "au532.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61211,6 +62542,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 533, "hostname": "au533.nordvpn.com", "tcp": true, @@ -61224,6 +62559,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 533, "hostname": "au533.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61236,6 +62575,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 534, "hostname": "au534.nordvpn.com", "tcp": true, @@ -61249,6 +62592,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 534, "hostname": "au534.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61261,6 +62608,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 535, "hostname": "au535.nordvpn.com", "tcp": true, @@ -61274,6 +62625,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 535, "hostname": "au535.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61286,6 +62641,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 536, "hostname": "au536.nordvpn.com", "tcp": true, @@ -61299,6 +62658,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 536, "hostname": "au536.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61311,6 +62674,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 537, "hostname": "au537.nordvpn.com", "tcp": true, @@ -61324,6 +62691,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 537, "hostname": "au537.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61336,6 +62707,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 538, "hostname": "au538.nordvpn.com", "tcp": true, @@ -61349,6 +62724,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 538, "hostname": "au538.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61361,6 +62740,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 576, "hostname": "au576.nordvpn.com", "tcp": true, @@ -61374,6 +62757,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 576, "hostname": "au576.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61386,6 +62773,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 605, "hostname": "au605.nordvpn.com", "tcp": true, @@ -61399,6 +62790,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 605, "hostname": "au605.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61411,6 +62806,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 606, "hostname": "au606.nordvpn.com", "tcp": true, @@ -61424,6 +62823,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 606, "hostname": "au606.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61436,6 +62839,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 607, "hostname": "au607.nordvpn.com", "tcp": true, @@ -61449,6 +62856,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 607, "hostname": "au607.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61461,6 +62872,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 623, "hostname": "au623.nordvpn.com", "tcp": true, @@ -61474,6 +62889,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 623, "hostname": "au623.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61486,6 +62905,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 624, "hostname": "au624.nordvpn.com", "tcp": true, @@ -61499,6 +62922,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 624, "hostname": "au624.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61511,6 +62938,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 652, "hostname": "au652.nordvpn.com", "tcp": true, @@ -61524,6 +62955,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 652, "hostname": "au652.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61536,6 +62971,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 653, "hostname": "au653.nordvpn.com", "tcp": true, @@ -61549,6 +62988,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 653, "hostname": "au653.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61561,6 +63004,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 654, "hostname": "au654.nordvpn.com", "tcp": true, @@ -61574,6 +63021,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 654, "hostname": "au654.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61586,6 +63037,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 655, "hostname": "au655.nordvpn.com", "tcp": true, @@ -61599,6 +63054,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 655, "hostname": "au655.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61611,6 +63070,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 656, "hostname": "au656.nordvpn.com", "tcp": true, @@ -61624,6 +63087,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 656, "hostname": "au656.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61636,6 +63103,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 657, "hostname": "au657.nordvpn.com", "tcp": true, @@ -61649,6 +63120,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 657, "hostname": "au657.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61661,6 +63136,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 700, "hostname": "au700.nordvpn.com", "tcp": true, @@ -61674,6 +63153,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 700, "hostname": "au700.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61686,6 +63169,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 701, "hostname": "au701.nordvpn.com", "tcp": true, @@ -61699,6 +63186,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 701, "hostname": "au701.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61711,6 +63202,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 702, "hostname": "au702.nordvpn.com", "tcp": true, @@ -61724,6 +63219,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 702, "hostname": "au702.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61736,6 +63235,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 703, "hostname": "au703.nordvpn.com", "tcp": true, @@ -61749,6 +63252,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 703, "hostname": "au703.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61761,6 +63268,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 704, "hostname": "au704.nordvpn.com", "tcp": true, @@ -61774,6 +63285,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 704, "hostname": "au704.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61786,6 +63301,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 705, "hostname": "au705.nordvpn.com", "tcp": true, @@ -61799,6 +63318,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 705, "hostname": "au705.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61811,6 +63334,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 706, "hostname": "au706.nordvpn.com", "tcp": true, @@ -61824,6 +63351,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 706, "hostname": "au706.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61836,6 +63367,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 707, "hostname": "au707.nordvpn.com", "tcp": true, @@ -61849,6 +63384,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 707, "hostname": "au707.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61861,6 +63400,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 711, "hostname": "au711.nordvpn.com", "tcp": true, @@ -61874,6 +63417,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 711, "hostname": "au711.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61886,6 +63433,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 712, "hostname": "au712.nordvpn.com", "tcp": true, @@ -61899,6 +63450,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 712, "hostname": "au712.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61911,6 +63466,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 713, "hostname": "au713.nordvpn.com", "tcp": true, @@ -61924,6 +63483,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 713, "hostname": "au713.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61936,6 +63499,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 714, "hostname": "au714.nordvpn.com", "tcp": true, @@ -61949,6 +63516,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 714, "hostname": "au714.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61961,6 +63532,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 725, "hostname": "au725.nordvpn.com", "tcp": true, @@ -61974,6 +63549,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 725, "hostname": "au725.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -61986,6 +63565,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 726, "hostname": "au726.nordvpn.com", "tcp": true, @@ -61999,6 +63582,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 726, "hostname": "au726.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62011,6 +63598,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 727, "hostname": "au727.nordvpn.com", "tcp": true, @@ -62024,6 +63615,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 727, "hostname": "au727.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62036,6 +63631,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 728, "hostname": "au728.nordvpn.com", "tcp": true, @@ -62049,6 +63648,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 728, "hostname": "au728.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62061,6 +63664,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 729, "hostname": "au729.nordvpn.com", "tcp": true, @@ -62074,6 +63681,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 729, "hostname": "au729.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62086,6 +63697,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 730, "hostname": "au730.nordvpn.com", "tcp": true, @@ -62099,6 +63714,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 730, "hostname": "au730.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62111,6 +63730,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 731, "hostname": "au731.nordvpn.com", "tcp": true, @@ -62124,6 +63747,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 731, "hostname": "au731.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62136,6 +63763,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 732, "hostname": "au732.nordvpn.com", "tcp": true, @@ -62149,6 +63780,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 732, "hostname": "au732.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62161,6 +63796,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 746, "hostname": "au746.nordvpn.com", "tcp": true, @@ -62174,6 +63813,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 746, "hostname": "au746.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62186,6 +63829,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 747, "hostname": "au747.nordvpn.com", "tcp": true, @@ -62199,6 +63846,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 747, "hostname": "au747.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62211,6 +63862,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 748, "hostname": "au748.nordvpn.com", "tcp": true, @@ -62224,6 +63879,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 748, "hostname": "au748.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62236,6 +63895,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 749, "hostname": "au749.nordvpn.com", "tcp": true, @@ -62249,6 +63912,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 749, "hostname": "au749.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62261,6 +63928,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 750, "hostname": "au750.nordvpn.com", "tcp": true, @@ -62274,6 +63945,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 750, "hostname": "au750.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62286,6 +63961,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 751, "hostname": "au751.nordvpn.com", "tcp": true, @@ -62299,6 +63978,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 751, "hostname": "au751.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62311,6 +63994,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 752, "hostname": "au752.nordvpn.com", "tcp": true, @@ -62324,6 +64011,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 752, "hostname": "au752.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62336,6 +64027,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 784, "hostname": "au784.nordvpn.com", "tcp": true, @@ -62349,6 +64044,10 @@ "country": "Australia", "region": "Asia Pacific", "city": "Sydney", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 784, "hostname": "au784.nordvpn.com", "wgpubkey": "igVgVXvTO8gqWji2P2tNeS0+gYCPU/o8hr4ZnqcRZko=", @@ -62356,11 +64055,351 @@ "103.1.212.83" ] }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 804, + "hostname": "au804.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.33" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 805, + "hostname": "au805.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.35" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 806, + "hostname": "au806.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.21" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 807, + "hostname": "au807.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.23" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 808, + "hostname": "au808.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.26" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 809, + "hostname": "au809.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.63.41" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 810, + "hostname": "au810.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.38" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 811, + "hostname": "au811.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.40" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 812, + "hostname": "au812.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.98" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 813, + "hostname": "au813.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.100" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 814, + "hostname": "au814.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.104" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 815, + "hostname": "au815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.106" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 816, + "hostname": "au816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.109" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 817, + "hostname": "au817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.111" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 818, + "hostname": "au818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.114" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 819, + "hostname": "au819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.116" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 820, + "hostname": "au820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.119" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 821, + "hostname": "au821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.33.121" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 822, + "hostname": "au822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.81" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 823, + "hostname": "au823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.83" + ] + }, + { + "vpn": "openvpn", + "country": "Australia", + "region": "Asia Pacific", + "city": "Sydney", + "categories": [ + "Dedicated IP" + ], + "number": 824, + "hostname": "au824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "121.127.47.88" + ] + }, { "vpn": "openvpn", "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 80, "hostname": "at80.nordvpn.com", "tcp": true, @@ -62374,6 +64413,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 80, "hostname": "at80.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62386,6 +64429,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 86, "hostname": "at86.nordvpn.com", "tcp": true, @@ -62399,6 +64446,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 86, "hostname": "at86.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62411,6 +64462,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 88, "hostname": "at88.nordvpn.com", "tcp": true, @@ -62424,6 +64479,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 88, "hostname": "at88.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62436,6 +64495,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 89, "hostname": "at89.nordvpn.com", "tcp": true, @@ -62449,6 +64512,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 89, "hostname": "at89.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62461,6 +64528,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 90, "hostname": "at90.nordvpn.com", "tcp": true, @@ -62474,6 +64545,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 90, "hostname": "at90.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62486,6 +64561,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 94, "hostname": "at94.nordvpn.com", "tcp": true, @@ -62499,6 +64578,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 94, "hostname": "at94.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62511,6 +64594,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 95, "hostname": "at95.nordvpn.com", "tcp": true, @@ -62524,6 +64611,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 95, "hostname": "at95.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62536,6 +64627,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 96, "hostname": "at96.nordvpn.com", "tcp": true, @@ -62549,6 +64644,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 96, "hostname": "at96.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62561,6 +64660,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 97, "hostname": "at97.nordvpn.com", "tcp": true, @@ -62574,6 +64677,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 97, "hostname": "at97.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62586,6 +64693,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 98, "hostname": "at98.nordvpn.com", "tcp": true, @@ -62599,6 +64710,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 98, "hostname": "at98.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62611,6 +64726,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 99, "hostname": "at99.nordvpn.com", "tcp": true, @@ -62624,6 +64743,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 99, "hostname": "at99.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62636,6 +64759,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 100, "hostname": "at100.nordvpn.com", "tcp": true, @@ -62649,6 +64776,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 100, "hostname": "at100.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62661,6 +64792,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 101, "hostname": "at101.nordvpn.com", "tcp": true, @@ -62674,6 +64809,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 101, "hostname": "at101.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62686,6 +64825,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 105, "hostname": "at105.nordvpn.com", "tcp": true, @@ -62699,6 +64842,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 105, "hostname": "at105.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62711,6 +64858,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 106, "hostname": "at106.nordvpn.com", "tcp": true, @@ -62724,6 +64875,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 106, "hostname": "at106.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62736,6 +64891,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 107, "hostname": "at107.nordvpn.com", "tcp": true, @@ -62749,6 +64908,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 107, "hostname": "at107.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62761,6 +64924,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 108, "hostname": "at108.nordvpn.com", "tcp": true, @@ -62774,6 +64941,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 108, "hostname": "at108.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62786,6 +64957,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 109, "hostname": "at109.nordvpn.com", "tcp": true, @@ -62799,6 +64974,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 109, "hostname": "at109.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62811,6 +64990,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 110, "hostname": "at110.nordvpn.com", "tcp": true, @@ -62824,6 +65007,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 110, "hostname": "at110.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62836,6 +65023,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 111, "hostname": "at111.nordvpn.com", "tcp": true, @@ -62849,6 +65040,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 111, "hostname": "at111.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62861,6 +65056,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 112, "hostname": "at112.nordvpn.com", "tcp": true, @@ -62874,6 +65073,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 112, "hostname": "at112.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62886,6 +65089,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 113, "hostname": "at113.nordvpn.com", "tcp": true, @@ -62899,6 +65106,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 113, "hostname": "at113.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62911,6 +65122,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 116, "hostname": "at116.nordvpn.com", "tcp": true, @@ -62924,6 +65139,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 116, "hostname": "at116.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62936,6 +65155,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 117, "hostname": "at117.nordvpn.com", "tcp": true, @@ -62949,6 +65172,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 117, "hostname": "at117.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62961,6 +65188,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 118, "hostname": "at118.nordvpn.com", "tcp": true, @@ -62974,6 +65205,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 118, "hostname": "at118.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -62986,6 +65221,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 119, "hostname": "at119.nordvpn.com", "tcp": true, @@ -62999,6 +65238,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 119, "hostname": "at119.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63011,6 +65254,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 120, "hostname": "at120.nordvpn.com", "tcp": true, @@ -63024,6 +65271,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 120, "hostname": "at120.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63036,6 +65287,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 121, "hostname": "at121.nordvpn.com", "tcp": true, @@ -63049,6 +65304,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 121, "hostname": "at121.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63061,6 +65320,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 122, "hostname": "at122.nordvpn.com", "tcp": true, @@ -63074,6 +65337,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 122, "hostname": "at122.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63086,6 +65353,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 123, "hostname": "at123.nordvpn.com", "tcp": true, @@ -63099,6 +65370,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 123, "hostname": "at123.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63111,6 +65386,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 124, "hostname": "at124.nordvpn.com", "tcp": true, @@ -63124,6 +65403,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 124, "hostname": "at124.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63136,6 +65419,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 125, "hostname": "at125.nordvpn.com", "tcp": true, @@ -63149,6 +65436,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 125, "hostname": "at125.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63161,6 +65452,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 126, "hostname": "at126.nordvpn.com", "tcp": true, @@ -63174,6 +65469,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 126, "hostname": "at126.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63186,6 +65485,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 127, "hostname": "at127.nordvpn.com", "tcp": true, @@ -63199,6 +65502,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 127, "hostname": "at127.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63211,6 +65518,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 128, "hostname": "at128.nordvpn.com", "tcp": true, @@ -63224,6 +65535,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 128, "hostname": "at128.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63236,6 +65551,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 129, "hostname": "at129.nordvpn.com", "tcp": true, @@ -63249,6 +65568,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 129, "hostname": "at129.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63261,6 +65584,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 130, "hostname": "at130.nordvpn.com", "tcp": true, @@ -63274,6 +65601,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 130, "hostname": "at130.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63286,6 +65617,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 131, "hostname": "at131.nordvpn.com", "tcp": true, @@ -63299,6 +65634,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 131, "hostname": "at131.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63311,6 +65650,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 132, "hostname": "at132.nordvpn.com", "tcp": true, @@ -63324,6 +65667,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 132, "hostname": "at132.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63336,6 +65683,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 133, "hostname": "at133.nordvpn.com", "tcp": true, @@ -63349,6 +65700,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 133, "hostname": "at133.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63361,6 +65716,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 134, "hostname": "at134.nordvpn.com", "tcp": true, @@ -63374,6 +65733,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 134, "hostname": "at134.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63386,6 +65749,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 135, "hostname": "at135.nordvpn.com", "tcp": true, @@ -63399,6 +65766,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 135, "hostname": "at135.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63411,6 +65782,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 136, "hostname": "at136.nordvpn.com", "tcp": true, @@ -63424,6 +65799,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 136, "hostname": "at136.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63436,6 +65815,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 137, "hostname": "at137.nordvpn.com", "tcp": true, @@ -63449,6 +65832,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 137, "hostname": "at137.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63461,6 +65848,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 138, "hostname": "at138.nordvpn.com", "tcp": true, @@ -63474,6 +65865,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 138, "hostname": "at138.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63486,6 +65881,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 139, "hostname": "at139.nordvpn.com", "tcp": true, @@ -63499,6 +65898,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 139, "hostname": "at139.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63511,6 +65914,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 140, "hostname": "at140.nordvpn.com", "tcp": true, @@ -63524,6 +65931,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 140, "hostname": "at140.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63536,6 +65947,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 141, "hostname": "at141.nordvpn.com", "tcp": true, @@ -63549,6 +65964,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 141, "hostname": "at141.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63561,6 +65980,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 142, "hostname": "at142.nordvpn.com", "tcp": true, @@ -63574,6 +65997,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 142, "hostname": "at142.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63586,6 +66013,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 143, "hostname": "at143.nordvpn.com", "tcp": true, @@ -63599,6 +66030,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 143, "hostname": "at143.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63611,6 +66046,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 144, "hostname": "at144.nordvpn.com", "tcp": true, @@ -63624,6 +66063,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 144, "hostname": "at144.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63636,6 +66079,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 145, "hostname": "at145.nordvpn.com", "tcp": true, @@ -63649,6 +66096,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 145, "hostname": "at145.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63661,6 +66112,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 146, "hostname": "at146.nordvpn.com", "tcp": true, @@ -63674,6 +66129,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 146, "hostname": "at146.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63686,6 +66145,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 147, "hostname": "at147.nordvpn.com", "tcp": true, @@ -63699,6 +66162,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 147, "hostname": "at147.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63711,6 +66178,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 148, "hostname": "at148.nordvpn.com", "tcp": true, @@ -63724,6 +66195,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 148, "hostname": "at148.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63736,6 +66211,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 149, "hostname": "at149.nordvpn.com", "tcp": true, @@ -63749,6 +66228,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 149, "hostname": "at149.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63761,6 +66244,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 150, "hostname": "at150.nordvpn.com", "tcp": true, @@ -63774,6 +66261,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 150, "hostname": "at150.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63786,6 +66277,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 151, "hostname": "at151.nordvpn.com", "tcp": true, @@ -63799,6 +66294,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 151, "hostname": "at151.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63811,6 +66310,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 152, "hostname": "at152.nordvpn.com", "tcp": true, @@ -63824,6 +66327,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 152, "hostname": "at152.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63836,6 +66343,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 153, "hostname": "at153.nordvpn.com", "tcp": true, @@ -63849,6 +66360,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 153, "hostname": "at153.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63861,6 +66376,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 154, "hostname": "at154.nordvpn.com", "tcp": true, @@ -63874,6 +66393,10 @@ "country": "Austria", "region": "Europe", "city": "Vienna", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 154, "hostname": "at154.nordvpn.com", "wgpubkey": "F6b2ac9H7hEvt03EonY1bS4FzNAabEmURDTB8wIIPXc=", @@ -63881,11 +66404,281 @@ "87.249.133.143" ] }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 155, + "hostname": "at155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.148" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 156, + "hostname": "at156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "87.249.133.150" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 157, + "hostname": "at157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.19.162" + ] + }, + { + "vpn": "openvpn", + "country": "Austria", + "region": "Europe", + "city": "Vienna", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 158, + "hostname": "at158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.19.164" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "az1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.79.1" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "az1.nordvpn.com", + "wgpubkey": "7q+iF1U6jxKLLHKFCW+ODdSd5Op7R3E0MoEDmQULnTA=", + "ips": [ + "45.137.79.1" + ] + }, + { + "vpn": "openvpn", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "az2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.137.79.3" + ] + }, + { + "vpn": "wireguard", + "country": "Azerbaijan", + "region": "Europe", + "city": "Baku", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "az2.nordvpn.com", + "wgpubkey": "7q+iF1U6jxKLLHKFCW+ODdSd5Op7R3E0MoEDmQULnTA=", + "ips": [ + "45.137.79.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bs1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.160.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bs1.nordvpn.com", + "wgpubkey": "go0vPS951gkeRZARd1B7hgaENr0fgwWf+PHiK+/F/3M=", + "ips": [ + "45.95.160.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bs2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.160.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bahamas", + "region": "The Americas", + "city": "Nassau", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bs2.nordvpn.com", + "wgpubkey": "go0vPS951gkeRZARd1B7hgaENr0fgwWf+PHiK+/F/3M=", + "ips": [ + "45.95.160.3" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bd1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.161.1" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bd1.nordvpn.com", + "wgpubkey": "kYYnQJKm8FLFiw9ThClQv4oG6IIH1IOHXAWuqmY2T2A=", + "ips": [ + "45.95.161.1" + ] + }, + { + "vpn": "openvpn", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bd2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.95.161.3" + ] + }, + { + "vpn": "wireguard", + "country": "Bangladesh", + "region": "Asia Pacific", + "city": "Dhaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bd2.nordvpn.com", + "wgpubkey": "kYYnQJKm8FLFiw9ThClQv4oG6IIH1IOHXAWuqmY2T2A=", + "ips": [ + "45.95.161.3" + ] + }, { "vpn": "openvpn", "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 148, "hostname": "be148.nordvpn.com", "tcp": true, @@ -63899,6 +66692,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 148, "hostname": "be148.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -63911,6 +66708,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 149, "hostname": "be149.nordvpn.com", "tcp": true, @@ -63924,6 +66725,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 149, "hostname": "be149.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -63936,6 +66741,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 150, "hostname": "be150.nordvpn.com", "tcp": true, @@ -63949,6 +66758,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 150, "hostname": "be150.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -63961,6 +66774,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 151, "hostname": "be151.nordvpn.com", "tcp": true, @@ -63974,6 +66791,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 151, "hostname": "be151.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -63986,6 +66807,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 152, "hostname": "be152.nordvpn.com", "tcp": true, @@ -63999,6 +66824,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 152, "hostname": "be152.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64011,6 +66840,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 153, "hostname": "be153.nordvpn.com", "tcp": true, @@ -64024,6 +66857,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 153, "hostname": "be153.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64036,6 +66873,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 154, "hostname": "be154.nordvpn.com", "tcp": true, @@ -64049,6 +66890,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 154, "hostname": "be154.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64061,6 +66906,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 155, "hostname": "be155.nordvpn.com", "tcp": true, @@ -64074,6 +66923,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 155, "hostname": "be155.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64086,6 +66939,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 156, "hostname": "be156.nordvpn.com", "tcp": true, @@ -64099,6 +66956,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 156, "hostname": "be156.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64111,6 +66972,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 157, "hostname": "be157.nordvpn.com", "tcp": true, @@ -64124,6 +66989,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 157, "hostname": "be157.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64136,6 +67005,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 158, "hostname": "be158.nordvpn.com", "tcp": true, @@ -64149,6 +67022,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 158, "hostname": "be158.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64161,6 +67038,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 159, "hostname": "be159.nordvpn.com", "tcp": true, @@ -64174,6 +67055,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 159, "hostname": "be159.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64186,6 +67071,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 160, "hostname": "be160.nordvpn.com", "tcp": true, @@ -64199,6 +67088,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 160, "hostname": "be160.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64211,6 +67104,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 161, "hostname": "be161.nordvpn.com", "tcp": true, @@ -64224,6 +67121,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 161, "hostname": "be161.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64236,6 +67137,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 162, "hostname": "be162.nordvpn.com", "tcp": true, @@ -64249,6 +67154,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 162, "hostname": "be162.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64261,6 +67170,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 163, "hostname": "be163.nordvpn.com", "tcp": true, @@ -64274,6 +67187,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 163, "hostname": "be163.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64286,6 +67203,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 164, "hostname": "be164.nordvpn.com", "tcp": true, @@ -64299,6 +67220,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 164, "hostname": "be164.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64311,6 +67236,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 165, "hostname": "be165.nordvpn.com", "tcp": true, @@ -64324,6 +67253,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 165, "hostname": "be165.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64336,6 +67269,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 166, "hostname": "be166.nordvpn.com", "tcp": true, @@ -64349,6 +67286,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 166, "hostname": "be166.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64361,6 +67302,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 167, "hostname": "be167.nordvpn.com", "tcp": true, @@ -64374,6 +67319,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 167, "hostname": "be167.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64386,6 +67335,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 168, "hostname": "be168.nordvpn.com", "tcp": true, @@ -64399,6 +67352,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 168, "hostname": "be168.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64411,6 +67368,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 169, "hostname": "be169.nordvpn.com", "tcp": true, @@ -64424,6 +67385,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 169, "hostname": "be169.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64436,6 +67401,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 170, "hostname": "be170.nordvpn.com", "tcp": true, @@ -64449,6 +67418,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 170, "hostname": "be170.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64461,6 +67434,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 171, "hostname": "be171.nordvpn.com", "tcp": true, @@ -64474,6 +67451,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 171, "hostname": "be171.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64486,6 +67467,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 172, "hostname": "be172.nordvpn.com", "tcp": true, @@ -64499,6 +67484,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 172, "hostname": "be172.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64511,6 +67500,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 173, "hostname": "be173.nordvpn.com", "tcp": true, @@ -64524,6 +67517,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 173, "hostname": "be173.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64536,6 +67533,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 174, "hostname": "be174.nordvpn.com", "tcp": true, @@ -64549,6 +67550,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 174, "hostname": "be174.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64561,6 +67566,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 175, "hostname": "be175.nordvpn.com", "tcp": true, @@ -64574,6 +67583,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 175, "hostname": "be175.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64586,6 +67599,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 176, "hostname": "be176.nordvpn.com", "tcp": true, @@ -64599,6 +67616,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 176, "hostname": "be176.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64611,6 +67632,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 177, "hostname": "be177.nordvpn.com", "tcp": true, @@ -64624,6 +67649,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 177, "hostname": "be177.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64636,6 +67665,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 178, "hostname": "be178.nordvpn.com", "tcp": true, @@ -64649,6 +67682,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 178, "hostname": "be178.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64661,6 +67698,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 179, "hostname": "be179.nordvpn.com", "tcp": true, @@ -64674,6 +67715,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 179, "hostname": "be179.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64686,6 +67731,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 180, "hostname": "be180.nordvpn.com", "tcp": true, @@ -64699,6 +67748,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 180, "hostname": "be180.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64711,6 +67764,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 181, "hostname": "be181.nordvpn.com", "tcp": true, @@ -64724,6 +67781,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 181, "hostname": "be181.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64736,6 +67797,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 182, "hostname": "be182.nordvpn.com", "tcp": true, @@ -64749,6 +67814,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 182, "hostname": "be182.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64761,6 +67830,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 183, "hostname": "be183.nordvpn.com", "tcp": true, @@ -64774,6 +67847,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 183, "hostname": "be183.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64786,6 +67863,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 184, "hostname": "be184.nordvpn.com", "tcp": true, @@ -64799,6 +67880,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 184, "hostname": "be184.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64811,6 +67896,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 185, "hostname": "be185.nordvpn.com", "tcp": true, @@ -64824,6 +67913,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 185, "hostname": "be185.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64836,6 +67929,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 186, "hostname": "be186.nordvpn.com", "tcp": true, @@ -64849,6 +67946,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 186, "hostname": "be186.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64861,6 +67962,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 187, "hostname": "be187.nordvpn.com", "tcp": true, @@ -64874,6 +67979,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 187, "hostname": "be187.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64886,6 +67995,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 188, "hostname": "be188.nordvpn.com", "tcp": true, @@ -64899,6 +68012,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 188, "hostname": "be188.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64911,6 +68028,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 189, "hostname": "be189.nordvpn.com", "tcp": true, @@ -64924,6 +68045,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 189, "hostname": "be189.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64936,6 +68061,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 190, "hostname": "be190.nordvpn.com", "tcp": true, @@ -64949,6 +68078,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 190, "hostname": "be190.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64961,6 +68094,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 191, "hostname": "be191.nordvpn.com", "tcp": true, @@ -64974,6 +68111,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 191, "hostname": "be191.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -64986,6 +68127,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 192, "hostname": "be192.nordvpn.com", "tcp": true, @@ -64999,6 +68144,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 192, "hostname": "be192.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65011,6 +68160,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 193, "hostname": "be193.nordvpn.com", "tcp": true, @@ -65024,6 +68177,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 193, "hostname": "be193.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65036,6 +68193,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 194, "hostname": "be194.nordvpn.com", "tcp": true, @@ -65049,6 +68210,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 194, "hostname": "be194.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65061,6 +68226,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 195, "hostname": "be195.nordvpn.com", "tcp": true, @@ -65074,6 +68243,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 195, "hostname": "be195.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65086,6 +68259,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 196, "hostname": "be196.nordvpn.com", "tcp": true, @@ -65099,6 +68276,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 196, "hostname": "be196.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65111,6 +68292,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 197, "hostname": "be197.nordvpn.com", "tcp": true, @@ -65124,6 +68309,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 197, "hostname": "be197.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65136,6 +68325,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 198, "hostname": "be198.nordvpn.com", "tcp": true, @@ -65149,6 +68342,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 198, "hostname": "be198.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65161,6 +68358,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 199, "hostname": "be199.nordvpn.com", "tcp": true, @@ -65174,6 +68375,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 199, "hostname": "be199.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65186,6 +68391,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 200, "hostname": "be200.nordvpn.com", "tcp": true, @@ -65199,6 +68408,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 200, "hostname": "be200.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65211,6 +68424,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 201, "hostname": "be201.nordvpn.com", "tcp": true, @@ -65224,6 +68441,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 201, "hostname": "be201.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65236,6 +68457,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 202, "hostname": "be202.nordvpn.com", "tcp": true, @@ -65249,6 +68474,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 202, "hostname": "be202.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65261,6 +68490,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 203, "hostname": "be203.nordvpn.com", "tcp": true, @@ -65274,6 +68507,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 203, "hostname": "be203.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65286,6 +68523,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 204, "hostname": "be204.nordvpn.com", "tcp": true, @@ -65299,6 +68540,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 204, "hostname": "be204.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65311,6 +68556,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 205, "hostname": "be205.nordvpn.com", "tcp": true, @@ -65324,6 +68573,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 205, "hostname": "be205.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65336,6 +68589,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 206, "hostname": "be206.nordvpn.com", "tcp": true, @@ -65349,6 +68606,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 206, "hostname": "be206.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65361,6 +68622,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 207, "hostname": "be207.nordvpn.com", "tcp": true, @@ -65374,6 +68639,10 @@ "country": "Belgium", "region": "Europe", "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 207, "hostname": "be207.nordvpn.com", "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", @@ -65383,2425 +68652,3180 @@ }, { "vpn": "openvpn", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 12, - "hostname": "ba12.nordvpn.com", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "be208.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.111.183" + "185.245.255.1" ] }, { "vpn": "wireguard", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 12, - "hostname": "ba12.nordvpn.com", - "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "be208.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.212.111.183" + "185.245.255.1" ] }, { "vpn": "openvpn", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 13, - "hostname": "ba13.nordvpn.com", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "be209.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.99.3.195" + "185.245.255.14" ] }, { "vpn": "wireguard", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 13, - "hostname": "ba13.nordvpn.com", - "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "be209.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.99.3.195" + "185.245.255.14" ] }, { "vpn": "openvpn", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 14, - "hostname": "ba14.nordvpn.com", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "be210.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.111.159" + "185.245.255.27" ] }, { "vpn": "wireguard", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 14, - "hostname": "ba14.nordvpn.com", - "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "be210.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.212.111.159" + "185.245.255.27" ] }, { "vpn": "openvpn", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 15, - "hostname": "ba15.nordvpn.com", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "be211.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.111.147" + "185.245.255.40" ] }, { "vpn": "wireguard", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 15, - "hostname": "ba15.nordvpn.com", - "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "be211.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.212.111.147" + "185.245.255.40" ] }, { "vpn": "openvpn", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 16, - "hostname": "ba16.nordvpn.com", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "be212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.111.171" + "185.245.255.52" ] }, { "vpn": "wireguard", - "country": "Bosnia and Herzegovina", + "country": "Belgium", "region": "Europe", - "city": "Sarajevo", - "number": 16, - "hostname": "ba16.nordvpn.com", - "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "be212.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.212.111.171" + "185.245.255.52" ] }, { "vpn": "openvpn", - "country": "Brazil", - "city": "Sao Paulo", - "number": 53, - "hostname": "br53.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "be213.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "177.54.151.174" + "185.245.255.64" ] }, { "vpn": "wireguard", - "country": "Brazil", - "city": "Sao Paulo", - "number": 53, - "hostname": "br53.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "be213.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "177.54.151.174" + "185.245.255.64" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 71, - "hostname": "br71.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "be214.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "189.1.170.129" + "185.245.255.76" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 71, - "hostname": "br71.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "be214.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "189.1.170.129" + "185.245.255.76" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 72, - "hostname": "br72.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "be215.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "189.1.168.146" + "185.245.255.88" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 72, - "hostname": "br72.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "be215.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "189.1.168.146" + "185.245.255.88" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 73, - "hostname": "br73.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "be216.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "189.1.168.154" + "185.245.255.100" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 73, - "hostname": "br73.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "be216.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "189.1.168.154" + "185.245.255.100" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 75, - "hostname": "br75.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "be217.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.1" + "185.245.255.112" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 75, - "hostname": "br75.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "be217.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.1" + "185.245.255.112" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 76, - "hostname": "br76.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "be218.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.17" + "185.245.255.129" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 76, - "hostname": "br76.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "be218.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.17" + "185.245.255.129" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 77, - "hostname": "br77.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "be219.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.33" + "185.245.255.142" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 77, - "hostname": "br77.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "be219.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.33" + "185.245.255.142" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 78, - "hostname": "br78.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "be220.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.49" + "185.245.255.155" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 78, - "hostname": "br78.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "be220.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.49" + "185.245.255.155" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 79, - "hostname": "br79.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "be221.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.64" + "185.245.255.168" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 79, - "hostname": "br79.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "be221.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.64" + "185.245.255.168" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 80, - "hostname": "br80.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "be222.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.79" + "185.245.255.180" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 80, - "hostname": "br80.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "be222.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.79" + "185.245.255.180" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 81, - "hostname": "br81.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "be223.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.94" + "185.245.255.192" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 81, - "hostname": "br81.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "be223.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.94" + "185.245.255.192" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 82, - "hostname": "br82.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "be224.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.109" + "185.245.255.204" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 82, - "hostname": "br82.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "be224.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.109" + "185.245.255.204" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 83, - "hostname": "br83.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "be225.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.129" + "185.245.255.216" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 83, - "hostname": "br83.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "be225.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.129" + "185.245.255.216" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 84, - "hostname": "br84.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "be226.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.147" + "185.245.255.228" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 84, - "hostname": "br84.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "be226.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.147" + "185.245.255.228" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 85, - "hostname": "br85.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "be227.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.165" + "185.245.255.240" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 85, - "hostname": "br85.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "be227.nordvpn.com", + "wgpubkey": "VSa6XYcD279ahd3IuEiUH6VpXn0+h+kWrD4OcN1ExUs=", "ips": [ - "185.153.176.165" + "185.245.255.240" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 86, - "hostname": "br86.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 228, + "hostname": "be228.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.183" - ] - }, - { - "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 86, - "hostname": "br86.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", - "ips": [ - "185.153.176.183" + "207.211.214.22" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 87, - "hostname": "br87.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 229, + "hostname": "be229.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.201" + "207.211.214.24" ] }, { - "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 87, - "hostname": "br87.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 230, + "hostname": "be230.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.153.176.201" + "154.47.27.50" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 88, - "hostname": "br88.nordvpn.com", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 231, + "hostname": "be231.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.218" + "207.211.214.26" ] }, { - "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 88, - "hostname": "br88.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "vpn": "openvpn", + "country": "Belgium", + "region": "Europe", + "city": "Brussels", + "categories": [ + "Dedicated IP" + ], + "number": 232, + "hostname": "be232.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.153.176.218" + "154.47.27.56" ] }, { "vpn": "openvpn", - "country": "Brazil", + "country": "Belize", "region": "The Americas", - "city": "Sao Paulo", - "number": 89, - "hostname": "br89.nordvpn.com", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bz1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.235" + "45.95.162.1" ] }, { "vpn": "wireguard", - "country": "Brazil", + "country": "Belize", "region": "The Americas", - "city": "Sao Paulo", - "number": 89, - "hostname": "br89.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bz1.nordvpn.com", + "wgpubkey": "VEOZqlbsQm0YW2CF1gQCez7kFMpfXTmb0IHqHuW7fmw=", "ips": [ - "185.153.176.235" + "45.95.162.1" ] }, { "vpn": "openvpn", - "country": "Brazil", + "country": "Belize", "region": "The Americas", - "city": "Sao Paulo", - "number": 90, - "hostname": "br90.nordvpn.com", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bz2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.176.145" + "45.95.162.3" ] }, { "vpn": "wireguard", - "country": "Brazil", + "country": "Belize", "region": "The Americas", - "city": "Sao Paulo", - "number": 90, - "hostname": "br90.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "city": "Belmopan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bz2.nordvpn.com", + "wgpubkey": "VEOZqlbsQm0YW2CF1gQCez7kFMpfXTmb0IHqHuW7fmw=", "ips": [ - "185.153.176.145" + "45.95.162.3" ] }, { "vpn": "openvpn", - "country": "Brazil", + "country": "Bermuda", "region": "The Americas", - "city": "Sao Paulo", - "number": 92, - "hostname": "br92.nordvpn.com", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bm1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.205.145" + "45.95.163.1" ] }, { "vpn": "wireguard", - "country": "Brazil", + "country": "Bermuda", "region": "The Americas", - "city": "Sao Paulo", - "number": 92, - "hostname": "br92.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bm1.nordvpn.com", + "wgpubkey": "1mcrd4g1gybweJmBM0B3NKGt9S4Y1AFUtLcZPepks0o=", "ips": [ - "193.19.205.145" + "45.95.163.1" ] }, { "vpn": "openvpn", - "country": "Brazil", + "country": "Bermuda", "region": "The Americas", - "city": "Sao Paulo", - "number": 93, - "hostname": "br93.nordvpn.com", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bm2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.205.161" + "45.95.163.3" ] }, { "vpn": "wireguard", - "country": "Brazil", + "country": "Bermuda", "region": "The Americas", - "city": "Sao Paulo", - "number": 93, - "hostname": "br93.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "city": "Hamilton", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bm2.nordvpn.com", + "wgpubkey": "1mcrd4g1gybweJmBM0B3NKGt9S4Y1AFUtLcZPepks0o=", "ips": [ - "193.19.205.161" + "45.95.163.3" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 94, - "hostname": "br94.nordvpn.com", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bt1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.205.177" + "45.134.188.1" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 94, - "hostname": "br94.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bt1.nordvpn.com", + "wgpubkey": "jbpDlFcls5bc/Kc4ieoxvILjheifWPnihFJ67yiRbxs=", "ips": [ - "193.19.205.177" + "45.134.188.1" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 95, - "hostname": "br95.nordvpn.com", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bt2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.205.193" + "45.134.188.3" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 95, - "hostname": "br95.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Bhutan", + "region": "Asia Pacific", + "city": "Thimphu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bt2.nordvpn.com", + "wgpubkey": "jbpDlFcls5bc/Kc4ieoxvILjheifWPnihFJ67yiRbxs=", "ips": [ - "193.19.205.193" + "45.134.188.3" ] }, { "vpn": "openvpn", - "country": "Brazil", + "country": "Bolivia", "region": "The Americas", - "city": "Sao Paulo", - "number": 96, - "hostname": "br96.nordvpn.com", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 1, + "hostname": "bo1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.205.209" + "45.134.189.1" ] }, { "vpn": "wireguard", - "country": "Brazil", + "country": "Bolivia", "region": "The Americas", - "city": "Sao Paulo", - "number": 96, - "hostname": "br96.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 1, + "hostname": "bo1.nordvpn.com", + "wgpubkey": "dB7GU6dPF1m/dwzkCWIsCj3HULZQvPV5ayFcP4Jajww=", "ips": [ - "193.19.205.209" + "45.134.189.1" ] }, { "vpn": "openvpn", - "country": "Brazil", + "country": "Bolivia", "region": "The Americas", - "city": "Sao Paulo", - "number": 97, - "hostname": "br97.nordvpn.com", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 2, + "hostname": "bo2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "177.54.156.194" + "45.134.189.3" ] }, { "vpn": "wireguard", - "country": "Brazil", + "country": "Bolivia", "region": "The Americas", - "city": "Sao Paulo", - "number": 97, - "hostname": "br97.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "city": "La Paz", + "categories": [ + "Standard VPN servers" + ], + "number": 2, + "hostname": "bo2.nordvpn.com", + "wgpubkey": "dB7GU6dPF1m/dwzkCWIsCj3HULZQvPV5ayFcP4Jajww=", "ips": [ - "177.54.156.194" + "45.134.189.3" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 98, - "hostname": "br98.nordvpn.com", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 12, + "hostname": "ba12.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "177.54.156.207" + "185.212.111.183" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 98, - "hostname": "br98.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 12, + "hostname": "ba12.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", "ips": [ - "177.54.156.207" + "185.212.111.183" ] }, { "vpn": "openvpn", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 100, - "hostname": "br100.nordvpn.com", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ba13.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.205.129" + "185.99.3.195" ] }, { "vpn": "wireguard", - "country": "Brazil", - "region": "The Americas", - "city": "Sao Paulo", - "number": 100, - "hostname": "br100.nordvpn.com", - "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "country": "Bosnia and Herzegovina", + "region": "Europe", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ba13.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", "ips": [ - "193.19.205.129" + "185.99.3.195" ] }, { "vpn": "openvpn", - "country": "Bulgaria", + "country": "Bosnia and Herzegovina", "region": "Europe", - "city": "Sofia", - "number": 38, - "hostname": "bg38.nordvpn.com", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ba14.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.147" + "185.212.111.159" ] }, { "vpn": "wireguard", - "country": "Bulgaria", + "country": "Bosnia and Herzegovina", "region": "Europe", - "city": "Sofia", - "number": 38, - "hostname": "bg38.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ba14.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", "ips": [ - "217.138.202.147" + "185.212.111.159" ] }, { "vpn": "openvpn", - "country": "Bulgaria", + "country": "Bosnia and Herzegovina", "region": "Europe", - "city": "Sofia", - "number": 46, - "hostname": "bg46.nordvpn.com", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ba15.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.91" + "185.212.111.147" ] }, { "vpn": "wireguard", - "country": "Bulgaria", + "country": "Bosnia and Herzegovina", "region": "Europe", - "city": "Sofia", - "number": 46, - "hostname": "bg46.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ba15.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", "ips": [ - "217.138.202.91" + "185.212.111.147" ] }, { "vpn": "openvpn", - "country": "Bulgaria", + "country": "Bosnia and Herzegovina", "region": "Europe", - "city": "Sofia", - "number": 47, - "hostname": "bg47.nordvpn.com", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ba16.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.99" + "185.212.111.171" ] }, { "vpn": "wireguard", - "country": "Bulgaria", + "country": "Bosnia and Herzegovina", "region": "Europe", - "city": "Sofia", - "number": 47, - "hostname": "bg47.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "city": "Sarajevo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ba16.nordvpn.com", + "wgpubkey": "8ic6tKwTcaqC8twPHJAyLJ+u0rJjdyPvd/9EyajZWlE=", "ips": [ - "217.138.202.99" + "185.212.111.171" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 48, - "hostname": "bg48.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "br71.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.107" + "189.1.170.129" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 48, - "hostname": "bg48.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "br71.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "217.138.202.107" + "189.1.170.129" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 49, - "hostname": "bg49.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "br72.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.115" + "189.1.168.146" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 49, - "hostname": "bg49.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "br72.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "217.138.202.115" + "189.1.168.146" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 50, - "hostname": "bg50.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "br73.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.123" + "189.1.168.154" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 50, - "hostname": "bg50.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "br73.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "217.138.202.123" + "189.1.168.154" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 51, - "hostname": "bg51.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "br75.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.131" + "185.153.176.1" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 51, - "hostname": "bg51.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "br75.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "217.138.202.131" + "185.153.176.1" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 52, - "hostname": "bg52.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "br76.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.139" + "185.153.176.17" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 52, - "hostname": "bg52.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "br76.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "217.138.202.139" + "185.153.176.17" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 53, - "hostname": "bg53.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "br77.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.75" + "185.153.176.33" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 53, - "hostname": "bg53.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "br77.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "217.138.202.75" + "185.153.176.33" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 54, - "hostname": "bg54.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "br78.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.202.83" + "185.153.176.49" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 54, - "hostname": "bg54.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "br78.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "217.138.202.83" + "185.153.176.49" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 55, - "hostname": "bg55.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "br79.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.2" + "185.153.176.64" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 55, - "hostname": "bg55.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "br79.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.2" + "185.153.176.64" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 56, - "hostname": "bg56.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "br80.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.14" + "185.153.176.79" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 56, - "hostname": "bg56.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "br80.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.14" + "185.153.176.79" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 57, - "hostname": "bg57.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "br81.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.26" + "185.153.176.94" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 57, - "hostname": "bg57.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "br81.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.26" + "185.153.176.94" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 58, - "hostname": "bg58.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "br82.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.38" + "185.153.176.109" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 58, - "hostname": "bg58.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", - "ips": [ - "156.146.55.38" + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "br82.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", + "ips": [ + "185.153.176.109" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 59, - "hostname": "bg59.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "br83.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.50" + "185.153.176.129" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 59, - "hostname": "bg59.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "br83.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.50" + "185.153.176.129" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 60, - "hostname": "bg60.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "br84.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.62" + "185.153.176.147" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 60, - "hostname": "bg60.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "br84.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.62" + "185.153.176.147" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 61, - "hostname": "bg61.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "br85.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.74" + "185.153.176.165" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 61, - "hostname": "bg61.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "br85.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.74" + "185.153.176.165" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 62, - "hostname": "bg62.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "br86.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.86" + "185.153.176.183" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 62, - "hostname": "bg62.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "br86.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.86" + "185.153.176.183" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 63, - "hostname": "bg63.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "br87.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.98" + "185.153.176.201" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 63, - "hostname": "bg63.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "br87.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.98" + "185.153.176.201" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 64, - "hostname": "bg64.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "br88.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.55.110" + "185.153.176.218" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 64, - "hostname": "bg64.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "br88.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "156.146.55.110" + "185.153.176.218" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 65, - "hostname": "bg65.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "br89.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.96" + "185.153.176.235" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 65, - "hostname": "bg65.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "br89.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.96" + "185.153.176.235" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 66, - "hostname": "bg66.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "br90.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.112" + "185.153.176.145" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 66, - "hostname": "bg66.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "br90.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.112" + "185.153.176.145" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 67, - "hostname": "bg67.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "br92.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.128" + "193.19.205.145" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 67, - "hostname": "bg67.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "br92.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.128" + "193.19.205.145" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 68, - "hostname": "bg68.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "br93.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.144" + "193.19.205.161" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 68, - "hostname": "bg68.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "br93.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.144" + "193.19.205.161" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 69, - "hostname": "bg69.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "br94.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.160" + "193.19.205.177" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 69, - "hostname": "bg69.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "br94.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.160" + "193.19.205.177" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 70, - "hostname": "bg70.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "br95.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.176" + "193.19.205.193" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 70, - "hostname": "bg70.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "br95.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.176" + "193.19.205.193" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 71, - "hostname": "bg71.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "br96.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.192" + "193.19.205.209" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 71, - "hostname": "bg71.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "br96.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.192" + "193.19.205.209" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 72, - "hostname": "bg72.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "br97.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.208" + "177.54.156.194" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 72, - "hostname": "bg72.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "br97.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.208" + "177.54.156.194" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 73, - "hostname": "bg73.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "br98.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.224" + "177.54.156.207" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 73, - "hostname": "bg73.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "br98.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.224" + "177.54.156.207" ] }, { "vpn": "openvpn", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 74, - "hostname": "bg74.nordvpn.com", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "br100.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.117.240" + "193.19.205.129" ] }, { "vpn": "wireguard", - "country": "Bulgaria", - "region": "Europe", - "city": "Sofia", - "number": 74, - "hostname": "bg74.nordvpn.com", - "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "country": "Brazil", + "region": "The Americas", + "city": "Sao Paulo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "br100.nordvpn.com", + "wgpubkey": "ObOAEerHpiFeJaqUbs59yihD4JbLqlC6cQn01guu3UU=", "ips": [ - "37.46.117.240" + "193.19.205.129" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1066, - "hostname": "ca1066.nordvpn.com", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bn1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.90.243" + "45.134.190.1" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1066, - "hostname": "ca1066.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "bn1.nordvpn.com", + "wgpubkey": "1E0PtgUSGirapiopDafRFu6CXZXejmqp1cAWbZPGTwg=", "ips": [ - "86.106.90.243" + "45.134.190.1" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1103, - "hostname": "ca1103.nordvpn.com", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bn2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.218.171" + "45.134.190.3" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1103, - "hostname": "ca1103.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Brunei Darussalam", + "region": "Asia Pacific", + "city": "Bandar Seri Begawan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "bn2.nordvpn.com", + "wgpubkey": "1E0PtgUSGirapiopDafRFu6CXZXejmqp1cAWbZPGTwg=", "ips": [ - "139.28.218.171" + "45.134.190.3" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1104, - "hostname": "ca1104.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "bg38.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.218.179" + "217.138.202.147" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1104, - "hostname": "ca1104.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "bg38.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "139.28.218.179" + "217.138.202.147" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1187, - "hostname": "ca1187.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "bg46.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.218.187" + "217.138.202.91" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1187, - "hostname": "ca1187.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "bg46.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "139.28.218.187" + "217.138.202.91" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1188, - "hostname": "ca1188.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "bg47.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.218.195" + "217.138.202.99" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1188, - "hostname": "ca1188.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "bg47.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "139.28.218.195" + "217.138.202.99" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1189, - "hostname": "ca1189.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "bg48.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.218.203" + "217.138.202.107" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1189, - "hostname": "ca1189.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "bg48.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "139.28.218.203" + "217.138.202.107" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1190, - "hostname": "ca1190.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "bg49.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.218.211" + "217.138.202.115" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1190, - "hostname": "ca1190.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "bg49.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "139.28.218.211" + "217.138.202.115" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1191, - "hostname": "ca1191.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "bg50.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.218.219" + "217.138.202.123" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1191, - "hostname": "ca1191.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "bg50.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "139.28.218.219" + "217.138.202.123" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1210, - "hostname": "ca1210.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "bg51.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.47.234.171" + "217.138.202.131" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1210, - "hostname": "ca1210.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "bg51.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "89.47.234.171" + "217.138.202.131" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1211, - "hostname": "ca1211.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "bg52.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.47.234.179" + "217.138.202.139" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1211, - "hostname": "ca1211.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "bg52.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "89.47.234.179" + "217.138.202.139" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1212, - "hostname": "ca1212.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "bg53.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.47.234.187" + "217.138.202.75" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1212, - "hostname": "ca1212.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "bg53.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "89.47.234.187" + "217.138.202.75" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1213, - "hostname": "ca1213.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "bg54.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.47.234.195" + "217.138.202.83" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1213, - "hostname": "ca1213.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "bg54.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "89.47.234.195" + "217.138.202.83" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1214, - "hostname": "ca1214.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "bg55.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.47.234.203" + "156.146.55.2" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1214, - "hostname": "ca1214.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "bg55.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "89.47.234.203" + "156.146.55.2" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1221, - "hostname": "ca1221.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "bg56.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.233.115" + "156.146.55.14" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1221, - "hostname": "ca1221.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "bg56.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "5.181.233.115" + "156.146.55.14" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1222, - "hostname": "ca1222.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "bg57.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.233.107" + "156.146.55.26" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1222, - "hostname": "ca1222.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "bg57.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "5.181.233.107" + "156.146.55.26" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1223, - "hostname": "ca1223.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "bg58.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.233.99" + "156.146.55.38" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1223, - "hostname": "ca1223.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "bg58.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "5.181.233.99" + "156.146.55.38" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1224, - "hostname": "ca1224.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "bg59.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.233.59" + "156.146.55.50" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1224, - "hostname": "ca1224.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "bg59.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "5.181.233.59" + "156.146.55.50" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1225, - "hostname": "ca1225.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "bg60.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.233.43" + "156.146.55.62" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1225, - "hostname": "ca1225.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "bg60.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "5.181.233.43" + "156.146.55.62" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1549, - "hostname": "ca1549.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "bg61.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.83" + "156.146.55.74" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1549, - "hostname": "ca1549.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "bg61.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.83" + "156.146.55.74" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1550, - "hostname": "ca1550.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "bg62.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.91" + "156.146.55.86" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1550, - "hostname": "ca1550.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "bg62.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.91" + "156.146.55.86" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1551, - "hostname": "ca1551.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "bg63.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.99" + "156.146.55.98" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1551, - "hostname": "ca1551.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "bg63.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.99" + "156.146.55.98" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1552, - "hostname": "ca1552.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "bg64.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.107" + "156.146.55.110" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1552, - "hostname": "ca1552.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "bg64.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.107" + "156.146.55.110" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1553, - "hostname": "ca1553.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "bg65.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.115" + "37.46.117.96" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1553, - "hostname": "ca1553.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "bg65.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.115" + "37.46.117.96" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1554, - "hostname": "ca1554.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "bg66.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.123" + "37.46.117.112" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1554, - "hostname": "ca1554.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", - "ips": [ - "146.70.75.123" + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "bg66.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", + "ips": [ + "37.46.117.112" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1555, - "hostname": "ca1555.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "bg67.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.131" + "37.46.117.128" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1555, - "hostname": "ca1555.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "bg67.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.131" + "37.46.117.128" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1556, - "hostname": "ca1556.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "bg68.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.139" + "37.46.117.144" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1556, - "hostname": "ca1556.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "bg68.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.139" + "37.46.117.144" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1557, - "hostname": "ca1557.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "bg69.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.147" + "37.46.117.160" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1557, - "hostname": "ca1557.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "bg69.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.147" + "37.46.117.160" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1558, - "hostname": "ca1558.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "bg70.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.155" + "37.46.117.176" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1558, - "hostname": "ca1558.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "bg70.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.155" + "37.46.117.176" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1559, - "hostname": "ca1559.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "bg71.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.163" + "37.46.117.192" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1559, - "hostname": "ca1559.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "bg71.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.163" + "37.46.117.192" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1560, - "hostname": "ca1560.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "bg72.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.171" + "37.46.117.208" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1560, - "hostname": "ca1560.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "bg72.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.171" + "37.46.117.208" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1561, - "hostname": "ca1561.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "bg73.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.179" + "37.46.117.224" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1561, - "hostname": "ca1561.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "bg73.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.179" + "37.46.117.224" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1562, - "hostname": "ca1562.nordvpn.com", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "bg74.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.187" + "37.46.117.240" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1562, - "hostname": "ca1562.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Bulgaria", + "region": "Europe", + "city": "Sofia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "bg74.nordvpn.com", + "wgpubkey": "xqa+kDsDeYLQAnVDUQaFun9Djfo3c1ESTMwfNArHw10=", "ips": [ - "146.70.75.187" + "37.46.117.240" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1563, - "hostname": "ca1563.nordvpn.com", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kh1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.195" + "45.134.191.1" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1563, - "hostname": "ca1563.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kh1.nordvpn.com", + "wgpubkey": "LZmxB4Nz3SDd82w5af2PO1fW2R442oY8rUPzLFjlomU=", "ips": [ - "146.70.75.195" + "45.134.191.1" ] }, { "vpn": "openvpn", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1564, - "hostname": "ca1564.nordvpn.com", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kh2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.203" + "45.134.191.3" ] }, { "vpn": "wireguard", - "country": "Canada", - "region": "The Americas", - "city": "Montreal", - "number": 1564, - "hostname": "ca1564.nordvpn.com", - "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", + "country": "Cambodia", + "region": "Asia Pacific", + "city": "Phnom Penh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kh2.nordvpn.com", + "wgpubkey": "LZmxB4Nz3SDd82w5af2PO1fW2R442oY8rUPzLFjlomU=", "ips": [ - "146.70.75.203" + "45.134.191.3" ] }, { @@ -67809,12 +71833,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1565, - "hostname": "ca1565.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "ca1066.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.75.211" + "86.106.90.243" ] }, { @@ -67822,11 +71850,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1565, - "hostname": "ca1565.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "ca1066.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "146.70.75.211" + "86.106.90.243" ] }, { @@ -67834,12 +71866,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1605, - "hostname": "ca1605.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "ca1103.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.100" + "139.28.218.171" ] }, { @@ -67847,11 +71883,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1605, - "hostname": "ca1605.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "ca1103.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.100" + "139.28.218.171" ] }, { @@ -67859,12 +71899,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1606, - "hostname": "ca1606.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "ca1104.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.102" + "139.28.218.179" ] }, { @@ -67872,11 +71916,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1606, - "hostname": "ca1606.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "ca1104.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.102" + "139.28.218.179" ] }, { @@ -67884,12 +71932,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1607, - "hostname": "ca1607.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1187, + "hostname": "ca1187.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.104" + "139.28.218.187" ] }, { @@ -67897,11 +71949,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1607, - "hostname": "ca1607.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1187, + "hostname": "ca1187.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.104" + "139.28.218.187" ] }, { @@ -67909,12 +71965,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1608, - "hostname": "ca1608.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1188, + "hostname": "ca1188.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.106" + "139.28.218.195" ] }, { @@ -67922,11 +71982,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1608, - "hostname": "ca1608.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1188, + "hostname": "ca1188.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.106" + "139.28.218.195" ] }, { @@ -67934,12 +71998,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1609, - "hostname": "ca1609.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1189, + "hostname": "ca1189.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.108" + "139.28.218.203" ] }, { @@ -67947,11 +72015,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1609, - "hostname": "ca1609.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1189, + "hostname": "ca1189.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.108" + "139.28.218.203" ] }, { @@ -67959,12 +72031,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1610, - "hostname": "ca1610.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1190, + "hostname": "ca1190.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.110" + "139.28.218.211" ] }, { @@ -67972,11 +72048,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1610, - "hostname": "ca1610.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1190, + "hostname": "ca1190.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.110" + "139.28.218.211" ] }, { @@ -67984,12 +72064,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1611, - "hostname": "ca1611.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1191, + "hostname": "ca1191.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.112" + "139.28.218.219" ] }, { @@ -67997,11 +72081,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1611, - "hostname": "ca1611.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1191, + "hostname": "ca1191.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.112" + "139.28.218.219" ] }, { @@ -68009,12 +72097,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1612, - "hostname": "ca1612.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1210, + "hostname": "ca1210.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.114" + "89.47.234.171" ] }, { @@ -68022,11 +72114,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1612, - "hostname": "ca1612.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1210, + "hostname": "ca1210.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.114" + "89.47.234.171" ] }, { @@ -68034,12 +72130,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1613, - "hostname": "ca1613.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1211, + "hostname": "ca1211.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.116" + "89.47.234.179" ] }, { @@ -68047,11 +72147,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1613, - "hostname": "ca1613.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1211, + "hostname": "ca1211.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.116" + "89.47.234.179" ] }, { @@ -68059,12 +72163,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1614, - "hostname": "ca1614.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1212, + "hostname": "ca1212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.118" + "89.47.234.187" ] }, { @@ -68072,11 +72180,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1614, - "hostname": "ca1614.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1212, + "hostname": "ca1212.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.118" + "89.47.234.187" ] }, { @@ -68084,12 +72196,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1615, - "hostname": "ca1615.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1213, + "hostname": "ca1213.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.120" + "89.47.234.195" ] }, { @@ -68097,11 +72213,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1615, - "hostname": "ca1615.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1213, + "hostname": "ca1213.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.120" + "89.47.234.195" ] }, { @@ -68109,12 +72229,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1616, - "hostname": "ca1616.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1214, + "hostname": "ca1214.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.122" + "89.47.234.203" ] }, { @@ -68122,11 +72246,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1616, - "hostname": "ca1616.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1214, + "hostname": "ca1214.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.122" + "89.47.234.203" ] }, { @@ -68134,12 +72262,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1617, - "hostname": "ca1617.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1221, + "hostname": "ca1221.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.124" + "5.181.233.115" ] }, { @@ -68147,11 +72279,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1617, - "hostname": "ca1617.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1221, + "hostname": "ca1221.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.124" + "5.181.233.115" ] }, { @@ -68159,12 +72295,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1618, - "hostname": "ca1618.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1222, + "hostname": "ca1222.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.126" + "5.181.233.107" ] }, { @@ -68172,11 +72312,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1618, - "hostname": "ca1618.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1222, + "hostname": "ca1222.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.126" + "5.181.233.107" ] }, { @@ -68184,12 +72328,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1619, - "hostname": "ca1619.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1223, + "hostname": "ca1223.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.128" + "5.181.233.99" ] }, { @@ -68197,11 +72345,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1619, - "hostname": "ca1619.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1223, + "hostname": "ca1223.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.128" + "5.181.233.99" ] }, { @@ -68209,12 +72361,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1620, - "hostname": "ca1620.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1224, + "hostname": "ca1224.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.130" + "5.181.233.59" ] }, { @@ -68222,11 +72378,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1620, - "hostname": "ca1620.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1224, + "hostname": "ca1224.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.130" + "5.181.233.59" ] }, { @@ -68234,12 +72394,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1621, - "hostname": "ca1621.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1225, + "hostname": "ca1225.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.132" + "5.181.233.43" ] }, { @@ -68247,11 +72411,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1621, - "hostname": "ca1621.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1225, + "hostname": "ca1225.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.132" + "5.181.233.43" ] }, { @@ -68259,12 +72427,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1622, - "hostname": "ca1622.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1549, + "hostname": "ca1549.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.80.134" + "146.70.75.83" ] }, { @@ -68272,11 +72444,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1622, - "hostname": "ca1622.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1549, + "hostname": "ca1549.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "185.213.80.134" + "146.70.75.83" ] }, { @@ -68284,12 +72460,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1623, - "hostname": "ca1623.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1550, + "hostname": "ca1550.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.100" + "146.70.75.91" ] }, { @@ -68297,11 +72477,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1623, - "hostname": "ca1623.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1550, + "hostname": "ca1550.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.100" + "146.70.75.91" ] }, { @@ -68309,12 +72493,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1624, - "hostname": "ca1624.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1551, + "hostname": "ca1551.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.102" + "146.70.75.99" ] }, { @@ -68322,11 +72510,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1624, - "hostname": "ca1624.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1551, + "hostname": "ca1551.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.102" + "146.70.75.99" ] }, { @@ -68334,12 +72526,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1625, - "hostname": "ca1625.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1552, + "hostname": "ca1552.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.104" + "146.70.75.107" ] }, { @@ -68347,11 +72543,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1625, - "hostname": "ca1625.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1552, + "hostname": "ca1552.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.104" + "146.70.75.107" ] }, { @@ -68359,12 +72559,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1626, - "hostname": "ca1626.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1553, + "hostname": "ca1553.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.106" + "146.70.75.115" ] }, { @@ -68372,11 +72576,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1626, - "hostname": "ca1626.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1553, + "hostname": "ca1553.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.106" + "146.70.75.115" ] }, { @@ -68384,12 +72592,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1627, - "hostname": "ca1627.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1554, + "hostname": "ca1554.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.108" + "146.70.75.123" ] }, { @@ -68397,11 +72609,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1627, - "hostname": "ca1627.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1554, + "hostname": "ca1554.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.108" + "146.70.75.123" ] }, { @@ -68409,12 +72625,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1628, - "hostname": "ca1628.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1555, + "hostname": "ca1555.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.110" + "146.70.75.131" ] }, { @@ -68422,11 +72642,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1628, - "hostname": "ca1628.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1555, + "hostname": "ca1555.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.110" + "146.70.75.131" ] }, { @@ -68434,12 +72658,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1629, - "hostname": "ca1629.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1556, + "hostname": "ca1556.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.112" + "146.70.75.139" ] }, { @@ -68447,11 +72675,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1629, - "hostname": "ca1629.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1556, + "hostname": "ca1556.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.112" + "146.70.75.139" ] }, { @@ -68459,12 +72691,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1630, - "hostname": "ca1630.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1557, + "hostname": "ca1557.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.114" + "146.70.75.147" ] }, { @@ -68472,11 +72708,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1630, - "hostname": "ca1630.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1557, + "hostname": "ca1557.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.114" + "146.70.75.147" ] }, { @@ -68484,12 +72724,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1631, - "hostname": "ca1631.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1558, + "hostname": "ca1558.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.116" + "146.70.75.155" ] }, { @@ -68497,11 +72741,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1631, - "hostname": "ca1631.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1558, + "hostname": "ca1558.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.116" + "146.70.75.155" ] }, { @@ -68509,12 +72757,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1632, - "hostname": "ca1632.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1559, + "hostname": "ca1559.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.118" + "146.70.75.163" ] }, { @@ -68522,11 +72774,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1632, - "hostname": "ca1632.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1559, + "hostname": "ca1559.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.118" + "146.70.75.163" ] }, { @@ -68534,12 +72790,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1633, - "hostname": "ca1633.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1560, + "hostname": "ca1560.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.120" + "146.70.75.171" ] }, { @@ -68547,11 +72807,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1633, - "hostname": "ca1633.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1560, + "hostname": "ca1560.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.120" + "146.70.75.171" ] }, { @@ -68559,12 +72823,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1634, - "hostname": "ca1634.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1561, + "hostname": "ca1561.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.122" + "146.70.75.179" ] }, { @@ -68572,11 +72840,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1634, - "hostname": "ca1634.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1561, + "hostname": "ca1561.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.122" + "146.70.75.179" ] }, { @@ -68584,12 +72856,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1635, - "hostname": "ca1635.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1562, + "hostname": "ca1562.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.124" + "146.70.75.187" ] }, { @@ -68597,11 +72873,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1635, - "hostname": "ca1635.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1562, + "hostname": "ca1562.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.124" + "146.70.75.187" ] }, { @@ -68609,12 +72889,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1636, - "hostname": "ca1636.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1563, + "hostname": "ca1563.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.126" + "146.70.75.195" ] }, { @@ -68622,11 +72906,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1636, - "hostname": "ca1636.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1563, + "hostname": "ca1563.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.126" + "146.70.75.195" ] }, { @@ -68634,12 +72922,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1637, - "hostname": "ca1637.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1564, + "hostname": "ca1564.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.128" + "146.70.75.203" ] }, { @@ -68647,11 +72939,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1637, - "hostname": "ca1637.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1564, + "hostname": "ca1564.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.128" + "146.70.75.203" ] }, { @@ -68659,12 +72955,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1638, - "hostname": "ca1638.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1565, + "hostname": "ca1565.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.130" + "146.70.75.211" ] }, { @@ -68672,11 +72972,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1638, - "hostname": "ca1638.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1565, + "hostname": "ca1565.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.130" + "146.70.75.211" ] }, { @@ -68684,12 +72988,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1639, - "hostname": "ca1639.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1605, + "hostname": "ca1605.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.132" + "185.213.80.100" ] }, { @@ -68697,11 +73005,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1639, - "hostname": "ca1639.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1605, + "hostname": "ca1605.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.132" + "185.213.80.100" ] }, { @@ -68709,12 +73021,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1640, - "hostname": "ca1640.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1606, + "hostname": "ca1606.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.134" + "185.213.80.102" ] }, { @@ -68722,11 +73038,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1640, - "hostname": "ca1640.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1606, + "hostname": "ca1606.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.134" + "185.213.80.102" ] }, { @@ -68734,12 +73054,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1641, - "hostname": "ca1641.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1607, + "hostname": "ca1607.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.88.190.136" + "185.213.80.104" ] }, { @@ -68747,11 +73071,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1641, - "hostname": "ca1641.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1607, + "hostname": "ca1607.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "45.88.190.136" + "185.213.80.104" ] }, { @@ -68759,12 +73087,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1678, - "hostname": "ca1678.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1609, + "hostname": "ca1609.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.237.139" + "185.213.80.108" ] }, { @@ -68772,11 +73104,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1678, - "hostname": "ca1678.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1609, + "hostname": "ca1609.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.120.237.139" + "185.213.80.108" ] }, { @@ -68784,12 +73120,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1679, - "hostname": "ca1679.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1610, + "hostname": "ca1610.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.237.147" + "185.213.80.110" ] }, { @@ -68797,11 +73137,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1679, - "hostname": "ca1679.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1610, + "hostname": "ca1610.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.120.237.147" + "185.213.80.110" ] }, { @@ -68809,12 +73153,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1680, - "hostname": "ca1680.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1611, + "hostname": "ca1611.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.237.131" + "185.213.80.112" ] }, { @@ -68822,11 +73170,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1680, - "hostname": "ca1680.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1611, + "hostname": "ca1611.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.120.237.131" + "185.213.80.112" ] }, { @@ -68834,12 +73186,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1681, - "hostname": "ca1681.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1612, + "hostname": "ca1612.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.112.219" + "185.213.80.114" ] }, { @@ -68847,11 +73203,15 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1681, - "hostname": "ca1681.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1612, + "hostname": "ca1612.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "146.70.112.219" + "185.213.80.114" ] }, { @@ -68859,12 +73219,16 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1682, - "hostname": "ca1682.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1613, + "hostname": "ca1613.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.113.74.35" + "185.213.80.116" ] }, { @@ -68872,836 +73236,1104 @@ "country": "Canada", "region": "The Americas", "city": "Montreal", - "number": 1682, - "hostname": "ca1682.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1613, + "hostname": "ca1613.nordvpn.com", "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "176.113.74.35" + "185.213.80.116" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1437, - "hostname": "ca1437.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1614, + "hostname": "ca1614.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.2" + "185.213.80.118" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1437, - "hostname": "ca1437.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1614, + "hostname": "ca1614.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.2" + "185.213.80.118" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1438, - "hostname": "ca1438.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1615, + "hostname": "ca1615.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.7" + "185.213.80.120" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1438, - "hostname": "ca1438.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1615, + "hostname": "ca1615.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.7" + "185.213.80.120" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1439, - "hostname": "ca1439.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1616, + "hostname": "ca1616.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.12" + "185.213.80.122" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1439, - "hostname": "ca1439.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1616, + "hostname": "ca1616.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.12" + "185.213.80.122" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1440, - "hostname": "ca1440.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1617, + "hostname": "ca1617.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.17" + "185.213.80.124" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1440, - "hostname": "ca1440.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1617, + "hostname": "ca1617.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.17" + "185.213.80.124" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1441, - "hostname": "ca1441.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1618, + "hostname": "ca1618.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.22" + "185.213.80.126" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1441, - "hostname": "ca1441.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1618, + "hostname": "ca1618.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.22" + "185.213.80.126" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1442, - "hostname": "ca1442.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1619, + "hostname": "ca1619.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.27" + "185.213.80.128" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1442, - "hostname": "ca1442.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1619, + "hostname": "ca1619.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.27" + "185.213.80.128" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1443, - "hostname": "ca1443.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1620, + "hostname": "ca1620.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.32" + "185.213.80.130" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1443, - "hostname": "ca1443.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1620, + "hostname": "ca1620.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.32" + "185.213.80.130" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1444, - "hostname": "ca1444.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1621, + "hostname": "ca1621.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.37" + "185.213.80.132" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1444, - "hostname": "ca1444.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1621, + "hostname": "ca1621.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.37" + "185.213.80.132" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1445, - "hostname": "ca1445.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1622, + "hostname": "ca1622.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.42" + "185.213.80.134" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1445, - "hostname": "ca1445.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1622, + "hostname": "ca1622.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.42" + "185.213.80.134" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1446, - "hostname": "ca1446.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1623, + "hostname": "ca1623.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.47" + "45.88.190.100" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1446, - "hostname": "ca1446.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1623, + "hostname": "ca1623.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.47" + "45.88.190.100" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1447, - "hostname": "ca1447.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1624, + "hostname": "ca1624.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.52" + "45.88.190.102" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1447, - "hostname": "ca1447.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1624, + "hostname": "ca1624.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.52" + "45.88.190.102" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1448, - "hostname": "ca1448.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1625, + "hostname": "ca1625.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.57" + "45.88.190.104" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1448, - "hostname": "ca1448.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1625, + "hostname": "ca1625.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.57" + "45.88.190.104" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1449, - "hostname": "ca1449.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1626, + "hostname": "ca1626.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.62" + "45.88.190.106" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1449, - "hostname": "ca1449.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1626, + "hostname": "ca1626.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.62" + "45.88.190.106" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1450, - "hostname": "ca1450.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1627, + "hostname": "ca1627.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.67" + "45.88.190.108" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1450, - "hostname": "ca1450.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1627, + "hostname": "ca1627.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.67" + "45.88.190.108" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1451, - "hostname": "ca1451.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1628, + "hostname": "ca1628.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.72" + "45.88.190.110" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1451, - "hostname": "ca1451.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1628, + "hostname": "ca1628.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.72" + "45.88.190.110" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1452, - "hostname": "ca1452.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1629, + "hostname": "ca1629.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.77" + "45.88.190.112" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1452, - "hostname": "ca1452.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1629, + "hostname": "ca1629.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.77" + "45.88.190.112" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1453, - "hostname": "ca1453.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1630, + "hostname": "ca1630.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.82" + "45.88.190.114" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1453, - "hostname": "ca1453.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1630, + "hostname": "ca1630.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.82" + "45.88.190.114" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1454, - "hostname": "ca1454.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1631, + "hostname": "ca1631.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.87" + "45.88.190.116" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1454, - "hostname": "ca1454.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1631, + "hostname": "ca1631.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.87" + "45.88.190.116" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1455, - "hostname": "ca1455.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1632, + "hostname": "ca1632.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.92" + "45.88.190.118" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1455, - "hostname": "ca1455.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1632, + "hostname": "ca1632.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.92" + "45.88.190.118" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1456, - "hostname": "ca1456.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1633, + "hostname": "ca1633.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.97" + "45.88.190.120" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1456, - "hostname": "ca1456.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1633, + "hostname": "ca1633.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.97" + "45.88.190.120" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1457, - "hostname": "ca1457.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1634, + "hostname": "ca1634.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.102" + "45.88.190.122" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1457, - "hostname": "ca1457.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1634, + "hostname": "ca1634.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.102" + "45.88.190.122" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1458, - "hostname": "ca1458.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1635, + "hostname": "ca1635.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.107" + "45.88.190.124" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1458, - "hostname": "ca1458.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1635, + "hostname": "ca1635.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.107" + "45.88.190.124" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1459, - "hostname": "ca1459.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1636, + "hostname": "ca1636.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.112" + "45.88.190.126" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1459, - "hostname": "ca1459.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1636, + "hostname": "ca1636.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.112" + "45.88.190.126" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1460, - "hostname": "ca1460.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1637, + "hostname": "ca1637.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.117" + "45.88.190.128" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1460, - "hostname": "ca1460.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1637, + "hostname": "ca1637.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.117" + "45.88.190.128" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1461, - "hostname": "ca1461.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1638, + "hostname": "ca1638.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.122" + "45.88.190.130" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1461, - "hostname": "ca1461.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1638, + "hostname": "ca1638.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.122" + "45.88.190.130" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1462, - "hostname": "ca1462.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1639, + "hostname": "ca1639.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.127" + "45.88.190.132" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1462, - "hostname": "ca1462.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1639, + "hostname": "ca1639.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.127" + "45.88.190.132" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1463, - "hostname": "ca1463.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1640, + "hostname": "ca1640.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.132" + "45.88.190.134" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1463, - "hostname": "ca1463.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1640, + "hostname": "ca1640.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.132" + "45.88.190.134" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1464, - "hostname": "ca1464.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1641, + "hostname": "ca1641.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.137" + "45.88.190.136" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1464, - "hostname": "ca1464.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1641, + "hostname": "ca1641.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.137" + "45.88.190.136" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1465, - "hostname": "ca1465.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "ca1678.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.142" + "37.120.237.139" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1465, - "hostname": "ca1465.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "ca1678.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.142" + "37.120.237.139" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1466, - "hostname": "ca1466.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "ca1679.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.147" + "37.120.237.147" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1466, - "hostname": "ca1466.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "ca1679.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.147" + "37.120.237.147" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1467, - "hostname": "ca1467.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "ca1680.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.152" + "37.120.237.131" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1467, - "hostname": "ca1467.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "ca1680.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.152" + "37.120.237.131" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1468, - "hostname": "ca1468.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "ca1681.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.157" + "146.70.112.219" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1468, - "hostname": "ca1468.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "ca1681.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.157" + "146.70.112.219" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1469, - "hostname": "ca1469.nordvpn.com", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "ca1682.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.162" + "176.113.74.35" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Toronto", - "number": 1469, - "hostname": "ca1469.nordvpn.com", - "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", + "city": "Montreal", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "ca1682.nordvpn.com", + "wgpubkey": "0YcIRErcUysK3OaPJXe3O1s7JEHcQgONwICZCUXECRs=", "ips": [ - "37.19.213.162" + "176.113.74.35" ] }, { @@ -69709,12 +74341,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1470, - "hostname": "ca1470.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "us-ca74.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.167" + "176.113.72.83" ] }, { @@ -69722,11 +74357,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1470, - "hostname": "ca1470.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "us-ca74.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.167" + "176.113.72.83" ] }, { @@ -69734,12 +74372,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1471, - "hostname": "ca1471.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "us-ca75.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.172" + "176.113.72.84" ] }, { @@ -69747,11 +74388,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1471, - "hostname": "ca1471.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "us-ca75.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.172" + "176.113.72.84" ] }, { @@ -69759,12 +74403,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1472, - "hostname": "ca1472.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "us-ca76.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.177" + "176.113.72.91" ] }, { @@ -69772,11 +74419,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1472, - "hostname": "ca1472.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "us-ca76.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.177" + "176.113.72.91" ] }, { @@ -69784,12 +74434,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1473, - "hostname": "ca1473.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 77, + "hostname": "us-ca77.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.182" + "176.113.72.92" ] }, { @@ -69797,11 +74450,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1473, - "hostname": "ca1473.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 77, + "hostname": "us-ca77.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.182" + "176.113.72.92" ] }, { @@ -69809,12 +74465,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1474, - "hostname": "ca1474.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 78, + "hostname": "us-ca78.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.187" + "37.120.138.179" ] }, { @@ -69822,11 +74481,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1474, - "hostname": "ca1474.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 78, + "hostname": "us-ca78.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.187" + "37.120.138.179" ] }, { @@ -69834,12 +74496,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1475, - "hostname": "ca1475.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 79, + "hostname": "us-ca79.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.192" + "37.120.138.180" ] }, { @@ -69847,11 +74512,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1475, - "hostname": "ca1475.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 79, + "hostname": "us-ca79.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.192" + "37.120.138.180" ] }, { @@ -69859,12 +74527,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1476, - "hostname": "ca1476.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 80, + "hostname": "us-ca80.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.197" + "37.120.138.187" ] }, { @@ -69872,11 +74543,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1476, - "hostname": "ca1476.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 80, + "hostname": "us-ca80.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.197" + "37.120.138.187" ] }, { @@ -69884,12 +74558,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1477, - "hostname": "ca1477.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 81, + "hostname": "us-ca81.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.202" + "37.120.138.188" ] }, { @@ -69897,11 +74574,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1477, - "hostname": "ca1477.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 81, + "hostname": "us-ca81.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.202" + "37.120.138.188" ] }, { @@ -69909,12 +74589,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1478, - "hostname": "ca1478.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 82, + "hostname": "us-ca82.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.207" + "176.113.72.211" ] }, { @@ -69922,11 +74605,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1478, - "hostname": "ca1478.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 82, + "hostname": "us-ca82.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.207" + "176.113.72.211" ] }, { @@ -69934,12 +74620,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1479, - "hostname": "ca1479.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 83, + "hostname": "us-ca83.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.212" + "176.113.72.212" ] }, { @@ -69947,11 +74636,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1479, - "hostname": "ca1479.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 83, + "hostname": "us-ca83.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.212" + "176.113.72.212" ] }, { @@ -69959,12 +74651,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1480, - "hostname": "ca1480.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 84, + "hostname": "us-ca84.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.217" + "176.113.72.219" ] }, { @@ -69972,11 +74667,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1480, - "hostname": "ca1480.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 84, + "hostname": "us-ca84.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.217" + "176.113.72.219" ] }, { @@ -69984,12 +74682,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1481, - "hostname": "ca1481.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 85, + "hostname": "us-ca85.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.222" + "176.113.72.220" ] }, { @@ -69997,11 +74698,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1481, - "hostname": "ca1481.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 85, + "hostname": "us-ca85.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.222" + "176.113.72.220" ] }, { @@ -70009,12 +74713,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1482, - "hostname": "ca1482.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 86, + "hostname": "us-ca86.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.227" + "185.232.22.75" ] }, { @@ -70022,11 +74729,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1482, - "hostname": "ca1482.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 86, + "hostname": "us-ca86.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.227" + "185.232.22.75" ] }, { @@ -70034,12 +74744,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1483, - "hostname": "ca1483.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 87, + "hostname": "us-ca87.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.232" + "185.232.22.76" ] }, { @@ -70047,11 +74760,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1483, - "hostname": "ca1483.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 87, + "hostname": "us-ca87.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.232" + "185.232.22.76" ] }, { @@ -70059,12 +74775,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1484, - "hostname": "ca1484.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "us-ca90.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.237" + "185.244.215.195" ] }, { @@ -70072,11 +74791,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1484, - "hostname": "ca1484.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "us-ca90.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.237" + "185.244.215.195" ] }, { @@ -70084,12 +74806,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1485, - "hostname": "ca1485.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "us-ca91.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.242" + "185.244.215.196" ] }, { @@ -70097,11 +74822,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1485, - "hostname": "ca1485.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "us-ca91.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.242" + "185.244.215.196" ] }, { @@ -70109,12 +74837,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1486, - "hostname": "ca1486.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 94, + "hostname": "us-ca94.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.213.247" + "154.47.22.33" ] }, { @@ -70122,11 +74853,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1486, - "hostname": "ca1486.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 94, + "hostname": "us-ca94.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.213.247" + "154.47.22.33" ] }, { @@ -70134,12 +74868,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1487, - "hostname": "ca1487.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 95, + "hostname": "us-ca95.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.2" + "154.47.22.34" ] }, { @@ -70147,11 +74884,14 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1487, - "hostname": "ca1487.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 95, + "hostname": "us-ca95.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.2" + "154.47.22.34" ] }, { @@ -70159,12 +74899,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1488, - "hostname": "ca1488.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1437, + "hostname": "ca1437.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.7" + "37.19.213.2" ] }, { @@ -70172,11 +74916,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1488, - "hostname": "ca1488.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1437, + "hostname": "ca1437.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.7" + "37.19.213.2" ] }, { @@ -70184,12 +74932,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1489, - "hostname": "ca1489.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1438, + "hostname": "ca1438.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.12" + "37.19.213.7" ] }, { @@ -70197,11 +74949,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1489, - "hostname": "ca1489.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1438, + "hostname": "ca1438.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.12" + "37.19.213.7" ] }, { @@ -70209,12 +74965,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1490, - "hostname": "ca1490.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1439, + "hostname": "ca1439.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.17" + "37.19.213.12" ] }, { @@ -70222,11 +74982,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1490, - "hostname": "ca1490.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1439, + "hostname": "ca1439.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.17" + "37.19.213.12" ] }, { @@ -70234,12 +74998,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1491, - "hostname": "ca1491.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1440, + "hostname": "ca1440.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.22" + "37.19.213.17" ] }, { @@ -70247,11 +75015,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1491, - "hostname": "ca1491.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1440, + "hostname": "ca1440.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.22" + "37.19.213.17" ] }, { @@ -70259,12 +75031,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1492, - "hostname": "ca1492.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1441, + "hostname": "ca1441.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.27" + "37.19.213.22" ] }, { @@ -70272,11 +75048,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1492, - "hostname": "ca1492.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1441, + "hostname": "ca1441.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.27" + "37.19.213.22" ] }, { @@ -70284,12 +75064,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1493, - "hostname": "ca1493.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1442, + "hostname": "ca1442.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.32" + "37.19.213.27" ] }, { @@ -70297,11 +75081,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1493, - "hostname": "ca1493.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1442, + "hostname": "ca1442.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.32" + "37.19.213.27" ] }, { @@ -70309,12 +75097,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1494, - "hostname": "ca1494.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1443, + "hostname": "ca1443.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.37" + "37.19.213.32" ] }, { @@ -70322,11 +75114,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1494, - "hostname": "ca1494.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1443, + "hostname": "ca1443.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.37" + "37.19.213.32" ] }, { @@ -70334,12 +75130,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1495, - "hostname": "ca1495.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1444, + "hostname": "ca1444.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.42" + "37.19.213.37" ] }, { @@ -70347,11 +75147,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1495, - "hostname": "ca1495.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1444, + "hostname": "ca1444.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.42" + "37.19.213.37" ] }, { @@ -70359,12 +75163,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1496, - "hostname": "ca1496.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1445, + "hostname": "ca1445.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.47" + "37.19.213.42" ] }, { @@ -70372,11 +75180,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1496, - "hostname": "ca1496.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1445, + "hostname": "ca1445.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.47" + "37.19.213.42" ] }, { @@ -70384,12 +75196,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1497, - "hostname": "ca1497.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1446, + "hostname": "ca1446.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.52" + "37.19.213.47" ] }, { @@ -70397,11 +75213,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1497, - "hostname": "ca1497.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1446, + "hostname": "ca1446.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.52" + "37.19.213.47" ] }, { @@ -70409,12 +75229,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1498, - "hostname": "ca1498.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1447, + "hostname": "ca1447.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.57" + "37.19.213.52" ] }, { @@ -70422,11 +75246,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1498, - "hostname": "ca1498.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1447, + "hostname": "ca1447.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.57" + "37.19.213.52" ] }, { @@ -70434,12 +75262,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1499, - "hostname": "ca1499.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1448, + "hostname": "ca1448.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.62" + "37.19.213.57" ] }, { @@ -70447,11 +75279,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1499, - "hostname": "ca1499.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1448, + "hostname": "ca1448.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.62" + "37.19.213.57" ] }, { @@ -70459,12 +75295,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1500, - "hostname": "ca1500.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1449, + "hostname": "ca1449.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.67" + "37.19.213.62" ] }, { @@ -70472,11 +75312,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1500, - "hostname": "ca1500.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1449, + "hostname": "ca1449.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.67" + "37.19.213.62" ] }, { @@ -70484,12 +75328,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1501, - "hostname": "ca1501.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1450, + "hostname": "ca1450.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.72" + "37.19.213.67" ] }, { @@ -70497,11 +75345,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1501, - "hostname": "ca1501.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1450, + "hostname": "ca1450.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.72" + "37.19.213.67" ] }, { @@ -70509,12 +75361,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1502, - "hostname": "ca1502.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1451, + "hostname": "ca1451.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.77" + "37.19.213.72" ] }, { @@ -70522,11 +75378,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1502, - "hostname": "ca1502.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1451, + "hostname": "ca1451.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.77" + "37.19.213.72" ] }, { @@ -70534,12 +75394,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1503, - "hostname": "ca1503.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1452, + "hostname": "ca1452.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.82" + "37.19.213.77" ] }, { @@ -70547,11 +75411,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1503, - "hostname": "ca1503.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1452, + "hostname": "ca1452.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.82" + "37.19.213.77" ] }, { @@ -70559,12 +75427,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1504, - "hostname": "ca1504.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1453, + "hostname": "ca1453.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.87" + "37.19.213.82" ] }, { @@ -70572,11 +75444,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1504, - "hostname": "ca1504.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1453, + "hostname": "ca1453.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.87" + "37.19.213.82" ] }, { @@ -70584,12 +75460,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1505, - "hostname": "ca1505.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1454, + "hostname": "ca1454.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.92" + "37.19.213.87" ] }, { @@ -70597,11 +75477,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1505, - "hostname": "ca1505.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1454, + "hostname": "ca1454.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.92" + "37.19.213.87" ] }, { @@ -70609,12 +75493,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1506, - "hostname": "ca1506.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1455, + "hostname": "ca1455.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.97" + "37.19.213.92" ] }, { @@ -70622,11 +75510,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1506, - "hostname": "ca1506.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1455, + "hostname": "ca1455.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.97" + "37.19.213.92" ] }, { @@ -70634,12 +75526,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1507, - "hostname": "ca1507.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1456, + "hostname": "ca1456.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.102" + "37.19.213.97" ] }, { @@ -70647,11 +75543,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1507, - "hostname": "ca1507.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1456, + "hostname": "ca1456.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.102" + "37.19.213.97" ] }, { @@ -70659,12 +75559,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1508, - "hostname": "ca1508.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1457, + "hostname": "ca1457.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.107" + "37.19.213.102" ] }, { @@ -70672,11 +75576,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1508, - "hostname": "ca1508.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1457, + "hostname": "ca1457.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.107" + "37.19.213.102" ] }, { @@ -70684,12 +75592,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1509, - "hostname": "ca1509.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1458, + "hostname": "ca1458.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.112" + "37.19.213.107" ] }, { @@ -70697,11 +75609,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1509, - "hostname": "ca1509.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1458, + "hostname": "ca1458.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.112" + "37.19.213.107" ] }, { @@ -70709,12 +75625,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1510, - "hostname": "ca1510.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1459, + "hostname": "ca1459.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.117" + "37.19.213.112" ] }, { @@ -70722,11 +75642,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1510, - "hostname": "ca1510.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1459, + "hostname": "ca1459.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.117" + "37.19.213.112" ] }, { @@ -70734,12 +75658,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1511, - "hostname": "ca1511.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1460, + "hostname": "ca1460.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.122" + "37.19.213.117" ] }, { @@ -70747,11 +75675,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1511, - "hostname": "ca1511.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1460, + "hostname": "ca1460.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.122" + "37.19.213.117" ] }, { @@ -70759,12 +75691,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1512, - "hostname": "ca1512.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1461, + "hostname": "ca1461.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.127" + "37.19.213.122" ] }, { @@ -70772,11 +75708,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1512, - "hostname": "ca1512.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1461, + "hostname": "ca1461.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.127" + "37.19.213.122" ] }, { @@ -70784,12 +75724,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1513, - "hostname": "ca1513.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1462, + "hostname": "ca1462.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.132" + "37.19.213.127" ] }, { @@ -70797,11 +75741,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1513, - "hostname": "ca1513.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1462, + "hostname": "ca1462.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.132" + "37.19.213.127" ] }, { @@ -70809,12 +75757,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1514, - "hostname": "ca1514.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1463, + "hostname": "ca1463.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.137" + "37.19.213.132" ] }, { @@ -70822,11 +75774,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1514, - "hostname": "ca1514.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1463, + "hostname": "ca1463.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.137" + "37.19.213.132" ] }, { @@ -70834,12 +75790,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1515, - "hostname": "ca1515.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1464, + "hostname": "ca1464.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.142" + "37.19.213.137" ] }, { @@ -70847,11 +75807,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1515, - "hostname": "ca1515.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1464, + "hostname": "ca1464.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.142" + "37.19.213.137" ] }, { @@ -70859,12 +75823,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1516, - "hostname": "ca1516.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1465, + "hostname": "ca1465.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.147" + "37.19.213.142" ] }, { @@ -70872,11 +75840,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1516, - "hostname": "ca1516.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1465, + "hostname": "ca1465.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.147" + "37.19.213.142" ] }, { @@ -70884,12 +75856,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1517, - "hostname": "ca1517.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1466, + "hostname": "ca1466.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.152" + "37.19.213.147" ] }, { @@ -70897,11 +75873,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1517, - "hostname": "ca1517.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1466, + "hostname": "ca1466.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.152" + "37.19.213.147" ] }, { @@ -70909,12 +75889,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1518, - "hostname": "ca1518.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1467, + "hostname": "ca1467.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.157" + "37.19.213.152" ] }, { @@ -70922,11 +75906,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1518, - "hostname": "ca1518.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1467, + "hostname": "ca1467.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.157" + "37.19.213.152" ] }, { @@ -70934,12 +75922,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1519, - "hostname": "ca1519.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1468, + "hostname": "ca1468.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.162" + "37.19.213.157" ] }, { @@ -70947,11 +75939,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1519, - "hostname": "ca1519.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1468, + "hostname": "ca1468.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.162" + "37.19.213.157" ] }, { @@ -70959,12 +75955,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1520, - "hostname": "ca1520.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1469, + "hostname": "ca1469.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.167" + "37.19.213.162" ] }, { @@ -70972,11 +75972,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1520, - "hostname": "ca1520.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1469, + "hostname": "ca1469.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.167" + "37.19.213.162" ] }, { @@ -70984,12 +75988,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1521, - "hostname": "ca1521.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1470, + "hostname": "ca1470.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.247" + "37.19.213.167" ] }, { @@ -70997,11 +76005,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1521, - "hostname": "ca1521.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1470, + "hostname": "ca1470.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.247" + "37.19.213.167" ] }, { @@ -71009,12 +76021,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1522, - "hostname": "ca1522.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1471, + "hostname": "ca1471.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.172" + "37.19.213.172" ] }, { @@ -71022,11 +76038,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1522, - "hostname": "ca1522.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1471, + "hostname": "ca1471.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.172" + "37.19.213.172" ] }, { @@ -71034,12 +76054,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1523, - "hostname": "ca1523.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1472, + "hostname": "ca1472.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.177" + "37.19.213.177" ] }, { @@ -71047,11 +76071,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1523, - "hostname": "ca1523.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1472, + "hostname": "ca1472.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.177" + "37.19.213.177" ] }, { @@ -71059,12 +76087,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1524, - "hostname": "ca1524.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1473, + "hostname": "ca1473.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.182" + "37.19.213.182" ] }, { @@ -71072,11 +76104,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1524, - "hostname": "ca1524.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1473, + "hostname": "ca1473.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.182" + "37.19.213.182" ] }, { @@ -71084,12 +76120,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1525, - "hostname": "ca1525.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1474, + "hostname": "ca1474.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.187" + "37.19.213.187" ] }, { @@ -71097,11 +76137,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1525, - "hostname": "ca1525.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1474, + "hostname": "ca1474.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.187" + "37.19.213.187" ] }, { @@ -71109,12 +76153,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1526, - "hostname": "ca1526.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1475, + "hostname": "ca1475.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.192" + "37.19.213.192" ] }, { @@ -71122,11 +76170,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1526, - "hostname": "ca1526.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1475, + "hostname": "ca1475.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.192" + "37.19.213.192" ] }, { @@ -71134,12 +76186,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1527, - "hostname": "ca1527.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1476, + "hostname": "ca1476.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.197" + "37.19.213.197" ] }, { @@ -71147,11 +76203,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1527, - "hostname": "ca1527.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1476, + "hostname": "ca1476.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.197" + "37.19.213.197" ] }, { @@ -71159,12 +76219,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1528, - "hostname": "ca1528.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1477, + "hostname": "ca1477.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.212.202" + "37.19.213.202" ] }, { @@ -71172,11 +76236,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1528, - "hostname": "ca1528.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1477, + "hostname": "ca1477.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "37.19.212.202" + "37.19.213.202" ] }, { @@ -71184,12 +76252,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1642, - "hostname": "ca1642.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1478, + "hostname": "ca1478.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.100" + "37.19.213.207" ] }, { @@ -71197,11 +76269,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1642, - "hostname": "ca1642.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1478, + "hostname": "ca1478.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.100" + "37.19.213.207" ] }, { @@ -71209,12 +76285,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1643, - "hostname": "ca1643.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1479, + "hostname": "ca1479.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.102" + "37.19.213.212" ] }, { @@ -71222,11 +76302,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1643, - "hostname": "ca1643.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1479, + "hostname": "ca1479.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.102" + "37.19.213.212" ] }, { @@ -71234,12 +76318,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1644, - "hostname": "ca1644.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1480, + "hostname": "ca1480.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.104" + "37.19.213.217" ] }, { @@ -71247,11 +76335,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1644, - "hostname": "ca1644.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1480, + "hostname": "ca1480.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.104" + "37.19.213.217" ] }, { @@ -71259,12 +76351,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1645, - "hostname": "ca1645.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1481, + "hostname": "ca1481.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.106" + "37.19.213.222" ] }, { @@ -71272,11 +76368,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1645, - "hostname": "ca1645.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1481, + "hostname": "ca1481.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.106" + "37.19.213.222" ] }, { @@ -71284,12 +76384,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1646, - "hostname": "ca1646.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1482, + "hostname": "ca1482.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.108" + "37.19.213.227" ] }, { @@ -71297,11 +76401,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1646, - "hostname": "ca1646.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1482, + "hostname": "ca1482.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.108" + "37.19.213.227" ] }, { @@ -71309,12 +76417,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1647, - "hostname": "ca1647.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1483, + "hostname": "ca1483.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.110" + "37.19.213.232" ] }, { @@ -71322,11 +76434,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1647, - "hostname": "ca1647.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1483, + "hostname": "ca1483.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.110" + "37.19.213.232" ] }, { @@ -71334,12 +76450,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1648, - "hostname": "ca1648.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1484, + "hostname": "ca1484.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.112" + "37.19.213.237" ] }, { @@ -71347,11 +76467,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1648, - "hostname": "ca1648.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1484, + "hostname": "ca1484.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.112" + "37.19.213.237" ] }, { @@ -71359,12 +76483,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1649, - "hostname": "ca1649.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1485, + "hostname": "ca1485.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.114" + "37.19.213.242" ] }, { @@ -71372,11 +76500,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1649, - "hostname": "ca1649.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1485, + "hostname": "ca1485.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.114" + "37.19.213.242" ] }, { @@ -71384,12 +76516,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1650, - "hostname": "ca1650.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1486, + "hostname": "ca1486.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.116" + "37.19.213.247" ] }, { @@ -71397,11 +76533,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1650, - "hostname": "ca1650.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1486, + "hostname": "ca1486.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.116" + "37.19.213.247" ] }, { @@ -71409,12 +76549,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1651, - "hostname": "ca1651.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1487, + "hostname": "ca1487.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.118" + "37.19.212.2" ] }, { @@ -71422,11 +76566,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1651, - "hostname": "ca1651.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1487, + "hostname": "ca1487.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.118" + "37.19.212.2" ] }, { @@ -71434,12 +76582,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1652, - "hostname": "ca1652.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1488, + "hostname": "ca1488.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.120" + "37.19.212.7" ] }, { @@ -71447,11 +76599,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1652, - "hostname": "ca1652.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1488, + "hostname": "ca1488.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.120" + "37.19.212.7" ] }, { @@ -71459,12 +76615,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1653, - "hostname": "ca1653.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1489, + "hostname": "ca1489.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.122" + "37.19.212.12" ] }, { @@ -71472,11 +76632,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1653, - "hostname": "ca1653.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1489, + "hostname": "ca1489.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.122" + "37.19.212.12" ] }, { @@ -71484,12 +76648,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1654, - "hostname": "ca1654.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1490, + "hostname": "ca1490.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.124" + "37.19.212.17" ] }, { @@ -71497,11 +76665,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1654, - "hostname": "ca1654.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1490, + "hostname": "ca1490.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.124" + "37.19.212.17" ] }, { @@ -71509,12 +76681,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1655, - "hostname": "ca1655.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1491, + "hostname": "ca1491.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.126" + "37.19.212.22" ] }, { @@ -71522,11 +76698,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1655, - "hostname": "ca1655.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1491, + "hostname": "ca1491.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.126" + "37.19.212.22" ] }, { @@ -71534,12 +76714,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1656, - "hostname": "ca1656.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1492, + "hostname": "ca1492.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.128" + "37.19.212.27" ] }, { @@ -71547,11 +76731,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1656, - "hostname": "ca1656.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1492, + "hostname": "ca1492.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.128" + "37.19.212.27" ] }, { @@ -71559,12 +76747,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1657, - "hostname": "ca1657.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1493, + "hostname": "ca1493.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.130" + "37.19.212.32" ] }, { @@ -71572,11 +76764,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1657, - "hostname": "ca1657.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1493, + "hostname": "ca1493.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.130" + "37.19.212.32" ] }, { @@ -71584,12 +76780,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1658, - "hostname": "ca1658.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1494, + "hostname": "ca1494.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.132" + "37.19.212.37" ] }, { @@ -71597,11 +76797,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1658, - "hostname": "ca1658.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1494, + "hostname": "ca1494.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.132" + "37.19.212.37" ] }, { @@ -71609,12 +76813,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1659, - "hostname": "ca1659.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1495, + "hostname": "ca1495.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "153.92.40.134" + "37.19.212.42" ] }, { @@ -71622,11 +76830,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1659, - "hostname": "ca1659.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1495, + "hostname": "ca1495.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "153.92.40.134" + "37.19.212.42" ] }, { @@ -71634,12 +76846,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1660, - "hostname": "ca1660.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1496, + "hostname": "ca1496.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.100" + "37.19.212.47" ] }, { @@ -71647,11 +76863,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1660, - "hostname": "ca1660.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1496, + "hostname": "ca1496.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.100" + "37.19.212.47" ] }, { @@ -71659,12 +76879,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1661, - "hostname": "ca1661.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1497, + "hostname": "ca1497.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.102" + "37.19.212.52" ] }, { @@ -71672,11 +76896,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1661, - "hostname": "ca1661.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1497, + "hostname": "ca1497.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.102" + "37.19.212.52" ] }, { @@ -71684,12 +76912,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1662, - "hostname": "ca1662.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1498, + "hostname": "ca1498.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.104" + "37.19.212.57" ] }, { @@ -71697,11 +76929,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1662, - "hostname": "ca1662.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1498, + "hostname": "ca1498.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.104" + "37.19.212.57" ] }, { @@ -71709,12 +76945,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1663, - "hostname": "ca1663.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1499, + "hostname": "ca1499.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.106" + "37.19.212.62" ] }, { @@ -71722,11 +76962,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1663, - "hostname": "ca1663.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1499, + "hostname": "ca1499.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.106" + "37.19.212.62" ] }, { @@ -71734,12 +76978,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1664, - "hostname": "ca1664.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1500, + "hostname": "ca1500.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.108" + "37.19.212.67" ] }, { @@ -71747,11 +76995,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1664, - "hostname": "ca1664.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1500, + "hostname": "ca1500.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.108" + "37.19.212.67" ] }, { @@ -71759,12 +77011,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1665, - "hostname": "ca1665.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1501, + "hostname": "ca1501.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.110" + "37.19.212.72" ] }, { @@ -71772,11 +77028,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1665, - "hostname": "ca1665.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1501, + "hostname": "ca1501.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.110" + "37.19.212.72" ] }, { @@ -71784,12 +77044,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1666, - "hostname": "ca1666.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1502, + "hostname": "ca1502.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.112" + "37.19.212.77" ] }, { @@ -71797,11 +77061,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1666, - "hostname": "ca1666.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1502, + "hostname": "ca1502.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.112" + "37.19.212.77" ] }, { @@ -71809,12 +77077,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1667, - "hostname": "ca1667.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1503, + "hostname": "ca1503.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.114" + "37.19.212.82" ] }, { @@ -71822,11 +77094,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1667, - "hostname": "ca1667.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1503, + "hostname": "ca1503.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.114" + "37.19.212.82" ] }, { @@ -71834,12 +77110,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1668, - "hostname": "ca1668.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1504, + "hostname": "ca1504.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.116" + "37.19.212.87" ] }, { @@ -71847,11 +77127,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1668, - "hostname": "ca1668.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1504, + "hostname": "ca1504.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.116" + "37.19.212.87" ] }, { @@ -71859,12 +77143,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1669, - "hostname": "ca1669.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1505, + "hostname": "ca1505.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.118" + "37.19.212.92" ] }, { @@ -71872,11 +77160,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1669, - "hostname": "ca1669.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1505, + "hostname": "ca1505.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.118" + "37.19.212.92" ] }, { @@ -71884,12 +77176,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1670, - "hostname": "ca1670.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1506, + "hostname": "ca1506.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.120" + "37.19.212.97" ] }, { @@ -71897,11 +77193,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1670, - "hostname": "ca1670.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1506, + "hostname": "ca1506.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.120" + "37.19.212.97" ] }, { @@ -71909,12 +77209,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1671, - "hostname": "ca1671.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1507, + "hostname": "ca1507.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.122" + "37.19.212.102" ] }, { @@ -71922,11 +77226,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1671, - "hostname": "ca1671.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1507, + "hostname": "ca1507.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.122" + "37.19.212.102" ] }, { @@ -71934,12 +77242,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1672, - "hostname": "ca1672.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1508, + "hostname": "ca1508.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.124" + "37.19.212.107" ] }, { @@ -71947,11 +77259,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1672, - "hostname": "ca1672.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1508, + "hostname": "ca1508.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.124" + "37.19.212.107" ] }, { @@ -71959,12 +77275,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1673, - "hostname": "ca1673.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1509, + "hostname": "ca1509.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.126" + "37.19.212.112" ] }, { @@ -71972,11 +77292,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1673, - "hostname": "ca1673.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1509, + "hostname": "ca1509.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.126" + "37.19.212.112" ] }, { @@ -71984,12 +77308,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1674, - "hostname": "ca1674.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1510, + "hostname": "ca1510.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.128" + "37.19.212.117" ] }, { @@ -71997,11 +77325,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1674, - "hostname": "ca1674.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1510, + "hostname": "ca1510.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.128" + "37.19.212.117" ] }, { @@ -72009,12 +77341,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1675, - "hostname": "ca1675.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1511, + "hostname": "ca1511.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.130" + "37.19.212.122" ] }, { @@ -72022,11 +77358,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1675, - "hostname": "ca1675.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1511, + "hostname": "ca1511.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.130" + "37.19.212.122" ] }, { @@ -72034,12 +77374,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1676, - "hostname": "ca1676.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1512, + "hostname": "ca1512.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.132" + "37.19.212.127" ] }, { @@ -72047,11 +77391,15 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1676, - "hostname": "ca1676.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1512, + "hostname": "ca1512.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.132" + "37.19.212.127" ] }, { @@ -72059,12 +77407,16 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1677, - "hostname": "ca1677.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1513, + "hostname": "ca1513.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.118.134" + "37.19.212.132" ] }, { @@ -72072,10111 +77424,13306 @@ "country": "Canada", "region": "The Americas", "city": "Toronto", - "number": 1677, - "hostname": "ca1677.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1513, + "hostname": "ca1513.nordvpn.com", "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.212.118.134" + "37.19.212.132" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1566, - "hostname": "ca1566.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1514, + "hostname": "ca1514.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.100" + "37.19.212.137" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1566, - "hostname": "ca1566.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1514, + "hostname": "ca1514.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.100" + "37.19.212.137" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1567, - "hostname": "ca1567.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1515, + "hostname": "ca1515.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.102" + "37.19.212.142" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1567, - "hostname": "ca1567.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1515, + "hostname": "ca1515.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.102" + "37.19.212.142" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1568, - "hostname": "ca1568.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1516, + "hostname": "ca1516.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.104" + "37.19.212.147" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1568, - "hostname": "ca1568.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1516, + "hostname": "ca1516.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.104" + "37.19.212.147" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1569, - "hostname": "ca1569.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1517, + "hostname": "ca1517.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.106" + "37.19.212.152" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1569, - "hostname": "ca1569.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1517, + "hostname": "ca1517.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.106" + "37.19.212.152" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1570, - "hostname": "ca1570.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1518, + "hostname": "ca1518.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.108" + "37.19.212.157" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1570, - "hostname": "ca1570.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1518, + "hostname": "ca1518.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.108" + "37.19.212.157" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1571, - "hostname": "ca1571.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1519, + "hostname": "ca1519.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.110" + "37.19.212.162" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1571, - "hostname": "ca1571.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1519, + "hostname": "ca1519.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.110" + "37.19.212.162" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1572, - "hostname": "ca1572.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1520, + "hostname": "ca1520.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.112" + "37.19.212.167" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1572, - "hostname": "ca1572.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1520, + "hostname": "ca1520.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.112" + "37.19.212.167" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1573, - "hostname": "ca1573.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1521, + "hostname": "ca1521.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.114" + "37.19.212.247" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1573, - "hostname": "ca1573.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1521, + "hostname": "ca1521.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.114" + "37.19.212.247" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1574, - "hostname": "ca1574.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1522, + "hostname": "ca1522.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.116" + "37.19.212.172" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1574, - "hostname": "ca1574.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1522, + "hostname": "ca1522.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.116" + "37.19.212.172" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1575, - "hostname": "ca1575.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1523, + "hostname": "ca1523.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.118" + "37.19.212.177" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1575, - "hostname": "ca1575.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1523, + "hostname": "ca1523.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.118" + "37.19.212.177" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1576, - "hostname": "ca1576.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1524, + "hostname": "ca1524.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.120" + "37.19.212.182" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1576, - "hostname": "ca1576.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1524, + "hostname": "ca1524.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.120" + "37.19.212.182" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1577, - "hostname": "ca1577.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1525, + "hostname": "ca1525.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.122" + "37.19.212.187" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1577, - "hostname": "ca1577.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1525, + "hostname": "ca1525.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.122" + "37.19.212.187" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1578, - "hostname": "ca1578.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1526, + "hostname": "ca1526.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.124" + "37.19.212.192" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1578, - "hostname": "ca1578.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1526, + "hostname": "ca1526.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.124" + "37.19.212.192" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1579, - "hostname": "ca1579.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1527, + "hostname": "ca1527.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.126" + "37.19.212.197" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1579, - "hostname": "ca1579.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1527, + "hostname": "ca1527.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.126" + "37.19.212.197" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1580, - "hostname": "ca1580.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1528, + "hostname": "ca1528.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.128" + "37.19.212.202" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1580, - "hostname": "ca1580.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1528, + "hostname": "ca1528.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.128" + "37.19.212.202" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1581, - "hostname": "ca1581.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1642, + "hostname": "ca1642.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.130" + "153.92.40.100" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1581, - "hostname": "ca1581.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1642, + "hostname": "ca1642.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.130" + "153.92.40.100" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1582, - "hostname": "ca1582.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1643, + "hostname": "ca1643.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.132" + "153.92.40.102" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1582, - "hostname": "ca1582.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1643, + "hostname": "ca1643.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.132" + "153.92.40.102" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1583, - "hostname": "ca1583.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1644, + "hostname": "ca1644.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.134" + "153.92.40.104" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1583, - "hostname": "ca1583.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1644, + "hostname": "ca1644.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.134" + "153.92.40.104" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1584, - "hostname": "ca1584.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1645, + "hostname": "ca1645.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.136" + "153.92.40.106" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1584, - "hostname": "ca1584.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1645, + "hostname": "ca1645.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.136" + "153.92.40.106" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1585, - "hostname": "ca1585.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1646, + "hostname": "ca1646.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.138" + "153.92.40.108" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1585, - "hostname": "ca1585.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1646, + "hostname": "ca1646.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.138" + "153.92.40.108" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1586, - "hostname": "ca1586.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1647, + "hostname": "ca1647.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.140" + "153.92.40.110" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1586, - "hostname": "ca1586.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1647, + "hostname": "ca1647.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.140" + "153.92.40.110" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1587, - "hostname": "ca1587.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1648, + "hostname": "ca1648.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.142" + "153.92.40.112" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1587, - "hostname": "ca1587.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1648, + "hostname": "ca1648.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.142" + "153.92.40.112" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1588, - "hostname": "ca1588.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1649, + "hostname": "ca1649.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.144" + "153.92.40.114" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1588, - "hostname": "ca1588.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1649, + "hostname": "ca1649.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.144" + "153.92.40.114" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1589, - "hostname": "ca1589.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1650, + "hostname": "ca1650.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.146" + "153.92.40.116" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1589, - "hostname": "ca1589.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1650, + "hostname": "ca1650.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.146" + "153.92.40.116" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1590, - "hostname": "ca1590.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1651, + "hostname": "ca1651.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.148" + "153.92.40.118" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1590, - "hostname": "ca1590.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1651, + "hostname": "ca1651.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.148" + "153.92.40.118" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1591, - "hostname": "ca1591.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1652, + "hostname": "ca1652.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.150" + "153.92.40.120" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1591, - "hostname": "ca1591.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1652, + "hostname": "ca1652.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.150" + "153.92.40.120" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1592, - "hostname": "ca1592.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1653, + "hostname": "ca1653.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.152" + "153.92.40.122" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1592, - "hostname": "ca1592.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1653, + "hostname": "ca1653.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.152" + "153.92.40.122" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1593, - "hostname": "ca1593.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1654, + "hostname": "ca1654.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.154" + "153.92.40.124" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1593, - "hostname": "ca1593.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1654, + "hostname": "ca1654.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.154" + "153.92.40.124" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1594, - "hostname": "ca1594.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1655, + "hostname": "ca1655.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.156" + "153.92.40.126" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1594, - "hostname": "ca1594.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1655, + "hostname": "ca1655.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.156" + "153.92.40.126" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1595, - "hostname": "ca1595.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1656, + "hostname": "ca1656.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.158" + "153.92.40.128" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1595, - "hostname": "ca1595.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1656, + "hostname": "ca1656.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.158" + "153.92.40.128" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1596, - "hostname": "ca1596.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1657, + "hostname": "ca1657.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.160" + "153.92.40.130" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1596, - "hostname": "ca1596.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1657, + "hostname": "ca1657.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.160" + "153.92.40.130" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1597, - "hostname": "ca1597.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1658, + "hostname": "ca1658.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.179.162" + "153.92.40.132" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1597, - "hostname": "ca1597.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1658, + "hostname": "ca1658.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.153.179.162" + "153.92.40.132" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1683, - "hostname": "ca1683.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1659, + "hostname": "ca1659.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.100.43.4" + "153.92.40.134" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1683, - "hostname": "ca1683.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1659, + "hostname": "ca1659.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "176.100.43.4" + "153.92.40.134" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1684, - "hostname": "ca1684.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1660, + "hostname": "ca1660.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.100.43.16" + "185.212.118.100" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1684, - "hostname": "ca1684.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1660, + "hostname": "ca1660.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "176.100.43.16" + "185.212.118.100" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1685, - "hostname": "ca1685.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1661, + "hostname": "ca1661.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.100.43.28" + "185.212.118.102" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1685, - "hostname": "ca1685.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1661, + "hostname": "ca1661.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "176.100.43.28" + "185.212.118.102" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1686, - "hostname": "ca1686.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1662, + "hostname": "ca1662.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.100.43.40" + "185.212.118.104" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1686, - "hostname": "ca1686.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1662, + "hostname": "ca1662.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "176.100.43.40" + "185.212.118.104" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1687, - "hostname": "ca1687.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1663, + "hostname": "ca1663.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.100.43.52" + "185.212.118.106" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1687, - "hostname": "ca1687.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1663, + "hostname": "ca1663.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "176.100.43.52" + "185.212.118.106" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1688, - "hostname": "ca1688.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1664, + "hostname": "ca1664.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.100.43.64" + "185.212.118.108" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1688, - "hostname": "ca1688.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1664, + "hostname": "ca1664.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "176.100.43.64" + "185.212.118.108" ] }, { "vpn": "openvpn", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1689, - "hostname": "ca1689.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1665, + "hostname": "ca1665.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.100.43.76" + "185.212.118.110" ] }, { "vpn": "wireguard", "country": "Canada", "region": "The Americas", - "city": "Vancouver", - "number": 1689, - "hostname": "ca1689.nordvpn.com", - "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1665, + "hostname": "ca1665.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "176.100.43.76" + "185.212.118.110" ] }, { "vpn": "openvpn", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 33, - "hostname": "cl33.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1666, + "hostname": "ca1666.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.229.4" + "185.212.118.112" ] }, { "vpn": "wireguard", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 33, - "hostname": "cl33.nordvpn.com", - "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1666, + "hostname": "ca1666.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "85.190.229.4" + "185.212.118.112" ] }, { "vpn": "openvpn", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 34, - "hostname": "cl34.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1667, + "hostname": "ca1667.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.229.24" + "185.212.118.114" ] }, { "vpn": "wireguard", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 34, - "hostname": "cl34.nordvpn.com", - "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1667, + "hostname": "ca1667.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "85.190.229.24" + "185.212.118.114" ] }, { "vpn": "openvpn", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 35, - "hostname": "cl35.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "ca1668.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.229.44" + "185.212.118.116" ] }, { "vpn": "wireguard", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 35, - "hostname": "cl35.nordvpn.com", - "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "ca1668.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "85.190.229.44" + "185.212.118.116" ] }, { "vpn": "openvpn", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 36, - "hostname": "cl36.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "ca1669.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.229.64" + "185.212.118.118" ] }, { "vpn": "wireguard", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 36, - "hostname": "cl36.nordvpn.com", - "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "ca1669.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "85.190.229.64" + "185.212.118.118" ] }, { "vpn": "openvpn", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 37, - "hostname": "cl37.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "ca1670.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.229.84" + "185.212.118.120" ] }, { "vpn": "wireguard", - "country": "Chile", + "country": "Canada", "region": "The Americas", - "city": "Santiago", - "number": 37, - "hostname": "cl37.nordvpn.com", - "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "ca1670.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "85.190.229.84" + "185.212.118.120" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 1, - "hostname": "co1.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "ca1671.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.1" + "185.212.118.122" ] }, { "vpn": "wireguard", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 1, - "hostname": "co1.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "ca1671.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.216.73.1" + "185.212.118.122" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 2, - "hostname": "co2.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "ca1672.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.26" + "185.212.118.124" ] }, { "vpn": "wireguard", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 2, - "hostname": "co2.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "ca1672.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.216.73.26" + "185.212.118.124" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 3, - "hostname": "co3.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "ca1673.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.51" + "185.212.118.126" ] }, { "vpn": "wireguard", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 3, - "hostname": "co3.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "ca1673.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.216.73.51" + "185.212.118.126" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 4, - "hostname": "co4.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "ca1674.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.76" + "185.212.118.128" ] }, { "vpn": "wireguard", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 4, - "hostname": "co4.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "ca1674.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.216.73.76" + "185.212.118.128" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 5, - "hostname": "co5.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "ca1675.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.100" + "185.212.118.130" ] }, { "vpn": "wireguard", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 5, - "hostname": "co5.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "ca1675.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.216.73.100" + "185.212.118.130" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 6, - "hostname": "co6.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "ca1676.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.129" + "185.212.118.132" ] }, { "vpn": "wireguard", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 6, - "hostname": "co6.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "ca1676.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.216.73.129" + "185.212.118.132" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 7, - "hostname": "co7.nordvpn.com", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "ca1677.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.154" + "185.212.118.134" ] }, { "vpn": "wireguard", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 7, - "hostname": "co7.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "ca1677.nordvpn.com", + "wgpubkey": "qIhtTW9K4iXWFo5Q4dOPdXg8/xubXr9yEGoN55D8xnA=", "ips": [ - "185.216.73.154" + "185.212.118.134" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 8, - "hostname": "co8.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1690, + "hostname": "ca1690.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.179" + "149.34.249.51" ] }, { - "vpn": "wireguard", - "country": "Colombia", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 8, - "hostname": "co8.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1691, + "hostname": "ca1691.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.73.179" + "149.34.249.53" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 9, - "hostname": "co9.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1692, + "hostname": "ca1692.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.204" + "154.47.17.1" ] }, { - "vpn": "wireguard", - "country": "Colombia", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 9, - "hostname": "co9.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1693, + "hostname": "ca1693.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.73.204" + "154.47.17.3" ] }, { "vpn": "openvpn", - "country": "Colombia", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 10, - "hostname": "co10.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1694, + "hostname": "ca1694.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.73.228" + "149.34.249.55" ] }, { - "vpn": "wireguard", - "country": "Colombia", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "Bogota", - "number": 10, - "hostname": "co10.nordvpn.com", - "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1695, + "hostname": "ca1695.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.73.228" + "149.34.249.57" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 36, - "hostname": "cr36.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1696, + "hostname": "ca1696.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.249.195" + "154.47.17.17" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 36, - "hostname": "cr36.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1697, + "hostname": "ca1697.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.249.195" + "154.47.17.19" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 37, - "hostname": "cr37.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1698, + "hostname": "ca1698.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.249.203" + "154.47.17.6" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 37, - "hostname": "cr37.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1699, + "hostname": "ca1699.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.249.203" + "154.47.17.8" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 38, - "hostname": "cr38.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1700, + "hostname": "ca1700.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.249.211" + "154.47.17.23" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 38, - "hostname": "cr38.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1701, + "hostname": "ca1701.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.249.211" + "154.47.17.25" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 39, - "hostname": "cr39.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1702, + "hostname": "ca1702.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.249.219" + "154.47.17.34" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 39, - "hostname": "cr39.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1703, + "hostname": "ca1703.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.249.219" + "154.47.17.36" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 40, - "hostname": "cr40.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1704, + "hostname": "ca1704.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.249.227" + "154.47.17.44" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 40, - "hostname": "cr40.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1705, + "hostname": "ca1705.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.249.227" + "154.47.17.46" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 41, - "hostname": "cr41.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1706, + "hostname": "ca1706.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.249.235" + "154.47.17.50" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 41, - "hostname": "cr41.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1707, + "hostname": "ca1707.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.249.235" + "154.47.17.52" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 48, - "hostname": "cr48.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1708, + "hostname": "ca1708.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.248.3" + "149.88.16.247" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 48, - "hostname": "cr48.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1709, + "hostname": "ca1709.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.248.3" + "149.88.16.249" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 49, - "hostname": "cr49.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1710, + "hostname": "ca1710.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.248.11" + "149.88.16.50" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 49, - "hostname": "cr49.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1711, + "hostname": "ca1711.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.248.11" + "149.88.16.52" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 50, - "hostname": "cr50.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1712, + "hostname": "ca1712.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.248.19" + "149.88.16.194" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 50, - "hostname": "cr50.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1713, + "hostname": "ca1713.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.248.19" + "149.88.16.196" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 51, - "hostname": "cr51.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1714, + "hostname": "ca1714.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.248.27" + "149.88.16.55" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 51, - "hostname": "cr51.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1715, + "hostname": "ca1715.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.248.27" + "149.88.16.57" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 52, - "hostname": "cr52.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1716, + "hostname": "ca1716.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.248.35" + "149.88.16.199" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 52, - "hostname": "cr52.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1717, + "hostname": "ca1717.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.248.35" + "149.88.16.201" ] }, { "vpn": "openvpn", - "country": "Costa Rica", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 53, - "hostname": "cr53.nordvpn.com", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1718, + "hostname": "ca1718.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "179.48.248.43" + "149.88.16.204" ] }, { - "vpn": "wireguard", - "country": "Costa Rica", + "vpn": "openvpn", + "country": "Canada", "region": "The Americas", - "city": "San Jose", - "number": 53, - "hostname": "cr53.nordvpn.com", - "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1719, + "hostname": "ca1719.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "179.48.248.43" + "149.88.16.206" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 33, - "hostname": "hr33.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1720, + "hostname": "ca1720.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.1" + "149.88.16.214" ] }, { - "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 33, - "hostname": "hr33.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1721, + "hostname": "ca1721.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.160.118.1" + "149.88.16.216" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 34, - "hostname": "hr34.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1722, + "hostname": "ca1722.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.3" + "149.88.16.209" ] }, { - "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 34, - "hostname": "hr34.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "vpn": "openvpn", + "country": "Canada", + "region": "The Americas", + "city": "Toronto", + "categories": [ + "Dedicated IP" + ], + "number": 1723, + "hostname": "ca1723.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.160.118.3" + "149.88.16.211" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 35, - "hostname": "hr35.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1566, + "hostname": "ca1566.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.5" + "185.153.179.100" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 35, - "hostname": "hr35.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1566, + "hostname": "ca1566.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.5" + "185.153.179.100" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 36, - "hostname": "hr36.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1567, + "hostname": "ca1567.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.7" + "185.153.179.102" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 36, - "hostname": "hr36.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1567, + "hostname": "ca1567.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.7" + "185.153.179.102" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 37, - "hostname": "hr37.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1568, + "hostname": "ca1568.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.9" + "185.153.179.104" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 37, - "hostname": "hr37.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1568, + "hostname": "ca1568.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.9" + "185.153.179.104" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 38, - "hostname": "hr38.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1569, + "hostname": "ca1569.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.11" + "185.153.179.106" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 38, - "hostname": "hr38.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1569, + "hostname": "ca1569.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.11" + "185.153.179.106" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 39, - "hostname": "hr39.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1570, + "hostname": "ca1570.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.13" + "185.153.179.108" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 39, - "hostname": "hr39.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1570, + "hostname": "ca1570.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.13" + "185.153.179.108" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 40, - "hostname": "hr40.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1571, + "hostname": "ca1571.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.15" + "185.153.179.110" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 40, - "hostname": "hr40.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1571, + "hostname": "ca1571.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.15" + "185.153.179.110" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 41, - "hostname": "hr41.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1572, + "hostname": "ca1572.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.17" + "185.153.179.112" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 41, - "hostname": "hr41.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1572, + "hostname": "ca1572.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.17" + "185.153.179.112" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 42, - "hostname": "hr42.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1573, + "hostname": "ca1573.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.19" + "185.153.179.114" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 42, - "hostname": "hr42.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1573, + "hostname": "ca1573.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.19" + "185.153.179.114" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 43, - "hostname": "hr43.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1574, + "hostname": "ca1574.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.21" + "185.153.179.116" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 43, - "hostname": "hr43.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1574, + "hostname": "ca1574.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.21" + "185.153.179.116" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 44, - "hostname": "hr44.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1575, + "hostname": "ca1575.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.23" + "185.153.179.118" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 44, - "hostname": "hr44.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1575, + "hostname": "ca1575.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.23" + "185.153.179.118" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 45, - "hostname": "hr45.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1576, + "hostname": "ca1576.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.25" + "185.153.179.120" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 45, - "hostname": "hr45.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1576, + "hostname": "ca1576.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.25" + "185.153.179.120" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 46, - "hostname": "hr46.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1577, + "hostname": "ca1577.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.27" + "185.153.179.122" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 46, - "hostname": "hr46.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1577, + "hostname": "ca1577.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.27" + "185.153.179.122" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 47, - "hostname": "hr47.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1578, + "hostname": "ca1578.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.29" + "185.153.179.124" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 47, - "hostname": "hr47.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1578, + "hostname": "ca1578.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.29" + "185.153.179.124" ] }, { "vpn": "openvpn", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 48, - "hostname": "hr48.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1579, + "hostname": "ca1579.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.160.118.31" + "185.153.179.126" ] }, { "vpn": "wireguard", - "country": "Croatia", - "region": "Europe", - "city": "Zagreb", - "number": 48, - "hostname": "hr48.nordvpn.com", - "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1579, + "hostname": "ca1579.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.160.118.31" + "185.153.179.126" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 30, - "hostname": "cy30.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1580, + "hostname": "ca1580.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.204.161" + "185.153.179.128" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 30, - "hostname": "cy30.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1580, + "hostname": "ca1580.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.19.204.161" + "185.153.179.128" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 31, - "hostname": "cy31.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1581, + "hostname": "ca1581.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.204.129" + "185.153.179.130" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 31, - "hostname": "cy31.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1581, + "hostname": "ca1581.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.19.204.129" + "185.153.179.130" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 35, - "hostname": "cy35.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1582, + "hostname": "ca1582.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.204.177" + "185.153.179.132" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 35, - "hostname": "cy35.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1582, + "hostname": "ca1582.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.19.204.177" + "185.153.179.132" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 36, - "hostname": "cy36.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1583, + "hostname": "ca1583.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.204.193" + "185.153.179.134" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 36, - "hostname": "cy36.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1583, + "hostname": "ca1583.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.19.204.193" + "185.153.179.134" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 37, - "hostname": "cy37.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1584, + "hostname": "ca1584.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.204.209" + "185.153.179.136" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 37, - "hostname": "cy37.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1584, + "hostname": "ca1584.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.19.204.209" + "185.153.179.136" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 38, - "hostname": "cy38.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1585, + "hostname": "ca1585.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.204.225" + "185.153.179.138" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 38, - "hostname": "cy38.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1585, + "hostname": "ca1585.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.19.204.225" + "185.153.179.138" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 39, - "hostname": "cy39.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1586, + "hostname": "ca1586.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.47.194.1" + "185.153.179.140" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 39, - "hostname": "cy39.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1586, + "hostname": "ca1586.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "195.47.194.1" + "185.153.179.140" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 40, - "hostname": "cy40.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1587, + "hostname": "ca1587.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.47.194.17" + "185.153.179.142" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 40, - "hostname": "cy40.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1587, + "hostname": "ca1587.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "195.47.194.17" + "185.153.179.142" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 41, - "hostname": "cy41.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1588, + "hostname": "ca1588.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.47.194.33" + "185.153.179.144" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 41, - "hostname": "cy41.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1588, + "hostname": "ca1588.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "195.47.194.33" + "185.153.179.144" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 43, - "hostname": "cy43.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1589, + "hostname": "ca1589.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.47.194.65" + "185.153.179.146" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 43, - "hostname": "cy43.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1589, + "hostname": "ca1589.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "195.47.194.65" + "185.153.179.146" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 44, - "hostname": "cy44.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1590, + "hostname": "ca1590.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.47.194.81" + "185.153.179.148" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 44, - "hostname": "cy44.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1590, + "hostname": "ca1590.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "195.47.194.81" + "185.153.179.148" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 45, - "hostname": "cy45.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1591, + "hostname": "ca1591.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.19.204.145" + "185.153.179.150" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 45, - "hostname": "cy45.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1591, + "hostname": "ca1591.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.19.204.145" + "185.153.179.150" ] }, { "vpn": "openvpn", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 46, - "hostname": "cy46.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1592, + "hostname": "ca1592.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.47.194.49" + "185.153.179.152" ] }, { "vpn": "wireguard", - "country": "Cyprus", - "region": "Europe", - "city": "Nicosia", - "number": 46, - "hostname": "cy46.nordvpn.com", - "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1592, + "hostname": "ca1592.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "195.47.194.49" + "185.153.179.152" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 93, - "hostname": "cz93.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1593, + "hostname": "ca1593.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.199.27" + "185.153.179.154" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 93, - "hostname": "cz93.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1593, + "hostname": "ca1593.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "217.138.199.27" + "185.153.179.154" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 97, - "hostname": "cz97.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1594, + "hostname": "ca1594.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.38.149" + "185.153.179.156" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 97, - "hostname": "cz97.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1594, + "hostname": "ca1594.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "212.102.38.149" + "185.153.179.156" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 98, - "hostname": "cz98.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1595, + "hostname": "ca1595.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.38.146" + "185.153.179.158" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 98, - "hostname": "cz98.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1595, + "hostname": "ca1595.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "212.102.38.146" + "185.153.179.158" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 101, - "hostname": "cz101.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1596, + "hostname": "ca1596.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.186.251" + "185.153.179.160" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 101, - "hostname": "cz101.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1596, + "hostname": "ca1596.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "89.238.186.251" + "185.153.179.160" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 102, - "hostname": "cz102.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1597, + "hostname": "ca1597.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.156.174.3" + "185.153.179.162" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 102, - "hostname": "cz102.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1597, + "hostname": "ca1597.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "185.156.174.3" + "185.153.179.162" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 103, - "hostname": "cz103.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "ca1683.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.156.174.91" + "176.100.43.4" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 103, - "hostname": "cz103.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "ca1683.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "185.156.174.91" + "176.100.43.4" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 108, - "hostname": "cz108.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "ca1684.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.186.235" + "176.100.43.16" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 108, - "hostname": "cz108.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", - "ips": [ - "89.238.186.235" - ] + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "ca1684.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", + "ips": [ + "176.100.43.16" + ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 109, - "hostname": "cz109.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "ca1685.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.35.251" + "176.100.43.28" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 109, - "hostname": "cz109.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "ca1685.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "185.216.35.251" + "176.100.43.28" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 110, - "hostname": "cz110.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "ca1686.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.35.115" + "176.100.43.40" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 110, - "hostname": "cz110.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "ca1686.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "185.216.35.115" + "176.100.43.40" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 112, - "hostname": "cz112.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "ca1687.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.35.120" + "176.100.43.52" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 112, - "hostname": "cz112.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "ca1687.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "185.216.35.120" + "176.100.43.52" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 114, - "hostname": "cz114.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "ca1688.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.9.112.91" + "176.100.43.64" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 114, - "hostname": "cz114.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "ca1688.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.9.112.91" + "176.100.43.64" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 115, - "hostname": "cz115.nordvpn.com", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "ca1689.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.9.112.75" + "176.100.43.76" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 115, - "hostname": "cz115.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Canada", + "region": "The Americas", + "city": "Vancouver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "ca1689.nordvpn.com", + "wgpubkey": "x64VhRToeBFhVlaJGA+R1CE1K3MsT7KVELquTyeQ3j0=", "ips": [ - "193.9.112.75" + "176.100.43.76" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 116, - "hostname": "cz116.nordvpn.com", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ky1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.9.112.83" + "95.214.112.1" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 116, - "hostname": "cz116.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ky1.nordvpn.com", + "wgpubkey": "OvFEgQulgqJwgpgQ7hfvld8wT+2B2OhcKRS7h+kA5lI=", "ips": [ - "193.9.112.83" + "95.214.112.1" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 117, - "hostname": "cz117.nordvpn.com", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ky2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.199.19" + "95.214.112.3" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 117, - "hostname": "cz117.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Cayman Islands", + "region": "The Americas", + "city": "George Town", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ky2.nordvpn.com", + "wgpubkey": "OvFEgQulgqJwgpgQ7hfvld8wT+2B2OhcKRS7h+kA5lI=", "ips": [ - "217.138.199.19" + "95.214.112.3" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 118, - "hostname": "cz118.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "cl33.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.199.11" + "85.190.229.4" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 118, - "hostname": "cz118.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "cl33.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "217.138.199.11" + "85.190.229.4" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 119, - "hostname": "cz119.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "cl34.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.199.3" + "85.190.229.24" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 119, - "hostname": "cz119.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "cl34.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "217.138.199.3" + "85.190.229.24" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 120, - "hostname": "cz120.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cl35.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.9.112.251" + "85.190.229.44" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 120, - "hostname": "cz120.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cl35.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "193.9.112.251" + "85.190.229.44" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 121, - "hostname": "cz121.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cl36.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.9.112.243" + "85.190.229.64" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 121, - "hostname": "cz121.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cl36.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "193.9.112.243" + "85.190.229.64" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 122, - "hostname": "cz122.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cl37.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.9.112.235" + "85.190.229.84" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 122, - "hostname": "cz122.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cl37.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "193.9.112.235" + "85.190.229.84" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 123, - "hostname": "cz123.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cl38.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.199.51" + "158.220.78.1" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 123, - "hostname": "cz123.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cl38.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "217.138.199.51" + "158.220.78.1" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 124, - "hostname": "cz124.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cl39.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.199.43" + "158.220.78.21" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 124, - "hostname": "cz124.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cl39.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "217.138.199.43" + "158.220.78.21" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 125, - "hostname": "cz125.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cl40.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.199.35" + "158.220.78.41" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 125, - "hostname": "cz125.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cl40.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "217.138.199.35" + "158.220.78.41" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 126, - "hostname": "cz126.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cl41.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.8" + "158.220.78.61" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 126, - "hostname": "cz126.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cl41.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "138.199.56.8" + "158.220.78.61" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 127, - "hostname": "cz127.nordvpn.com", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "cl42.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.14" + "158.220.78.81" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 127, - "hostname": "cz127.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Chile", + "region": "The Americas", + "city": "Santiago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "cl42.nordvpn.com", + "wgpubkey": "oF4UQAM7+8DEKFSkiv3KjwOo9Zw0H3yBHOYji2jnrhE=", "ips": [ - "138.199.56.14" + "158.220.78.81" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 128, - "hostname": "cz128.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "co1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.26" + "185.216.73.1" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 128, - "hostname": "cz128.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "co1.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.26" + "185.216.73.1" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 129, - "hostname": "cz129.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "co2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.32" + "185.216.73.26" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 129, - "hostname": "cz129.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "co2.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.32" + "185.216.73.26" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 130, - "hostname": "cz130.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 3, + "hostname": "co3.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.38" + "185.216.73.51" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 130, - "hostname": "cz130.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 3, + "hostname": "co3.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.38" + "185.216.73.51" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 131, - "hostname": "cz131.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4, + "hostname": "co4.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.44" + "185.216.73.76" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 131, - "hostname": "cz131.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4, + "hostname": "co4.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.44" + "185.216.73.76" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 132, - "hostname": "cz132.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5, + "hostname": "co5.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.50" + "185.216.73.100" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 132, - "hostname": "cz132.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5, + "hostname": "co5.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.50" + "185.216.73.100" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 133, - "hostname": "cz133.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6, + "hostname": "co6.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.56" + "185.216.73.129" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 133, - "hostname": "cz133.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6, + "hostname": "co6.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.56" + "185.216.73.129" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 134, - "hostname": "cz134.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "co7.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.62" + "185.216.73.154" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 134, - "hostname": "cz134.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "co7.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.62" + "185.216.73.154" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 135, - "hostname": "cz135.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "co8.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.68" + "185.216.73.179" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 135, - "hostname": "cz135.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "co8.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.68" + "185.216.73.179" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 136, - "hostname": "cz136.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "co9.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.74" + "185.216.73.204" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 136, - "hostname": "cz136.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "co9.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.74" + "185.216.73.204" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 137, - "hostname": "cz137.nordvpn.com", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "co10.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.80" + "185.216.73.228" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 137, - "hostname": "cz137.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Colombia", + "region": "The Americas", + "city": "Bogota", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "co10.nordvpn.com", + "wgpubkey": "/SDeC9Ohe1CFSSCCqKTP+D2HMJnqOVziyaKF3CNhPwQ=", "ips": [ - "138.199.56.80" + "185.216.73.228" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 138, - "hostname": "cz138.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "cr36.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.86" + "179.48.249.195" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 138, - "hostname": "cz138.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "cr36.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "138.199.56.86" + "179.48.249.195" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 139, - "hostname": "cz139.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "cr37.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.2" + "179.48.249.203" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 139, - "hostname": "cz139.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "cr37.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "138.199.56.2" + "179.48.249.203" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 140, - "hostname": "cz140.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "cr38.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.20" + "179.48.249.211" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 140, - "hostname": "cz140.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "cr38.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "138.199.56.20" + "179.48.249.211" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 141, - "hostname": "cz141.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "cr39.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.92" + "179.48.249.219" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 141, - "hostname": "cz141.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "cr39.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "138.199.56.92" + "179.48.249.219" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 142, - "hostname": "cz142.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "cr40.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.56.104" + "179.48.249.227" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 142, - "hostname": "cz142.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "cr40.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "138.199.56.104" + "179.48.249.227" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 143, - "hostname": "cz143.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "cr41.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.14" + "179.48.249.235" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 143, - "hostname": "cz143.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "cr41.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "87.249.135.14" + "179.48.249.235" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 144, - "hostname": "cz144.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "cr48.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.2" + "179.48.248.3" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 144, - "hostname": "cz144.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "cr48.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "87.249.135.2" + "179.48.248.3" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 145, - "hostname": "cz145.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "cr49.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.26" + "179.48.248.11" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 145, - "hostname": "cz145.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "cr49.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "87.249.135.26" + "179.48.248.11" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 146, - "hostname": "cz146.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 50, + "hostname": "cr50.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.77" + "179.48.248.19" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 146, - "hostname": "cz146.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 50, + "hostname": "cr50.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "87.249.135.77" + "179.48.248.19" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 147, - "hostname": "cz147.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 51, + "hostname": "cr51.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.247" + "179.48.248.27" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 147, - "hostname": "cz147.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 51, + "hostname": "cr51.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "87.249.135.247" + "179.48.248.27" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 148, - "hostname": "cz148.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 52, + "hostname": "cr52.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.89" + "179.48.248.35" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 148, - "hostname": "cz148.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 52, + "hostname": "cr52.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "87.249.135.89" + "179.48.248.35" ] }, { "vpn": "openvpn", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 149, - "hostname": "cz149.nordvpn.com", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 53, + "hostname": "cr53.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.223" + "179.48.248.43" ] }, { "vpn": "wireguard", - "country": "Czech Republic", - "region": "Europe", - "city": "Prague", - "number": 149, - "hostname": "cz149.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "country": "Costa Rica", + "region": "The Americas", + "city": "San Jose", + "categories": [ + "Standard VPN servers" + ], + "number": 53, + "hostname": "cr53.nordvpn.com", + "wgpubkey": "j9NcKo61nfX1ZKi0BvmuK7uSBuSt9zmoE+KTBWOo/Ac=", "ips": [ - "87.249.135.223" + "179.48.248.43" ] }, { "vpn": "openvpn", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 150, - "hostname": "cz150.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "hr33.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.209.20" + "193.160.118.1" ] }, { "vpn": "wireguard", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 150, - "hostname": "cz150.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 33, + "hostname": "hr33.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "178.249.209.20" + "193.160.118.1" ] }, { "vpn": "openvpn", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 151, - "hostname": "cz151.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "hr34.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.209.8" + "193.160.118.3" ] }, { "vpn": "wireguard", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 151, - "hostname": "cz151.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 34, + "hostname": "hr34.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "178.249.209.8" + "193.160.118.3" ] }, { "vpn": "openvpn", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 152, - "hostname": "cz152.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "hr35.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.209.32" + "193.160.118.5" ] }, { "vpn": "wireguard", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 152, - "hostname": "cz152.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "hr35.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "178.249.209.32" + "193.160.118.5" ] }, { "vpn": "openvpn", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 153, - "hostname": "cz153.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "hr36.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.211" + "193.160.118.7" ] }, { "vpn": "wireguard", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 153, - "hostname": "cz153.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "hr36.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "87.249.135.211" + "193.160.118.7" ] }, { "vpn": "openvpn", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 154, - "hostname": "cz154.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "hr37.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.65" + "193.160.118.9" ] }, { "vpn": "wireguard", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 154, - "hostname": "cz154.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "hr37.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "87.249.135.65" + "193.160.118.9" ] }, { "vpn": "openvpn", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 155, - "hostname": "cz155.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "hr38.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.135.235" + "193.160.118.11" ] }, { "vpn": "wireguard", - "country": "Czech Republic", + "country": "Croatia", "region": "Europe", - "city": "Prague", - "number": 155, - "hostname": "cz155.nordvpn.com", - "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "hr38.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "87.249.135.235" + "193.160.118.11" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 150, - "hostname": "dk150.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "hr39.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.3" + "193.160.118.13" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 150, - "hostname": "dk150.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "hr39.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "37.120.194.3" + "193.160.118.13" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 152, - "hostname": "dk152.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "hr40.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.20.212" + "193.160.118.15" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 152, - "hostname": "dk152.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "hr40.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "82.102.20.212" + "193.160.118.15" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 166, - "hostname": "dk166.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "hr41.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.195" + "193.160.118.17" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 166, - "hostname": "dk166.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "hr41.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "37.120.194.195" + "193.160.118.17" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 167, - "hostname": "dk167.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "hr42.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.203" + "193.160.118.19" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 167, - "hostname": "dk167.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "hr42.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "37.120.194.203" + "193.160.118.19" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 172, - "hostname": "dk172.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "hr43.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.227" + "193.160.118.21" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 172, - "hostname": "dk172.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "hr43.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "37.120.194.227" + "193.160.118.21" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 173, - "hostname": "dk173.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "hr44.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.235" + "193.160.118.23" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 173, - "hostname": "dk173.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "hr44.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "37.120.194.235" + "193.160.118.23" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 182, - "hostname": "dk182.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "hr45.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.20.35" + "193.160.118.25" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 182, - "hostname": "dk182.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "hr45.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "82.102.20.35" + "193.160.118.25" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 194, - "hostname": "dk194.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "hr46.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.58.46.235" + "193.160.118.27" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 194, - "hostname": "dk194.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "hr46.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "2.58.46.235" + "193.160.118.27" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 199, - "hostname": "dk199.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hr47.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.131" + "193.160.118.29" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 199, - "hostname": "dk199.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hr47.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "37.120.131.131" + "193.160.118.29" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 200, - "hostname": "dk200.nordvpn.com", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hr48.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.136" + "193.160.118.31" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Croatia", "region": "Europe", - "city": "Copenhagen", - "number": 200, - "hostname": "dk200.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Zagreb", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hr48.nordvpn.com", + "wgpubkey": "aMXxXstSXwxfwzMkAF8gsajEmg0KkTDwtJRWMqBUVWA=", "ips": [ - "37.120.131.136" + "193.160.118.31" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 201, - "hostname": "dk201.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 30, + "hostname": "cy30.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.141" + "193.19.204.161" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 201, - "hostname": "dk201.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 30, + "hostname": "cy30.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "37.120.131.141" + "193.19.204.161" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 202, - "hostname": "dk202.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 31, + "hostname": "cy31.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.149" + "193.19.204.129" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 202, - "hostname": "dk202.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 31, + "hostname": "cy31.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "37.120.131.149" + "193.19.204.129" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 203, - "hostname": "dk203.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cy35.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.154" + "193.19.204.177" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 203, - "hostname": "dk203.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 35, + "hostname": "cy35.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "37.120.131.154" + "193.19.204.177" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 207, - "hostname": "dk207.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cy36.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.195" + "193.19.204.193" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 207, - "hostname": "dk207.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 36, + "hostname": "cy36.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "37.120.131.195" + "193.19.204.193" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 209, - "hostname": "dk209.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cy37.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.227" + "193.19.204.209" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 209, - "hostname": "dk209.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 37, + "hostname": "cy37.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "37.120.131.227" + "193.19.204.209" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 210, - "hostname": "dk210.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cy38.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.235" + "193.19.204.225" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 210, - "hostname": "dk210.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 38, + "hostname": "cy38.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "37.120.131.235" + "193.19.204.225" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 211, - "hostname": "dk211.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cy39.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.243" + "195.47.194.1" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 211, - "hostname": "dk211.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 39, + "hostname": "cy39.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "37.120.131.243" + "195.47.194.1" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 212, - "hostname": "dk212.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cy40.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.251" + "195.47.194.17" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 212, - "hostname": "dk212.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "cy40.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "37.120.131.251" + "195.47.194.17" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 213, - "hostname": "dk213.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cy41.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.131.219" + "195.47.194.33" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 213, - "hostname": "dk213.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", - "ips": [ - "37.120.131.219" - ] + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "cy41.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", + "ips": [ + "195.47.194.33" + ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 214, - "hostname": "dk214.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "cy43.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.58.46.19" + "195.47.194.65" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 214, - "hostname": "dk214.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "cy43.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "2.58.46.19" + "195.47.194.65" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 215, - "hostname": "dk215.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "cy44.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.58.46.27" + "195.47.194.81" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 215, - "hostname": "dk215.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "cy44.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "2.58.46.27" + "195.47.194.81" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 218, - "hostname": "dk218.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "cy45.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.84.83" + "193.19.204.145" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 218, - "hostname": "dk218.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "cy45.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "185.245.84.83" + "193.19.204.145" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 219, - "hostname": "dk219.nordvpn.com", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "cy46.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.84.163" + "195.47.194.49" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Cyprus", "region": "Europe", - "city": "Copenhagen", - "number": 219, - "hostname": "dk219.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Nicosia", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "cy46.nordvpn.com", + "wgpubkey": "AQ+reNE4hk8UB2YY6NbwA6kaZCMrMPxKUzUK2+E2dxE=", "ips": [ - "185.245.84.163" + "195.47.194.49" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 220, - "hostname": "dk220.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "cz93.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.84.171" + "217.138.199.27" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 220, - "hostname": "dk220.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "cz93.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "185.245.84.171" + "217.138.199.27" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 221, - "hostname": "dk221.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "cz97.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.84.179" + "212.102.38.149" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 221, - "hostname": "dk221.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "cz97.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "185.245.84.179" + "212.102.38.149" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 222, - "hostname": "dk222.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "cz98.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.84.187" + "212.102.38.146" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 222, - "hostname": "dk222.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "cz98.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "185.245.84.187" + "212.102.38.146" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 233, - "hostname": "dk233.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "cz101.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.43" + "89.238.186.251" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 233, - "hostname": "dk233.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "cz101.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "37.120.194.43" + "89.238.186.251" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 234, - "hostname": "dk234.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "cz102.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.51" + "185.156.174.3" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 234, - "hostname": "dk234.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "cz102.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "37.120.194.51" + "185.156.174.3" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 235, - "hostname": "dk235.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "cz103.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.59" + "185.156.174.91" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 235, - "hostname": "dk235.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "cz103.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "37.120.194.59" + "185.156.174.91" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 236, - "hostname": "dk236.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "cz108.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.67" + "89.238.186.235" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 236, - "hostname": "dk236.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "cz108.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "37.120.194.67" + "89.238.186.235" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 237, - "hostname": "dk237.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "cz109.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.80.187" + "185.216.35.251" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 237, - "hostname": "dk237.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "cz109.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "146.70.80.187" + "185.216.35.251" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 238, - "hostname": "dk238.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "cz110.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.194.75" + "185.216.35.115" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 238, - "hostname": "dk238.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "cz110.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "37.120.194.75" + "185.216.35.115" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 239, - "hostname": "dk239.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "cz112.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.80.195" + "185.216.35.120" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 239, - "hostname": "dk239.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "cz112.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "146.70.80.195" + "185.216.35.120" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 240, - "hostname": "dk240.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "cz114.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.65.163" + "193.9.112.91" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 240, - "hostname": "dk240.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "cz114.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "95.174.65.163" + "193.9.112.91" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 241, - "hostname": "dk241.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "cz115.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.65.171" + "193.9.112.75" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 241, - "hostname": "dk241.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "cz115.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "95.174.65.171" + "193.9.112.75" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 242, - "hostname": "dk242.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "cz116.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.145.83" + "193.9.112.83" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 242, - "hostname": "dk242.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "cz116.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "37.120.145.83" + "193.9.112.83" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 243, - "hostname": "dk243.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "cz117.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.145.91" + "217.138.199.19" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 243, - "hostname": "dk243.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "cz117.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "37.120.145.91" + "217.138.199.19" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 244, - "hostname": "dk244.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "cz118.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.80.163" + "217.138.199.11" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 244, - "hostname": "dk244.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "cz118.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "146.70.80.163" + "217.138.199.11" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 245, - "hostname": "dk245.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "cz119.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.80.171" + "217.138.199.3" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 245, - "hostname": "dk245.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "cz119.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "146.70.80.171" + "217.138.199.3" ] }, { "vpn": "openvpn", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 246, - "hostname": "dk246.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "cz120.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.80.179" + "193.9.112.251" ] }, { "vpn": "wireguard", - "country": "Denmark", + "country": "Czech Republic", "region": "Europe", - "city": "Copenhagen", - "number": 246, - "hostname": "dk246.nordvpn.com", - "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "cz120.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "146.70.80.179" + "193.9.112.251" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 51, - "hostname": "ee51.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "cz121.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.51" + "193.9.112.243" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 51, - "hostname": "ee51.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "cz121.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.51" + "193.9.112.243" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 52, - "hostname": "ee52.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "cz122.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.35" + "193.9.112.235" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 52, - "hostname": "ee52.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "cz122.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.35" + "193.9.112.235" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 53, - "hostname": "ee53.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "cz123.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.43" + "217.138.199.51" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 53, - "hostname": "ee53.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "cz123.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.43" + "217.138.199.51" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 54, - "hostname": "ee54.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "cz124.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.123" + "217.138.199.43" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 54, - "hostname": "ee54.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "cz124.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.123" + "217.138.199.43" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 55, - "hostname": "ee55.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "cz125.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.3" + "217.138.199.35" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 55, - "hostname": "ee55.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "cz125.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.3" + "217.138.199.35" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 56, - "hostname": "ee56.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "cz126.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.131" + "138.199.56.8" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 56, - "hostname": "ee56.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 126, + "hostname": "cz126.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.131" + "138.199.56.8" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 57, - "hostname": "ee57.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "cz127.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.11" + "138.199.56.14" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 57, - "hostname": "ee57.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 127, + "hostname": "cz127.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.11" + "138.199.56.14" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 58, - "hostname": "ee58.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "cz128.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.139" + "138.199.56.26" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 58, - "hostname": "ee58.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "cz128.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.139" + "138.199.56.26" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 59, - "hostname": "ee59.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "cz129.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.147" + "138.199.56.32" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 59, - "hostname": "ee59.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "cz129.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.147" + "138.199.56.32" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 60, - "hostname": "ee60.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "cz130.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.75" + "138.199.56.38" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 60, - "hostname": "ee60.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "cz130.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.75" + "138.199.56.38" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 61, - "hostname": "ee61.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "cz131.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.91" + "138.199.56.44" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 61, - "hostname": "ee61.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "cz131.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.91" + "138.199.56.44" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 62, - "hostname": "ee62.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "cz132.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.107" + "138.199.56.50" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 62, - "hostname": "ee62.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "cz132.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.107" + "138.199.56.50" ] }, { "vpn": "openvpn", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 63, - "hostname": "ee63.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "cz133.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "165.231.177.59" + "138.199.56.56" ] }, { "vpn": "wireguard", - "country": "Estonia", + "country": "Czech Republic", "region": "Europe", - "city": "Tallinn", - "number": 63, - "hostname": "ee63.nordvpn.com", - "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "cz133.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "165.231.177.59" + "138.199.56.56" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 179, - "hostname": "fi179.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "cz134.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.124" + "138.199.56.62" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 179, - "hostname": "fi179.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "cz134.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.124" + "138.199.56.62" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 180, - "hostname": "fi180.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "cz135.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.126" + "138.199.56.68" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 180, - "hostname": "fi180.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "cz135.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.126" + "138.199.56.68" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 181, - "hostname": "fi181.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "cz136.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.133" + "138.199.56.74" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 181, - "hostname": "fi181.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "cz136.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.133" + "138.199.56.74" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 182, - "hostname": "fi182.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "cz137.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.135" + "138.199.56.80" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 182, - "hostname": "fi182.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "cz137.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.135" + "138.199.56.80" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 183, - "hostname": "fi183.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "cz138.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.137" + "138.199.56.86" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 183, - "hostname": "fi183.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "cz138.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.137" + "138.199.56.86" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 184, - "hostname": "fi184.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "cz139.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.139" + "138.199.56.2" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 184, - "hostname": "fi184.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "cz139.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.139" + "138.199.56.2" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 185, - "hostname": "fi185.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "cz140.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.141" + "138.199.56.20" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 185, - "hostname": "fi185.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "cz140.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.141" + "138.199.56.20" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 186, - "hostname": "fi186.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "cz141.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.143" + "138.199.56.92" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 186, - "hostname": "fi186.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "cz141.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.143" + "138.199.56.92" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 187, - "hostname": "fi187.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "cz142.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.145" + "138.199.56.104" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 187, - "hostname": "fi187.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "cz142.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.145" + "138.199.56.104" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 188, - "hostname": "fi188.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "cz143.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.147" + "87.249.135.14" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 188, - "hostname": "fi188.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "cz143.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.147" + "87.249.135.14" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 189, - "hostname": "fi189.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "cz144.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.149" + "87.249.135.2" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 189, - "hostname": "fi189.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "cz144.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.149" + "87.249.135.2" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 190, - "hostname": "fi190.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "cz145.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.151" + "87.249.135.26" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 190, - "hostname": "fi190.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "cz145.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.151" + "87.249.135.26" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 191, - "hostname": "fi191.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "cz146.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.153" + "87.249.135.77" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 191, - "hostname": "fi191.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "cz146.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.153" + "87.249.135.77" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 192, - "hostname": "fi192.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "cz147.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.155" + "87.249.135.247" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 192, - "hostname": "fi192.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "cz147.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.155" + "87.249.135.247" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 193, - "hostname": "fi193.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "cz148.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.157" + "87.249.135.89" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 193, - "hostname": "fi193.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "cz148.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.157" + "87.249.135.89" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 194, - "hostname": "fi194.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "cz149.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.159" + "87.249.135.223" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 194, - "hostname": "fi194.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "cz149.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.159" + "87.249.135.223" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 195, - "hostname": "fi195.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "cz150.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.161" + "178.249.209.20" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 195, - "hostname": "fi195.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "cz150.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.161" + "178.249.209.20" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 196, - "hostname": "fi196.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "cz151.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.163" + "178.249.209.8" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 196, - "hostname": "fi196.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "cz151.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.163" + "178.249.209.8" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 197, - "hostname": "fi197.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "cz152.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.165" + "178.249.209.32" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 197, - "hostname": "fi197.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "cz152.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.165" + "178.249.209.32" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 198, - "hostname": "fi198.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "cz153.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.167" + "87.249.135.211" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 198, - "hostname": "fi198.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "cz153.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.167" + "87.249.135.211" ] }, { "vpn": "openvpn", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 199, - "hostname": "fi199.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "cz154.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.202.81.169" + "87.249.135.65" ] }, { "vpn": "wireguard", - "country": "Finland", + "country": "Czech Republic", "region": "Europe", - "city": "Helsinki", - "number": 199, - "hostname": "fi199.nordvpn.com", - "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "cz154.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "85.202.81.169" + "87.249.135.65" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Czech Republic", "region": "Europe", - "city": "Marseille", - "number": 789, - "hostname": "fr789.nordvpn.com", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "cz155.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.7" + "87.249.135.235" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Czech Republic", "region": "Europe", - "city": "Marseille", - "number": 789, - "hostname": "fr789.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Prague", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "cz155.nordvpn.com", + "wgpubkey": "apEe1p4IQvCQxexoxoUTXsm2p582FtbDAboPwThFYEs=", "ips": [ - "138.199.16.7" + "87.249.135.235" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 790, - "hostname": "fr790.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "dk150.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.12" + "37.120.194.3" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 790, - "hostname": "fr790.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "dk150.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.12" + "37.120.194.3" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 791, - "hostname": "fr791.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "dk152.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.17" + "82.102.20.212" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 791, - "hostname": "fr791.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "dk152.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.17" + "82.102.20.212" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 793, - "hostname": "fr793.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "dk166.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.27" + "37.120.194.195" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 793, - "hostname": "fr793.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "dk166.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.27" + "37.120.194.195" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 794, - "hostname": "fr794.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "dk167.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.32" + "37.120.194.203" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 794, - "hostname": "fr794.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "dk167.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.32" + "37.120.194.203" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 795, - "hostname": "fr795.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "dk172.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.37" + "37.120.194.227" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 795, - "hostname": "fr795.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "dk172.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.37" + "37.120.194.227" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 796, - "hostname": "fr796.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "dk173.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.42" + "37.120.194.235" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 796, - "hostname": "fr796.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "dk173.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.42" + "37.120.194.235" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 797, - "hostname": "fr797.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "dk182.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.47" + "82.102.20.35" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 797, - "hostname": "fr797.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "dk182.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.47" + "82.102.20.35" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 798, - "hostname": "fr798.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "dk194.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.52" + "2.58.46.235" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 798, - "hostname": "fr798.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "dk194.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.52" + "2.58.46.235" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 799, - "hostname": "fr799.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "dk199.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.57" + "37.120.131.131" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 799, - "hostname": "fr799.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "dk199.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.57" + "37.120.131.131" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 800, - "hostname": "fr800.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "dk200.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.62" + "37.120.131.136" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 800, - "hostname": "fr800.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "dk200.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.62" + "37.120.131.136" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 801, - "hostname": "fr801.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "dk201.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.67" + "37.120.131.141" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 801, - "hostname": "fr801.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "dk201.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.67" + "37.120.131.141" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 802, - "hostname": "fr802.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "dk202.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.72" + "37.120.131.149" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 802, - "hostname": "fr802.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "dk202.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.72" + "37.120.131.149" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 803, - "hostname": "fr803.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "dk203.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.77" + "37.120.131.154" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 803, - "hostname": "fr803.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "dk203.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.77" + "37.120.131.154" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 804, - "hostname": "fr804.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "dk207.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.82" + "37.120.131.195" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 804, - "hostname": "fr804.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "dk207.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.82" + "37.120.131.195" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 805, - "hostname": "fr805.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "dk209.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.87" + "37.120.131.227" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 805, - "hostname": "fr805.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "dk209.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.87" + "37.120.131.227" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 806, - "hostname": "fr806.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "dk210.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.92" + "37.120.131.235" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 806, - "hostname": "fr806.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", - "ips": [ - "138.199.16.92" - ] + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "dk210.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", + "ips": [ + "37.120.131.235" + ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 807, - "hostname": "fr807.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "dk211.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.97" + "37.120.131.243" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 807, - "hostname": "fr807.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "dk211.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.97" + "37.120.131.243" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 808, - "hostname": "fr808.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "dk212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.102" + "37.120.131.251" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 808, - "hostname": "fr808.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "dk212.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.102" + "37.120.131.251" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 809, - "hostname": "fr809.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "dk213.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.107" + "37.120.131.219" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 809, - "hostname": "fr809.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "dk213.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.107" + "37.120.131.219" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 810, - "hostname": "fr810.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "dk214.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.112" + "2.58.46.19" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 810, - "hostname": "fr810.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "dk214.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.112" + "2.58.46.19" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 811, - "hostname": "fr811.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "dk215.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.117" + "2.58.46.27" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 811, - "hostname": "fr811.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "dk215.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.117" + "2.58.46.27" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 812, - "hostname": "fr812.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "dk218.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.194" + "185.245.84.83" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 812, - "hostname": "fr812.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "dk218.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.194" + "185.245.84.83" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 813, - "hostname": "fr813.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "dk219.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.199" + "185.245.84.163" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 813, - "hostname": "fr813.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "dk219.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.199" + "185.245.84.163" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 814, - "hostname": "fr814.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "dk220.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.204" + "185.245.84.171" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 814, - "hostname": "fr814.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "dk220.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.204" + "185.245.84.171" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 815, - "hostname": "fr815.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "dk221.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.209" + "185.245.84.179" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 815, - "hostname": "fr815.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "dk221.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.209" + "185.245.84.179" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 816, - "hostname": "fr816.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "dk222.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.214" + "185.245.84.187" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 816, - "hostname": "fr816.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "dk222.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.214" + "185.245.84.187" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 817, - "hostname": "fr817.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "dk233.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.219" + "37.120.194.43" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 817, - "hostname": "fr817.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "dk233.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.219" + "37.120.194.43" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 818, - "hostname": "fr818.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "dk234.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.2" + "37.120.194.51" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 818, - "hostname": "fr818.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "dk234.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.2" + "37.120.194.51" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 819, - "hostname": "fr819.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "dk235.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.228" + "37.120.194.59" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 819, - "hostname": "fr819.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "dk235.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.228" + "37.120.194.59" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 820, - "hostname": "fr820.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "dk236.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.233" + "37.120.194.67" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 820, - "hostname": "fr820.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "dk236.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.233" + "37.120.194.67" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 821, - "hostname": "fr821.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "dk237.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.241" + "146.70.80.187" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 821, - "hostname": "fr821.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "dk237.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.241" + "146.70.80.187" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 822, - "hostname": "fr822.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "dk238.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.245" + "37.120.194.75" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 822, - "hostname": "fr822.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "dk238.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.245" + "37.120.194.75" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 823, - "hostname": "fr823.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "dk239.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.224" + "146.70.80.195" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 823, - "hostname": "fr823.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "dk239.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.224" + "146.70.80.195" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 824, - "hostname": "fr824.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "dk240.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.237" + "95.174.65.163" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 824, - "hostname": "fr824.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "dk240.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.237" + "95.174.65.163" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 839, - "hostname": "fr839.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "dk241.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.21" + "95.174.65.171" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 839, - "hostname": "fr839.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "dk241.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.16.21" + "95.174.65.171" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 842, - "hostname": "fr842.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "dk242.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.5" + "37.120.145.83" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 842, - "hostname": "fr842.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "dk242.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.5" + "37.120.145.83" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 843, - "hostname": "fr843.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "dk243.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.30" + "37.120.145.91" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 843, - "hostname": "fr843.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "dk243.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.30" + "37.120.145.91" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 844, - "hostname": "fr844.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 244, + "hostname": "dk244.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.25" + "146.70.80.163" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 844, - "hostname": "fr844.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 244, + "hostname": "dk244.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.25" + "146.70.80.163" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 845, - "hostname": "fr845.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 245, + "hostname": "dk245.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.20" + "146.70.80.171" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 845, - "hostname": "fr845.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 245, + "hostname": "dk245.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.20" + "146.70.80.171" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 846, - "hostname": "fr846.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 246, + "hostname": "dk246.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.35" + "146.70.80.179" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 846, - "hostname": "fr846.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 246, + "hostname": "dk246.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.35" + "146.70.80.179" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 847, - "hostname": "fr847.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "dk256.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.15" + "85.190.238.1" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 847, - "hostname": "fr847.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "dk256.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.15" + "85.190.238.1" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 848, - "hostname": "fr848.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "dk257.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.1" + "85.190.238.3" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 848, - "hostname": "fr848.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "dk257.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.1" + "85.190.238.3" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 849, - "hostname": "fr849.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "dk258.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.10" + "85.190.238.5" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 849, - "hostname": "fr849.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "dk258.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.10" + "85.190.238.5" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 852, - "hostname": "fr852.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "dk259.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.45" + "85.190.238.7" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 852, - "hostname": "fr852.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "dk259.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.45" + "85.190.238.7" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 853, - "hostname": "fr853.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "dk260.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.50" + "85.190.238.9" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 853, - "hostname": "fr853.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "dk260.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.50" + "85.190.238.9" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 854, - "hostname": "fr854.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "dk261.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.55" + "85.190.238.11" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 854, - "hostname": "fr854.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "dk261.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.55" + "85.190.238.11" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 855, - "hostname": "fr855.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "dk262.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.15.66" + "85.190.238.13" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 855, - "hostname": "fr855.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "dk262.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.15.66" + "85.190.238.13" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 856, - "hostname": "fr856.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "dk263.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.15.76" + "85.190.238.15" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 856, - "hostname": "fr856.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "dk263.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.15.76" + "85.190.238.15" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 857, - "hostname": "fr857.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "dk264.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.15.81" + "85.190.238.17" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 857, - "hostname": "fr857.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "dk264.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.15.81" + "85.190.238.17" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 858, - "hostname": "fr858.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "dk265.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.40" + "85.190.238.19" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 858, - "hostname": "fr858.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "dk265.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.40" + "85.190.238.19" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 859, - "hostname": "fr859.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "dk266.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.15.71" + "85.190.238.21" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 859, - "hostname": "fr859.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "dk266.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.15.71" + "85.190.238.21" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 860, - "hostname": "fr860.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "dk267.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.15.86" + "85.190.238.23" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 860, - "hostname": "fr860.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "dk267.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.15.86" + "85.190.238.23" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 861, - "hostname": "fr861.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "dk268.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.15.89" + "85.190.238.25" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 861, - "hostname": "fr861.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "dk268.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "138.199.15.89" + "85.190.238.25" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 862, - "hostname": "fr862.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "dk269.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.130" + "85.190.238.27" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 862, - "hostname": "fr862.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "dk269.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.130" + "85.190.238.27" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 863, - "hostname": "fr863.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "dk270.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.133" + "85.190.238.29" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 863, - "hostname": "fr863.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "dk270.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.133" + "85.190.238.29" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 864, - "hostname": "fr864.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "dk271.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.136" + "85.190.238.31" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 864, - "hostname": "fr864.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "dk271.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.136" + "85.190.238.31" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 865, - "hostname": "fr865.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "dk272.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.139" + "85.190.238.33" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 865, - "hostname": "fr865.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "dk272.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.139" + "85.190.238.33" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 866, - "hostname": "fr866.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "dk273.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.142" + "85.190.238.35" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 866, - "hostname": "fr866.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "dk273.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.142" + "85.190.238.35" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 867, - "hostname": "fr867.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "dk274.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.145" + "85.190.238.37" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 867, - "hostname": "fr867.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "dk274.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.145" + "85.190.238.37" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 882, - "hostname": "fr882.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "dk275.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.148" + "85.190.238.39" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 882, - "hostname": "fr882.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "dk275.nordvpn.com", + "wgpubkey": "EHL1zeXjZEJlqtFA8qaRVuvl0zR4skbC/AjiG66CLCc=", "ips": [ - "178.249.212.148" + "85.190.238.39" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 883, - "hostname": "fr883.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 276, + "hostname": "dk276.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.151" + "149.50.217.246" ] }, { - "vpn": "wireguard", - "country": "France", + "vpn": "openvpn", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 883, - "hostname": "fr883.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 277, + "hostname": "dk277.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "178.249.212.151" + "149.50.217.248" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 884, - "hostname": "fr884.nordvpn.com", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 278, + "hostname": "dk278.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.212.154" + "149.50.217.114" ] }, { - "vpn": "wireguard", - "country": "France", + "vpn": "openvpn", + "country": "Denmark", "region": "Europe", - "city": "Marseille", - "number": 884, - "hostname": "fr884.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Copenhagen", + "categories": [ + "Dedicated IP" + ], + "number": 279, + "hostname": "dk279.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "178.249.212.154" + "149.50.217.250" ] }, { "vpn": "openvpn", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 885, - "hostname": "fr885.nordvpn.com", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "do1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.16.177" + "95.214.113.1" ] }, { "vpn": "wireguard", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 885, - "hostname": "fr885.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "do1.nordvpn.com", + "wgpubkey": "VA3tFWv23VQkeEe58pg6UndnPeWAPCE1wUhgmJg3vDE=", "ips": [ - "138.199.16.177" + "95.214.113.1" ] }, { "vpn": "openvpn", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 926, - "hostname": "fr926.nordvpn.com", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "do2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.1" + "95.214.113.3" ] }, { "vpn": "wireguard", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 926, - "hostname": "fr926.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "country": "Dominican Republic", + "region": "The Americas", + "city": "Santo Domingo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "do2.nordvpn.com", + "wgpubkey": "VA3tFWv23VQkeEe58pg6UndnPeWAPCE1wUhgmJg3vDE=", "ips": [ - "185.230.139.1" + "95.214.113.3" ] }, { "vpn": "openvpn", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 927, - "hostname": "fr927.nordvpn.com", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ec1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.18" + "95.214.114.1" ] }, { "vpn": "wireguard", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 927, - "hostname": "fr927.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ec1.nordvpn.com", + "wgpubkey": "SfK8cC8yGjXbnsvzXi8OYJYS0JIpC6jgYaO9umtLPAc=", "ips": [ - "185.230.139.18" + "95.214.114.1" ] }, { "vpn": "openvpn", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 928, - "hostname": "fr928.nordvpn.com", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ec2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.35" + "95.214.114.3" ] }, { "vpn": "wireguard", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 928, - "hostname": "fr928.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "country": "Ecuador", + "region": "The Americas", + "city": "Quito", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ec2.nordvpn.com", + "wgpubkey": "SfK8cC8yGjXbnsvzXi8OYJYS0JIpC6jgYaO9umtLPAc=", "ips": [ - "185.230.139.35" + "95.214.114.3" ] }, { "vpn": "openvpn", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 929, - "hostname": "fr929.nordvpn.com", - "tcp": true, - "udp": true, + "country": "Egypt", + "region": "Africa, the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "eg1.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.230.139.52" + "212.97.66.1" ] }, { "vpn": "wireguard", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 929, - "hostname": "fr929.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "country": "Egypt", + "region": "Africa, the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "eg1.nordvpn.com", + "wgpubkey": "gKi0sidj26eNeYuy4Z/DNzabU+Z41bzpA2w9WtjrqlY=", "ips": [ - "185.230.139.52" + "212.97.66.1" ] }, { "vpn": "openvpn", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 930, - "hostname": "fr930.nordvpn.com", + "country": "Egypt", + "region": "Africa, the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "eg2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.69" + "212.97.66.3" ] }, { "vpn": "wireguard", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 930, - "hostname": "fr930.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "country": "Egypt", + "region": "Africa, the Middle East and India", + "city": "Cairo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "eg2.nordvpn.com", + "wgpubkey": "gKi0sidj26eNeYuy4Z/DNzabU+Z41bzpA2w9WtjrqlY=", "ips": [ - "185.230.139.69" + "212.97.66.3" ] }, { "vpn": "openvpn", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 931, - "hostname": "fr931.nordvpn.com", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "sv1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.86" + "95.214.115.1" ] }, { "vpn": "wireguard", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 931, - "hostname": "fr931.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "sv1.nordvpn.com", + "wgpubkey": "z6bC/H0qsJlgppTbEhPjGX4coJdPRTr6e13mpCHdTmo=", "ips": [ - "185.230.139.86" + "95.214.115.1" ] }, { "vpn": "openvpn", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 932, - "hostname": "fr932.nordvpn.com", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "sv2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.103" + "95.214.115.3" ] }, { "vpn": "wireguard", - "country": "France", - "region": "Europe", - "city": "Marseille", - "number": 932, - "hostname": "fr932.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "country": "El Salvador", + "region": "The Americas", + "city": "San Salvador", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "sv2.nordvpn.com", + "wgpubkey": "z6bC/H0qsJlgppTbEhPjGX4coJdPRTr6e13mpCHdTmo=", "ips": [ - "185.230.139.103" + "95.214.115.3" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 933, - "hostname": "fr933.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ee64.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.119" + "85.190.239.100" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 933, - "hostname": "fr933.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ee64.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "185.230.139.119" + "85.190.239.100" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 934, - "hostname": "fr934.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ee65.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.140" + "85.190.239.102" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 934, - "hostname": "fr934.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ee65.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "185.230.139.140" + "85.190.239.102" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 935, - "hostname": "fr935.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ee66.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.156" + "85.190.239.104" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 935, - "hostname": "fr935.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ee66.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "185.230.139.156" + "85.190.239.104" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 936, - "hostname": "fr936.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ee67.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.172" + "85.190.239.106" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 936, - "hostname": "fr936.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ee67.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "185.230.139.172" + "85.190.239.106" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 937, - "hostname": "fr937.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ee68.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.188" + "85.190.239.108" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 937, - "hostname": "fr937.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ee68.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "185.230.139.188" + "85.190.239.108" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 938, - "hostname": "fr938.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ee69.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.204" + "85.190.239.110" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 938, - "hostname": "fr938.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ee69.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "185.230.139.204" + "85.190.239.110" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 939, - "hostname": "fr939.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ee70.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.220" + "85.190.239.112" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 939, - "hostname": "fr939.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ee70.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "185.230.139.220" + "85.190.239.112" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 940, - "hostname": "fr940.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ee71.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.139.236" + "85.190.239.114" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Marseille", - "number": 940, - "hostname": "fr940.nordvpn.com", - "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ee71.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "185.230.139.236" + "85.190.239.114" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Paris", - "number": 452, - "hostname": "fr452.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ee72.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.219" + "85.190.239.116" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Paris", - "number": 452, - "hostname": "fr452.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ee72.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "45.152.181.219" + "85.190.239.116" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Paris", - "number": 536, - "hostname": "fr536.nordvpn.com", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ee73.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.139" + "85.190.239.118" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Estonia", "region": "Europe", - "city": "Paris", - "number": 536, - "hostname": "fr536.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Tallinn", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ee73.nordvpn.com", + "wgpubkey": "aPtylGsLlT6D0rZgCaN8vIgrhyyHKwDk2L9sprmffhc=", "ips": [ - "217.138.207.139" + "85.190.239.118" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 537, - "hostname": "fr537.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "fi179.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.147" + "85.202.81.124" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 537, - "hostname": "fr537.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "fi179.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "217.138.207.147" + "85.202.81.124" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 538, - "hostname": "fr538.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "fi180.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.155" + "85.202.81.126" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 538, - "hostname": "fr538.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "fi180.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "217.138.207.155" + "85.202.81.126" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 539, - "hostname": "fr539.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "fi181.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.163" + "85.202.81.133" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 539, - "hostname": "fr539.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "fi181.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "217.138.207.163" + "85.202.81.133" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 540, - "hostname": "fr540.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "fi182.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.195" + "85.202.81.135" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 540, - "hostname": "fr540.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "fi182.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "217.138.207.195" + "85.202.81.135" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 541, - "hostname": "fr541.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "fi183.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.203" + "85.202.81.137" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 541, - "hostname": "fr541.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "fi183.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "217.138.207.203" + "85.202.81.137" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 542, - "hostname": "fr542.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "fi184.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.171" + "85.202.81.139" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 542, - "hostname": "fr542.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "fi184.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "217.138.207.171" + "85.202.81.139" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 543, - "hostname": "fr543.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "fi185.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.179" + "85.202.81.141" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 543, - "hostname": "fr543.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "fi185.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "217.138.207.179" + "85.202.81.141" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 544, - "hostname": "fr544.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "fi186.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.187" + "85.202.81.143" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 544, - "hostname": "fr544.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "fi186.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "217.138.207.187" + "85.202.81.143" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 545, - "hostname": "fr545.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "fi187.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.3" + "85.202.81.145" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 545, - "hostname": "fr545.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "fi187.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.3" + "85.202.81.145" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 546, - "hostname": "fr546.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "fi188.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.6" + "85.202.81.147" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 546, - "hostname": "fr546.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "fi188.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.6" + "85.202.81.147" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 547, - "hostname": "fr547.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "fi189.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.9" + "85.202.81.149" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 547, - "hostname": "fr547.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "fi189.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.9" + "85.202.81.149" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 548, - "hostname": "fr548.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "fi190.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.12" + "85.202.81.151" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 548, - "hostname": "fr548.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "fi190.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.12" + "85.202.81.151" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 549, - "hostname": "fr549.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "fi191.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.15" + "85.202.81.153" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 549, - "hostname": "fr549.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "fi191.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.15" + "85.202.81.153" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 550, - "hostname": "fr550.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "fi192.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.18" + "85.202.81.155" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 550, - "hostname": "fr550.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "fi192.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.18" + "85.202.81.155" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 551, - "hostname": "fr551.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "fi193.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.21" + "85.202.81.157" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 551, - "hostname": "fr551.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "fi193.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.21" + "85.202.81.157" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 552, - "hostname": "fr552.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "fi194.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.24" + "85.202.81.159" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 552, - "hostname": "fr552.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "fi194.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.24" + "85.202.81.159" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 553, - "hostname": "fr553.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "fi195.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.27" + "85.202.81.161" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 553, - "hostname": "fr553.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "fi195.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.27" + "85.202.81.161" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 554, - "hostname": "fr554.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "fi196.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.29" + "85.202.81.163" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 554, - "hostname": "fr554.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "fi196.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "89.40.183.29" + "85.202.81.163" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 555, - "hostname": "fr555.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "fi197.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.18.252" + "85.202.81.165" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 555, - "hostname": "fr555.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "fi197.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "82.102.18.252" + "85.202.81.165" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 589, - "hostname": "fr589.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "fi198.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.35" + "85.202.81.167" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 589, - "hostname": "fr589.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "fi198.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "45.152.181.35" + "85.202.81.167" ] }, { "vpn": "openvpn", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 592, - "hostname": "fr592.nordvpn.com", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "fi199.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.104.185.163" + "85.202.81.169" ] }, { "vpn": "wireguard", - "country": "France", + "country": "Finland", "region": "Europe", - "city": "Paris", - "number": 592, - "hostname": "fr592.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Helsinki", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "fi199.nordvpn.com", + "wgpubkey": "eLZ/KnZ225faKXG6dTGJJggiz7Q0PD919U5TnZ2+EFQ=", "ips": [ - "185.104.185.163" + "85.202.81.169" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 596, - "hostname": "fr596.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "fr789.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.43.133" + "138.199.16.7" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 596, - "hostname": "fr596.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 789, + "hostname": "fr789.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.43.133" + "138.199.16.7" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 597, - "hostname": "fr597.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "fr790.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.43.130" + "138.199.16.12" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 597, - "hostname": "fr597.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 790, + "hostname": "fr790.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.43.130" + "138.199.16.12" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 622, - "hostname": "fr622.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "fr791.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.213.131" + "138.199.16.17" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 622, - "hostname": "fr622.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 791, + "hostname": "fr791.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "185.244.213.131" + "138.199.16.17" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 639, - "hostname": "fr639.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "fr793.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.219.203" + "138.199.16.27" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 639, - "hostname": "fr639.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "fr793.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "139.28.219.203" + "138.199.16.27" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 640, - "hostname": "fr640.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "fr794.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.219.227" + "138.199.16.32" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 640, - "hostname": "fr640.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "fr794.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "139.28.219.227" + "138.199.16.32" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 641, - "hostname": "fr641.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "fr795.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.219.235" + "138.199.16.37" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 641, - "hostname": "fr641.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 795, + "hostname": "fr795.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "139.28.219.235" + "138.199.16.37" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 642, - "hostname": "fr642.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "fr796.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.219.243" + "138.199.16.42" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 642, - "hostname": "fr642.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 796, + "hostname": "fr796.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "139.28.219.243" + "138.199.16.42" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 660, - "hostname": "fr660.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "fr797.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.51" + "138.199.16.47" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 660, - "hostname": "fr660.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 797, + "hostname": "fr797.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.51" + "138.199.16.47" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 661, - "hostname": "fr661.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "fr798.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.59" + "138.199.16.52" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 661, - "hostname": "fr661.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 798, + "hostname": "fr798.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.59" + "138.199.16.52" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 662, - "hostname": "fr662.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "fr799.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.131" + "138.199.16.57" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 662, - "hostname": "fr662.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "fr799.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.131" + "138.199.16.57" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 663, - "hostname": "fr663.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "fr800.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.139" + "138.199.16.62" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 663, - "hostname": "fr663.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "fr800.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.139" + "138.199.16.62" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 664, - "hostname": "fr664.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "fr801.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.147" + "138.199.16.67" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 664, - "hostname": "fr664.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "fr801.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.147" + "138.199.16.67" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 666, - "hostname": "fr666.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "fr802.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.155" + "138.199.16.72" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 666, - "hostname": "fr666.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 802, + "hostname": "fr802.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.155" + "138.199.16.72" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 667, - "hostname": "fr667.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "fr803.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.163" + "138.199.16.77" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 667, - "hostname": "fr667.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 803, + "hostname": "fr803.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.163" + "138.199.16.77" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 668, - "hostname": "fr668.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 804, + "hostname": "fr804.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.171" + "138.199.16.82" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 668, - "hostname": "fr668.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 804, + "hostname": "fr804.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.171" + "138.199.16.82" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 669, - "hostname": "fr669.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 805, + "hostname": "fr805.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.179" + "138.199.16.87" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 669, - "hostname": "fr669.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 805, + "hostname": "fr805.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.179" + "138.199.16.87" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 670, - "hostname": "fr670.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 806, + "hostname": "fr806.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.187" + "138.199.16.92" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 670, - "hostname": "fr670.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 806, + "hostname": "fr806.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.187" + "138.199.16.92" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 671, - "hostname": "fr671.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 807, + "hostname": "fr807.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.42.113" + "138.199.16.97" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 671, - "hostname": "fr671.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 807, + "hostname": "fr807.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.42.113" + "138.199.16.97" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 672, - "hostname": "fr672.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 808, + "hostname": "fr808.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.42.108" + "138.199.16.102" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 672, - "hostname": "fr672.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 808, + "hostname": "fr808.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.42.108" + "138.199.16.102" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 673, - "hostname": "fr673.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 809, + "hostname": "fr809.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.42.103" + "138.199.16.107" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 673, - "hostname": "fr673.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 809, + "hostname": "fr809.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.42.103" + "138.199.16.107" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 674, - "hostname": "fr674.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 810, + "hostname": "fr810.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.42.98" + "138.199.16.112" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 674, - "hostname": "fr674.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 810, + "hostname": "fr810.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.42.98" + "138.199.16.112" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 675, - "hostname": "fr675.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 811, + "hostname": "fr811.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.211" + "138.199.16.117" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 675, - "hostname": "fr675.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 811, + "hostname": "fr811.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.211" + "138.199.16.117" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 676, - "hostname": "fr676.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 812, + "hostname": "fr812.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.219" + "138.199.16.194" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 676, - "hostname": "fr676.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 812, + "hostname": "fr812.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.219" + "138.199.16.194" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 677, - "hostname": "fr677.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 813, + "hostname": "fr813.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.227" + "138.199.16.199" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 677, - "hostname": "fr677.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 813, + "hostname": "fr813.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.227" + "138.199.16.199" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 678, - "hostname": "fr678.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 814, + "hostname": "fr814.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.235" + "138.199.16.204" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 678, - "hostname": "fr678.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 814, + "hostname": "fr814.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.235" + "138.199.16.204" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 679, - "hostname": "fr679.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "fr815.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.243" + "138.199.16.209" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 679, - "hostname": "fr679.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "fr815.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.243" + "138.199.16.209" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 680, - "hostname": "fr680.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "fr816.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.204.251" + "138.199.16.214" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 680, - "hostname": "fr680.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "fr816.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "37.120.204.251" + "138.199.16.214" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 681, - "hostname": "fr681.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "fr817.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.89.174.115" + "138.199.16.219" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 681, - "hostname": "fr681.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "fr817.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.89.174.115" + "138.199.16.219" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 682, - "hostname": "fr682.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "fr818.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.89.174.123" + "138.199.16.2" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 682, - "hostname": "fr682.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "fr818.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.89.174.123" + "138.199.16.2" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 683, - "hostname": "fr683.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "fr819.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.3" + "138.199.16.228" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 683, - "hostname": "fr683.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "fr819.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.3" + "138.199.16.228" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 684, - "hostname": "fr684.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "fr820.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.11" + "138.199.16.233" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 684, - "hostname": "fr684.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "fr820.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.11" + "138.199.16.233" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 685, - "hostname": "fr685.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "fr821.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.19" + "138.199.16.241" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 685, - "hostname": "fr685.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "fr821.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.19" + "138.199.16.241" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 686, - "hostname": "fr686.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "fr822.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.27" + "138.199.16.245" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 686, - "hostname": "fr686.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "fr822.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.27" + "138.199.16.245" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 687, - "hostname": "fr687.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "fr823.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.43" + "138.199.16.224" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 687, - "hostname": "fr687.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "fr823.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.43" + "138.199.16.224" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 688, - "hostname": "fr688.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "fr824.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.51" + "138.199.16.237" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 688, - "hostname": "fr688.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "fr824.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.51" + "138.199.16.237" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 695, - "hostname": "fr695.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "fr839.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.147" + "138.199.16.21" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 695, - "hostname": "fr695.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "fr839.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.147" + "138.199.16.21" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 696, - "hostname": "fr696.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "fr842.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.155" + "178.249.212.5" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 696, - "hostname": "fr696.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "fr842.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.155" + "178.249.212.5" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 697, - "hostname": "fr697.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "fr843.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.163" + "178.249.212.30" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 697, - "hostname": "fr697.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "fr843.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.163" + "178.249.212.30" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 698, - "hostname": "fr698.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "fr844.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.171" + "178.249.212.25" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 698, - "hostname": "fr698.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "fr844.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.171" + "178.249.212.25" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 699, - "hostname": "fr699.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "fr845.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.179" + "178.249.212.20" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 699, - "hostname": "fr699.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "fr845.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.179" + "178.249.212.20" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 700, - "hostname": "fr700.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "fr846.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.187" + "178.249.212.35" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 700, - "hostname": "fr700.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "fr846.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.187" + "178.249.212.35" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 701, - "hostname": "fr701.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "fr847.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.195" + "178.249.212.15" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 701, - "hostname": "fr701.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "fr847.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.195" + "178.249.212.15" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 702, - "hostname": "fr702.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "fr848.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.203" + "178.249.212.1" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 702, - "hostname": "fr702.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "fr848.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.203" + "178.249.212.1" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 703, - "hostname": "fr703.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "fr849.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.211" + "178.249.212.10" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 703, - "hostname": "fr703.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "fr849.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.211" + "178.249.212.10" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 710, - "hostname": "fr710.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "fr852.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.181.131" + "178.249.212.45" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 710, - "hostname": "fr710.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "fr852.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "45.152.181.131" + "178.249.212.45" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 738, - "hostname": "fr738.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "fr853.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.43.139" + "178.249.212.50" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 738, - "hostname": "fr738.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "fr853.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.43.139" + "178.249.212.50" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 739, - "hostname": "fr739.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "fr854.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.154" + "178.249.212.55" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 739, - "hostname": "fr739.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "fr854.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.154" + "178.249.212.55" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 740, - "hostname": "fr740.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 855, + "hostname": "fr855.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.43.154" + "138.199.15.66" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 740, - "hostname": "fr740.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 855, + "hostname": "fr855.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.43.154" + "138.199.15.66" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 741, - "hostname": "fr741.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 856, + "hostname": "fr856.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.130" + "138.199.15.76" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 741, - "hostname": "fr741.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 856, + "hostname": "fr856.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.130" + "138.199.15.76" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 742, - "hostname": "fr742.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "fr857.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.133" + "138.199.15.81" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 742, - "hostname": "fr742.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "fr857.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.133" + "138.199.15.81" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 743, - "hostname": "fr743.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "fr858.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.136" + "178.249.212.40" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 743, - "hostname": "fr743.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "fr858.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.136" + "178.249.212.40" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 744, - "hostname": "fr744.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "fr859.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.139" + "138.199.15.71" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 744, - "hostname": "fr744.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "fr859.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.139" + "138.199.15.71" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 745, - "hostname": "fr745.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "fr860.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.142" + "138.199.15.86" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 745, - "hostname": "fr745.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "fr860.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.142" + "138.199.15.86" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 746, - "hostname": "fr746.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "fr861.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.43.142" + "138.199.15.89" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 746, - "hostname": "fr746.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "fr861.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.43.142" + "138.199.15.89" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 747, - "hostname": "fr747.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 862, + "hostname": "fr862.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.43.145" + "178.249.212.130" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 747, - "hostname": "fr747.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 862, + "hostname": "fr862.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.43.145" + "178.249.212.130" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 748, - "hostname": "fr748.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "fr863.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.43.148" + "178.249.212.133" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 748, - "hostname": "fr748.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "fr863.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.43.148" + "178.249.212.133" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 749, - "hostname": "fr749.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "fr864.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.43.151" + "178.249.212.136" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 749, - "hostname": "fr749.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "fr864.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "84.17.43.151" + "178.249.212.136" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 750, - "hostname": "fr750.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "fr865.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.145" + "178.249.212.139" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 750, - "hostname": "fr750.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "fr865.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.145" + "178.249.212.139" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 751, - "hostname": "fr751.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "fr866.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.148" + "178.249.212.142" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 751, - "hostname": "fr751.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "fr866.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.148" + "178.249.212.142" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 752, - "hostname": "fr752.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "fr867.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.151" + "178.249.212.145" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 752, - "hostname": "fr752.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "fr867.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.151" + "178.249.212.145" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 755, - "hostname": "fr755.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "fr882.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.160" + "178.249.212.148" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 755, - "hostname": "fr755.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "fr882.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.160" + "178.249.212.148" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 756, - "hostname": "fr756.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "fr883.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.163" + "178.249.212.151" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 756, - "hostname": "fr756.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "fr883.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.163" + "178.249.212.151" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 757, - "hostname": "fr757.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "fr884.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.166" + "178.249.212.154" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 757, - "hostname": "fr757.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "fr884.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.166" + "178.249.212.154" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 758, - "hostname": "fr758.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "fr885.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.169" + "138.199.16.177" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 758, - "hostname": "fr758.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "fr885.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.169" + "138.199.16.177" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 759, - "hostname": "fr759.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 926, + "hostname": "fr926.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.172" + "185.230.139.1" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 759, - "hostname": "fr759.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 926, + "hostname": "fr926.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.172" + "185.230.139.1" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 760, - "hostname": "fr760.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 927, + "hostname": "fr927.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.175" + "185.230.139.18" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 760, - "hostname": "fr760.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 927, + "hostname": "fr927.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.175" + "185.230.139.18" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 761, - "hostname": "fr761.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 928, + "hostname": "fr928.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.178" + "185.230.139.35" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 761, - "hostname": "fr761.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 928, + "hostname": "fr928.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.178" + "185.230.139.35" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 762, - "hostname": "fr762.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 929, + "hostname": "fr929.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.181" + "185.230.139.52" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 762, - "hostname": "fr762.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 929, + "hostname": "fr929.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.181" + "185.230.139.52" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 763, - "hostname": "fr763.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 930, + "hostname": "fr930.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.184" + "185.230.139.69" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 763, - "hostname": "fr763.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 930, + "hostname": "fr930.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.184" + "185.230.139.69" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 764, - "hostname": "fr764.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 931, + "hostname": "fr931.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.56.186" + "185.230.139.86" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 764, - "hostname": "fr764.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 931, + "hostname": "fr931.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "143.244.56.186" + "185.230.139.86" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 765, - "hostname": "fr765.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 932, + "hostname": "fr932.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.130" + "185.230.139.103" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 765, - "hostname": "fr765.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 932, + "hostname": "fr932.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "138.199.47.130" + "185.230.139.103" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 766, - "hostname": "fr766.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 933, + "hostname": "fr933.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.133" + "185.230.139.119" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 766, - "hostname": "fr766.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 933, + "hostname": "fr933.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "138.199.47.133" + "185.230.139.119" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 767, - "hostname": "fr767.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "fr934.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.136" + "185.230.139.140" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 767, - "hostname": "fr767.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "fr934.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "138.199.47.136" + "185.230.139.140" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 768, - "hostname": "fr768.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "fr935.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.139" + "185.230.139.156" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 768, - "hostname": "fr768.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", - "ips": [ - "138.199.47.139" - ] + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "fr935.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", + "ips": [ + "185.230.139.156" + ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 769, - "hostname": "fr769.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 936, + "hostname": "fr936.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.142" + "185.230.139.172" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 769, - "hostname": "fr769.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 936, + "hostname": "fr936.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "138.199.47.142" + "185.230.139.172" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 770, - "hostname": "fr770.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 937, + "hostname": "fr937.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.145" + "185.230.139.188" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 770, - "hostname": "fr770.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 937, + "hostname": "fr937.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "138.199.47.145" + "185.230.139.188" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 771, - "hostname": "fr771.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 938, + "hostname": "fr938.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.148" + "185.230.139.204" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 771, - "hostname": "fr771.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 938, + "hostname": "fr938.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "138.199.47.148" + "185.230.139.204" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 772, - "hostname": "fr772.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 939, + "hostname": "fr939.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.151" + "185.230.139.220" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 772, - "hostname": "fr772.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 939, + "hostname": "fr939.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "138.199.47.151" + "185.230.139.220" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 773, - "hostname": "fr773.nordvpn.com", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 940, + "hostname": "fr940.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.154" + "185.230.139.236" ] }, { "vpn": "wireguard", "country": "France", "region": "Europe", - "city": "Paris", - "number": 773, - "hostname": "fr773.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 940, + "hostname": "fr940.nordvpn.com", + "wgpubkey": "VkrbtQHNdEeX8m71354tyzMvrkP14BNQM/aqiYpBbBk=", "ips": [ - "138.199.47.154" + "185.230.139.236" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 774, - "hostname": "fr774.nordvpn.com", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 949, + "hostname": "fr949.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.157" + "178.249.212.204" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 774, - "hostname": "fr774.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 950, + "hostname": "fr950.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "138.199.47.157" + "178.249.212.206" ] }, { "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 775, - "hostname": "fr775.nordvpn.com", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 951, + "hostname": "fr951.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.160" + "178.249.212.199" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "France", "region": "Europe", - "city": "Paris", - "number": 775, - "hostname": "fr775.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "city": "Marseille", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 952, + "hostname": "fr952.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "138.199.47.160" + "178.249.212.201" ] }, { @@ -82184,12 +90731,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 776, - "hostname": "fr776.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-fr10.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.163" + "89.35.30.163" ] }, { @@ -82197,11 +90747,14 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 776, - "hostname": "fr776.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-fr10.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "138.199.47.163" + "89.35.30.163" ] }, { @@ -82209,12 +90762,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 777, - "hostname": "fr777.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-fr11.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.166" + "89.35.30.164" ] }, { @@ -82222,11 +90778,14 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 777, - "hostname": "fr777.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-fr11.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "138.199.47.166" + "89.35.30.164" ] }, { @@ -82234,12 +90793,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 778, - "hostname": "fr778.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "uk-fr16.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.169" + "217.146.90.2" ] }, { @@ -82247,11 +90809,14 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 778, - "hostname": "fr778.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "uk-fr16.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "138.199.47.169" + "217.146.90.2" ] }, { @@ -82259,12 +90824,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 779, - "hostname": "fr779.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "uk-fr17.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.172" + "217.146.90.3" ] }, { @@ -82272,11 +90840,14 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 779, - "hostname": "fr779.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "uk-fr17.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "138.199.47.172" + "217.146.90.3" ] }, { @@ -82284,12 +90855,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 780, - "hostname": "fr780.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 18, + "hostname": "uk-fr18.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.175" + "89.238.191.197" ] }, { @@ -82297,11 +90871,14 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 780, - "hostname": "fr780.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 18, + "hostname": "uk-fr18.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "138.199.47.175" + "89.238.191.197" ] }, { @@ -82309,12 +90886,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 781, - "hostname": "fr781.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 19, + "hostname": "uk-fr19.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.47.178" + "89.238.191.198" ] }, { @@ -82322,11 +90902,14 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 781, - "hostname": "fr781.nordvpn.com", + "categories": [ + "Double VPN" + ], + "number": 19, + "hostname": "uk-fr19.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "138.199.47.178" + "89.238.191.198" ] }, { @@ -82334,24 +90917,31 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 825, - "hostname": "fr825.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 439, + "hostname": "fr439.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.207.131" + "185.93.2.199" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "France", "region": "Europe", "city": "Paris", - "number": 825, - "hostname": "fr825.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "categories": [ + "Dedicated IP" + ], + "number": 440, + "hostname": "fr440.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "217.138.207.131" + "185.93.2.206" ] }, { @@ -82359,12 +90949,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 826, - "hostname": "fr826.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 452, + "hostname": "fr452.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.183.227" + "45.152.181.219" ] }, { @@ -82372,11 +90966,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 826, - "hostname": "fr826.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 452, + "hostname": "fr452.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "89.40.183.227" + "45.152.181.219" ] }, { @@ -82384,12 +90982,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 827, - "hostname": "fr827.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "fr536.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.3" + "217.138.207.139" ] }, { @@ -82397,11 +90999,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 827, - "hostname": "fr827.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "fr536.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.3" + "217.138.207.139" ] }, { @@ -82409,12 +91015,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 828, - "hostname": "fr828.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "fr537.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.6" + "217.138.207.147" ] }, { @@ -82422,11 +91032,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 828, - "hostname": "fr828.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "fr537.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.6" + "217.138.207.147" ] }, { @@ -82434,12 +91048,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 829, - "hostname": "fr829.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "fr538.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.9" + "217.138.207.155" ] }, { @@ -82447,11 +91065,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 829, - "hostname": "fr829.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "fr538.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.9" + "217.138.207.155" ] }, { @@ -82459,12 +91081,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 830, - "hostname": "fr830.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "fr539.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.21" + "217.138.207.163" ] }, { @@ -82472,11 +91098,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 830, - "hostname": "fr830.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "fr539.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.21" + "217.138.207.163" ] }, { @@ -82484,12 +91114,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 831, - "hostname": "fr831.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "fr540.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.18" + "217.138.207.195" ] }, { @@ -82497,11 +91131,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 831, - "hostname": "fr831.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "fr540.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.18" + "217.138.207.195" ] }, { @@ -82509,12 +91147,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 832, - "hostname": "fr832.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "fr541.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.12" + "217.138.207.203" ] }, { @@ -82522,11 +91164,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 832, - "hostname": "fr832.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "fr541.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.12" + "217.138.207.203" ] }, { @@ -82534,12 +91180,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 833, - "hostname": "fr833.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "fr542.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.15" + "217.138.207.171" ] }, { @@ -82547,11 +91197,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 833, - "hostname": "fr833.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "fr542.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.15" + "217.138.207.171" ] }, { @@ -82559,12 +91213,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 834, - "hostname": "fr834.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "fr543.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.24" + "217.138.207.179" ] }, { @@ -82572,11 +91230,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 834, - "hostname": "fr834.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "fr543.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.24" + "217.138.207.179" ] }, { @@ -82584,12 +91246,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 835, - "hostname": "fr835.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "fr544.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.27" + "217.138.207.187" ] }, { @@ -82597,11 +91263,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 835, - "hostname": "fr835.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "fr544.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.27" + "217.138.207.187" ] }, { @@ -82609,12 +91279,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 836, - "hostname": "fr836.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "fr545.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.30" + "89.40.183.3" ] }, { @@ -82622,11 +91296,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 836, - "hostname": "fr836.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "fr545.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.30" + "89.40.183.3" ] }, { @@ -82634,12 +91312,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 837, - "hostname": "fr837.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "fr546.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.33" + "89.40.183.6" ] }, { @@ -82647,11 +91329,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 837, - "hostname": "fr837.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "fr546.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.33" + "89.40.183.6" ] }, { @@ -82659,12 +91345,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 838, - "hostname": "fr838.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "fr547.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.217.36" + "89.40.183.9" ] }, { @@ -82672,11 +91362,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 838, - "hostname": "fr838.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "fr547.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "37.19.217.36" + "89.40.183.9" ] }, { @@ -82684,12 +91378,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 840, - "hostname": "fr840.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "fr548.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.18.11" + "89.40.183.12" ] }, { @@ -82697,11 +91395,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 840, - "hostname": "fr840.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "fr548.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.18.11" + "89.40.183.12" ] }, { @@ -82709,12 +91411,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 841, - "hostname": "fr841.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "fr549.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.59.249.179" + "89.40.183.15" ] }, { @@ -82722,11 +91428,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 841, - "hostname": "fr841.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "fr549.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.59.249.179" + "89.40.183.15" ] }, { @@ -82734,12 +91444,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 868, - "hostname": "fr868.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "fr550.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.195" + "89.40.183.18" ] }, { @@ -82747,11 +91461,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 868, - "hostname": "fr868.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "fr550.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.105.195" + "89.40.183.18" ] }, { @@ -82759,12 +91477,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 869, - "hostname": "fr869.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "fr551.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.203" + "89.40.183.21" ] }, { @@ -82772,11 +91494,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 869, - "hostname": "fr869.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "fr551.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.105.203" + "89.40.183.21" ] }, { @@ -82784,12 +91510,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 870, - "hostname": "fr870.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "fr552.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.211" + "89.40.183.24" ] }, { @@ -82797,11 +91527,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 870, - "hostname": "fr870.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "fr552.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.105.211" + "89.40.183.24" ] }, { @@ -82809,12 +91543,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 871, - "hostname": "fr871.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "fr553.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.219" + "89.40.183.27" ] }, { @@ -82822,11 +91560,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 871, - "hostname": "fr871.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "fr553.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.105.219" + "89.40.183.27" ] }, { @@ -82834,12 +91576,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 872, - "hostname": "fr872.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "fr554.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.227" + "89.40.183.29" ] }, { @@ -82847,11 +91593,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 872, - "hostname": "fr872.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "fr554.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.105.227" + "89.40.183.29" ] }, { @@ -82859,12 +91609,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 873, - "hostname": "fr873.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "fr555.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.235" + "82.102.18.252" ] }, { @@ -82872,11 +91626,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 873, - "hostname": "fr873.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "fr555.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.105.235" + "82.102.18.252" ] }, { @@ -82884,24 +91642,31 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 874, - "hostname": "fr874.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 577, + "hostname": "fr577.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.243" + "84.17.42.118" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "France", "region": "Europe", "city": "Paris", - "number": 874, - "hostname": "fr874.nordvpn.com", - "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", + "categories": [ + "Dedicated IP" + ], + "number": 578, + "hostname": "fr578.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "146.70.105.243" + "84.17.42.119" ] }, { @@ -82909,12 +91674,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 875, - "hostname": "fr875.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "fr589.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.251" + "45.152.181.35" ] }, { @@ -82922,11 +91691,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 875, - "hostname": "fr875.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "fr589.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.105.251" + "45.152.181.35" ] }, { @@ -82934,12 +91707,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 876, - "hostname": "fr876.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "fr592.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.105.155" + "185.104.185.163" ] }, { @@ -82947,11 +91724,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 876, - "hostname": "fr876.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "fr592.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.105.155" + "185.104.185.163" ] }, { @@ -82959,12 +91740,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 877, - "hostname": "fr877.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "fr596.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.68.99" + "84.17.43.133" ] }, { @@ -82972,11 +91757,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 877, - "hostname": "fr877.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "fr596.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.68.99" + "84.17.43.133" ] }, { @@ -82984,12 +91773,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 878, - "hostname": "fr878.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "fr597.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.68.107" + "84.17.43.130" ] }, { @@ -82997,11 +91790,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 878, - "hostname": "fr878.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "fr597.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.68.107" + "84.17.43.130" ] }, { @@ -83009,12 +91806,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 879, - "hostname": "fr879.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "fr622.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.68.155" + "185.244.213.131" ] }, { @@ -83022,11 +91823,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 879, - "hostname": "fr879.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "fr622.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.68.155" + "185.244.213.131" ] }, { @@ -83034,12 +91839,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 880, - "hostname": "fr880.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "fr639.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.68.179" + "139.28.219.203" ] }, { @@ -83047,11 +91856,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 880, - "hostname": "fr880.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "fr639.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.68.179" + "139.28.219.203" ] }, { @@ -83059,12 +91872,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 881, - "hostname": "fr881.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "fr640.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.68.187" + "139.28.219.227" ] }, { @@ -83072,11 +91889,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 881, - "hostname": "fr881.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "fr640.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "146.70.68.187" + "139.28.219.227" ] }, { @@ -83084,12 +91905,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 886, - "hostname": "fr886.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "fr641.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.1" + "139.28.219.235" ] }, { @@ -83097,11 +91922,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 886, - "hostname": "fr886.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "fr641.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.1" + "139.28.219.235" ] }, { @@ -83109,12 +91938,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 887, - "hostname": "fr887.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "fr642.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.12" + "139.28.219.243" ] }, { @@ -83122,11 +91955,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 887, - "hostname": "fr887.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "fr642.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.12" + "139.28.219.243" ] }, { @@ -83134,12 +91971,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 888, - "hostname": "fr888.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "fr660.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.23" + "37.120.204.51" ] }, { @@ -83147,11 +91988,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 888, - "hostname": "fr888.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "fr660.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.23" + "37.120.204.51" ] }, { @@ -83159,12 +92004,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 889, - "hostname": "fr889.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "fr661.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.34" + "37.120.204.59" ] }, { @@ -83172,11 +92021,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 889, - "hostname": "fr889.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "fr661.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.34" + "37.120.204.59" ] }, { @@ -83184,12 +92037,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 890, - "hostname": "fr890.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "fr662.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.45" + "37.120.204.131" ] }, { @@ -83197,11 +92054,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 890, - "hostname": "fr890.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "fr662.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.45" + "37.120.204.131" ] }, { @@ -83209,12 +92070,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 891, - "hostname": "fr891.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "fr663.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.56" + "37.120.204.139" ] }, { @@ -83222,11 +92087,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 891, - "hostname": "fr891.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "fr663.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.56" + "37.120.204.139" ] }, { @@ -83234,12 +92103,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 892, - "hostname": "fr892.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "fr664.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.67" + "37.120.204.147" ] }, { @@ -83247,11 +92120,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 892, - "hostname": "fr892.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "fr664.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.67" + "37.120.204.147" ] }, { @@ -83259,12 +92136,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 893, - "hostname": "fr893.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "fr666.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.78" + "37.120.204.155" ] }, { @@ -83272,11 +92153,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 893, - "hostname": "fr893.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "fr666.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.78" + "37.120.204.155" ] }, { @@ -83284,12 +92169,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 894, - "hostname": "fr894.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "fr667.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.89" + "37.120.204.163" ] }, { @@ -83297,11 +92186,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 894, - "hostname": "fr894.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "fr667.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.89" + "37.120.204.163" ] }, { @@ -83309,12 +92202,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 895, - "hostname": "fr895.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "fr668.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.187.69.100" + "37.120.204.171" ] }, { @@ -83322,11 +92219,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 895, - "hostname": "fr895.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "fr668.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "31.187.69.100" + "37.120.204.171" ] }, { @@ -83334,12 +92235,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 896, - "hostname": "fr896.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "fr669.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.14" + "37.120.204.179" ] }, { @@ -83347,11 +92252,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 896, - "hostname": "fr896.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "fr669.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.14" + "37.120.204.179" ] }, { @@ -83359,12 +92268,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 897, - "hostname": "fr897.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "fr670.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.15" + "37.120.204.187" ] }, { @@ -83372,11 +92285,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 897, - "hostname": "fr897.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "fr670.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.15" + "37.120.204.187" ] }, { @@ -83384,12 +92301,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 898, - "hostname": "fr898.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "fr671.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.16" + "84.17.42.113" ] }, { @@ -83397,11 +92318,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 898, - "hostname": "fr898.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "fr671.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.16" + "84.17.42.113" ] }, { @@ -83409,12 +92334,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 899, - "hostname": "fr899.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "fr672.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.17" + "84.17.42.108" ] }, { @@ -83422,11 +92351,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 899, - "hostname": "fr899.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "fr672.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.17" + "84.17.42.108" ] }, { @@ -83434,12 +92367,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 900, - "hostname": "fr900.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "fr673.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.18" + "84.17.42.103" ] }, { @@ -83447,11 +92384,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 900, - "hostname": "fr900.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "fr673.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.18" + "84.17.42.103" ] }, { @@ -83459,12 +92400,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 901, - "hostname": "fr901.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "fr674.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.19" + "84.17.42.98" ] }, { @@ -83472,11 +92417,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 901, - "hostname": "fr901.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "fr674.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.19" + "84.17.42.98" ] }, { @@ -83484,12 +92433,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 902, - "hostname": "fr902.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "fr675.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.20" + "37.120.204.211" ] }, { @@ -83497,11 +92450,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 902, - "hostname": "fr902.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "fr675.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.20" + "37.120.204.211" ] }, { @@ -83509,12 +92466,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 903, - "hostname": "fr903.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "fr676.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.21" + "37.120.204.219" ] }, { @@ -83522,11 +92483,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 903, - "hostname": "fr903.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "fr676.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.21" + "37.120.204.219" ] }, { @@ -83534,12 +92499,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 904, - "hostname": "fr904.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "fr677.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.22" + "37.120.204.227" ] }, { @@ -83547,11 +92516,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 904, - "hostname": "fr904.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "fr677.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.22" + "37.120.204.227" ] }, { @@ -83559,12 +92532,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 905, - "hostname": "fr905.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 678, + "hostname": "fr678.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.23" + "37.120.204.235" ] }, { @@ -83572,11 +92549,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 905, - "hostname": "fr905.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 678, + "hostname": "fr678.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.23" + "37.120.204.235" ] }, { @@ -83584,12 +92565,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 906, - "hostname": "fr906.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 679, + "hostname": "fr679.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.24" + "37.120.204.243" ] }, { @@ -83597,11 +92582,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 906, - "hostname": "fr906.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 679, + "hostname": "fr679.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.24" + "37.120.204.243" ] }, { @@ -83609,12 +92598,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 907, - "hostname": "fr907.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "fr680.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.61.156.25" + "37.120.204.251" ] }, { @@ -83622,11 +92615,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 907, - "hostname": "fr907.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 680, + "hostname": "fr680.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.61.156.25" + "37.120.204.251" ] }, { @@ -83634,12 +92631,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 908, - "hostname": "fr908.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "fr681.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.14" + "45.89.174.115" ] }, { @@ -83647,11 +92648,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 908, - "hostname": "fr908.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 681, + "hostname": "fr681.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.14" + "45.89.174.115" ] }, { @@ -83659,12 +92664,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 909, - "hostname": "fr909.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "fr682.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.16" + "45.89.174.123" ] }, { @@ -83672,11 +92681,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 909, - "hostname": "fr909.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 682, + "hostname": "fr682.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.16" + "45.89.174.123" ] }, { @@ -83684,12 +92697,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 910, - "hostname": "fr910.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 683, + "hostname": "fr683.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.18" + "45.152.181.3" ] }, { @@ -83697,11 +92714,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 910, - "hostname": "fr910.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 683, + "hostname": "fr683.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.18" + "45.152.181.3" ] }, { @@ -83709,12 +92730,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 911, - "hostname": "fr911.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "fr684.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.20" + "45.152.181.11" ] }, { @@ -83722,11 +92747,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 911, - "hostname": "fr911.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 684, + "hostname": "fr684.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.20" + "45.152.181.11" ] }, { @@ -83734,12 +92763,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 912, - "hostname": "fr912.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "fr685.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.22" + "45.152.181.19" ] }, { @@ -83747,11 +92780,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 912, - "hostname": "fr912.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 685, + "hostname": "fr685.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.22" + "45.152.181.19" ] }, { @@ -83759,12 +92796,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 913, - "hostname": "fr913.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "fr686.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.24" + "45.152.181.27" ] }, { @@ -83772,11 +92813,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 913, - "hostname": "fr913.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 686, + "hostname": "fr686.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.24" + "45.152.181.27" ] }, { @@ -83784,12 +92829,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 914, - "hostname": "fr914.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 687, + "hostname": "fr687.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.26" + "45.152.181.43" ] }, { @@ -83797,11 +92846,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 914, - "hostname": "fr914.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 687, + "hostname": "fr687.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.26" + "45.152.181.43" ] }, { @@ -83809,12 +92862,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 915, - "hostname": "fr915.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "fr688.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.28" + "45.152.181.51" ] }, { @@ -83822,11 +92879,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 915, - "hostname": "fr915.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 688, + "hostname": "fr688.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.28" + "45.152.181.51" ] }, { @@ -83834,12 +92895,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 916, - "hostname": "fr916.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "fr695.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.30" + "45.152.181.147" ] }, { @@ -83847,11 +92912,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 916, - "hostname": "fr916.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "fr695.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.30" + "45.152.181.147" ] }, { @@ -83859,12 +92928,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 917, - "hostname": "fr917.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "fr696.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.32" + "45.152.181.155" ] }, { @@ -83872,11 +92945,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 917, - "hostname": "fr917.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "fr696.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.32" + "45.152.181.155" ] }, { @@ -83884,12 +92961,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 918, - "hostname": "fr918.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "fr697.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.34" + "45.152.181.163" ] }, { @@ -83897,11 +92978,15 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 918, - "hostname": "fr918.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "fr697.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.34" + "45.152.181.163" ] }, { @@ -83909,12 +92994,16 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 919, - "hostname": "fr919.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "fr698.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.0.36" + "45.152.181.171" ] }, { @@ -83922,4286 +93011,5664 @@ "country": "France", "region": "Europe", "city": "Paris", - "number": 919, - "hostname": "fr919.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "fr698.nordvpn.com", "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "84.247.0.36" + "45.152.181.171" ] }, { "vpn": "openvpn", - "country": "Georgia", + "country": "France", "region": "Europe", - "city": "Tbilisi", - "number": 9, - "hostname": "ge9.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "fr699.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.239.206.147" + "45.152.181.179" ] }, { "vpn": "wireguard", - "country": "Georgia", + "country": "France", "region": "Europe", - "city": "Tbilisi", - "number": 9, - "hostname": "ge9.nordvpn.com", - "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "fr699.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.239.206.147" + "45.152.181.179" ] }, { "vpn": "openvpn", - "country": "Georgia", + "country": "France", "region": "Europe", - "city": "Tbilisi", - "number": 10, - "hostname": "ge10.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "fr700.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.239.206.148" + "45.152.181.187" ] }, { "vpn": "wireguard", - "country": "Georgia", + "country": "France", "region": "Europe", - "city": "Tbilisi", - "number": 10, - "hostname": "ge10.nordvpn.com", - "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 700, + "hostname": "fr700.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.239.206.148" + "45.152.181.187" ] }, { "vpn": "openvpn", - "country": "Georgia", + "country": "France", "region": "Europe", - "city": "Tbilisi", - "number": 11, - "hostname": "ge11.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "fr701.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.239.206.180" + "45.152.181.195" ] }, { "vpn": "wireguard", - "country": "Georgia", + "country": "France", "region": "Europe", - "city": "Tbilisi", - "number": 11, - "hostname": "ge11.nordvpn.com", - "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 701, + "hostname": "fr701.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.239.206.180" + "45.152.181.195" ] }, { "vpn": "openvpn", - "country": "Georgia", + "country": "France", "region": "Europe", - "city": "Tbilisi", - "number": 12, - "hostname": "ge12.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "fr702.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.239.206.182" + "45.152.181.203" ] }, { "vpn": "wireguard", - "country": "Georgia", + "country": "France", "region": "Europe", - "city": "Tbilisi", - "number": 12, - "hostname": "ge12.nordvpn.com", - "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 702, + "hostname": "fr702.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.239.206.182" + "45.152.181.203" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 775, - "hostname": "de775.nordvpn.com", - "tcp": true, - "udp": true, + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "fr703.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "196.240.57.99" + "45.152.181.211" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 775, - "hostname": "de775.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 703, + "hostname": "fr703.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.99" + "45.152.181.211" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 776, - "hostname": "de776.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "fr710.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.107" + "45.152.181.131" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 776, - "hostname": "de776.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "fr710.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.107" + "45.152.181.131" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 777, - "hostname": "de777.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "fr738.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.115" + "84.17.43.139" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 777, - "hostname": "de777.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 738, + "hostname": "fr738.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.115" + "84.17.43.139" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 778, - "hostname": "de778.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "fr739.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.123" + "143.244.56.154" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 778, - "hostname": "de778.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 739, + "hostname": "fr739.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.123" + "143.244.56.154" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 804, - "hostname": "de804.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "fr740.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.155" + "84.17.43.154" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 804, - "hostname": "de804.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 740, + "hostname": "fr740.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.155" + "84.17.43.154" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 805, - "hostname": "de805.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "fr741.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.163" + "143.244.56.130" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 805, - "hostname": "de805.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 741, + "hostname": "fr741.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.163" + "143.244.56.130" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 806, - "hostname": "de806.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "fr742.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.171" + "143.244.56.133" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 806, - "hostname": "de806.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 742, + "hostname": "fr742.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.171" + "143.244.56.133" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 807, - "hostname": "de807.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "fr743.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.179" + "143.244.56.136" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 807, - "hostname": "de807.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 743, + "hostname": "fr743.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.179" + "143.244.56.136" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 808, - "hostname": "de808.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "fr744.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.187" + "143.244.56.139" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 808, - "hostname": "de808.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 744, + "hostname": "fr744.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.187" + "143.244.56.139" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 809, - "hostname": "de809.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "fr745.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.195" + "143.244.56.142" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 809, - "hostname": "de809.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 745, + "hostname": "fr745.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.195" + "143.244.56.142" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 810, - "hostname": "de810.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "fr746.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.203" + "84.17.43.142" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 810, - "hostname": "de810.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 746, + "hostname": "fr746.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.203" + "84.17.43.142" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 811, - "hostname": "de811.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "fr747.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.211" + "84.17.43.145" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 811, - "hostname": "de811.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 747, + "hostname": "fr747.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.211" + "84.17.43.145" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 812, - "hostname": "de812.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "fr748.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.219" + "84.17.43.148" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 812, - "hostname": "de812.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 748, + "hostname": "fr748.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.219" + "84.17.43.148" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 813, - "hostname": "de813.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "fr749.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.227" + "84.17.43.151" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 813, - "hostname": "de813.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 749, + "hostname": "fr749.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.227" + "84.17.43.151" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 921, - "hostname": "de921.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "fr750.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.11" + "143.244.56.145" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 921, - "hostname": "de921.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "fr750.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.11" + "143.244.56.145" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 922, - "hostname": "de922.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "fr751.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.19" + "143.244.56.148" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 922, - "hostname": "de922.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 751, + "hostname": "fr751.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.19" + "143.244.56.148" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 923, - "hostname": "de923.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "fr752.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.35" + "143.244.56.151" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 923, - "hostname": "de923.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 752, + "hostname": "fr752.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.35" + "143.244.56.151" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 924, - "hostname": "de924.nordvpn.com", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 753, + "hostname": "fr753.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.43" + "143.244.56.157" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 924, - "hostname": "de924.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 754, + "hostname": "fr754.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "196.240.57.43" + "143.244.56.158" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 925, - "hostname": "de925.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "fr755.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.51" + "143.244.56.160" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 925, - "hostname": "de925.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 755, + "hostname": "fr755.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.51" + "143.244.56.160" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 936, - "hostname": "de936.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "fr756.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.59" + "143.244.56.163" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 936, - "hostname": "de936.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 756, + "hostname": "fr756.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.59" + "143.244.56.163" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 937, - "hostname": "de937.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "fr757.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.67" + "143.244.56.166" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 937, - "hostname": "de937.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 757, + "hostname": "fr757.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.67" + "143.244.56.166" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 938, - "hostname": "de938.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "fr758.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.75" + "143.244.56.169" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 938, - "hostname": "de938.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 758, + "hostname": "fr758.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.75" + "143.244.56.169" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1067, - "hostname": "de1067.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "fr759.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.83" + "143.244.56.172" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1067, - "hostname": "de1067.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 759, + "hostname": "fr759.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.83" + "143.244.56.172" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1068, - "hostname": "de1068.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "fr760.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.57.91" + "143.244.56.175" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1068, - "hostname": "de1068.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 760, + "hostname": "fr760.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "196.240.57.91" + "143.244.56.175" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1069, - "hostname": "de1069.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "fr761.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.10" + "143.244.56.178" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1069, - "hostname": "de1069.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 761, + "hostname": "fr761.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.10" + "143.244.56.178" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1070, - "hostname": "de1070.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "fr762.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.17" + "143.244.56.181" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1070, - "hostname": "de1070.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 762, + "hostname": "fr762.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.17" + "143.244.56.181" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1071, - "hostname": "de1071.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "fr763.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.24" + "143.244.56.184" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1071, - "hostname": "de1071.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 763, + "hostname": "fr763.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.24" + "143.244.56.184" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1072, - "hostname": "de1072.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "fr764.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.31" + "143.244.56.186" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1072, - "hostname": "de1072.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 764, + "hostname": "fr764.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.31" + "143.244.56.186" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1073, - "hostname": "de1073.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "fr765.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.38" + "138.199.47.130" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1073, - "hostname": "de1073.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 765, + "hostname": "fr765.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.38" + "138.199.47.130" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1074, - "hostname": "de1074.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "fr766.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.45" + "138.199.47.133" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1074, - "hostname": "de1074.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 766, + "hostname": "fr766.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.45" + "138.199.47.133" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1075, - "hostname": "de1075.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "fr767.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.52" + "138.199.47.136" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1075, - "hostname": "de1075.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 767, + "hostname": "fr767.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.52" + "138.199.47.136" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1076, - "hostname": "de1076.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "fr768.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.59" + "138.199.47.139" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1076, - "hostname": "de1076.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 768, + "hostname": "fr768.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.59" + "138.199.47.139" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1077, - "hostname": "de1077.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "fr769.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.66" + "138.199.47.142" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1077, - "hostname": "de1077.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 769, + "hostname": "fr769.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.66" + "138.199.47.142" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1078, - "hostname": "de1078.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "fr770.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.73" + "138.199.47.145" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1078, - "hostname": "de1078.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 770, + "hostname": "fr770.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.73" + "138.199.47.145" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1079, - "hostname": "de1079.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 771, + "hostname": "fr771.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.80" + "138.199.47.148" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1079, - "hostname": "de1079.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 771, + "hostname": "fr771.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.80" + "138.199.47.148" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1080, - "hostname": "de1080.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "fr772.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.87" + "138.199.47.151" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1080, - "hostname": "de1080.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 772, + "hostname": "fr772.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.87" + "138.199.47.151" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1081, - "hostname": "de1081.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "fr773.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.94" + "138.199.47.154" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1081, - "hostname": "de1081.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 773, + "hostname": "fr773.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.94" + "138.199.47.154" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1082, - "hostname": "de1082.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "fr774.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.101" + "138.199.47.157" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1082, - "hostname": "de1082.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 774, + "hostname": "fr774.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.101" + "138.199.47.157" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1083, - "hostname": "de1083.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "fr775.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.108" + "138.199.47.160" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1083, - "hostname": "de1083.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 775, + "hostname": "fr775.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.108" + "138.199.47.160" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1084, - "hostname": "de1084.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 776, + "hostname": "fr776.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.115" + "138.199.47.163" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1084, - "hostname": "de1084.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 776, + "hostname": "fr776.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.115" + "138.199.47.163" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1085, - "hostname": "de1085.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "fr777.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.122" + "138.199.47.166" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1085, - "hostname": "de1085.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 777, + "hostname": "fr777.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.122" + "138.199.47.166" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1086, - "hostname": "de1086.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "fr778.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.129" + "138.199.47.169" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1086, - "hostname": "de1086.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 778, + "hostname": "fr778.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.129" + "138.199.47.169" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1087, - "hostname": "de1087.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "fr779.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.136" + "138.199.47.172" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1087, - "hostname": "de1087.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 779, + "hostname": "fr779.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.136" + "138.199.47.172" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1088, - "hostname": "de1088.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "fr780.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.143" + "138.199.47.175" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1088, - "hostname": "de1088.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 780, + "hostname": "fr780.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.143" + "138.199.47.175" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1089, - "hostname": "de1089.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "fr781.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.149" + "138.199.47.178" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1089, - "hostname": "de1089.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 781, + "hostname": "fr781.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.149" + "138.199.47.178" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1090, - "hostname": "de1090.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "fr825.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.155" + "217.138.207.131" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1090, - "hostname": "de1090.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "fr825.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.155" + "217.138.207.131" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1091, - "hostname": "de1091.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "fr826.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.161" + "89.40.183.227" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1091, - "hostname": "de1091.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "fr826.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.161" + "89.40.183.227" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1092, - "hostname": "de1092.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "fr827.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.167" + "37.19.217.3" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1092, - "hostname": "de1092.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "fr827.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.167" + "37.19.217.3" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1093, - "hostname": "de1093.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "fr828.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.173" + "37.19.217.6" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1093, - "hostname": "de1093.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "fr828.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.173" + "37.19.217.6" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1094, - "hostname": "de1094.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "fr829.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.179" + "37.19.217.9" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1094, - "hostname": "de1094.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "fr829.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.179" + "37.19.217.9" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1095, - "hostname": "de1095.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "fr830.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.185" + "37.19.217.21" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1095, - "hostname": "de1095.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "fr830.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.185" + "37.19.217.21" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1096, - "hostname": "de1096.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "fr831.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.191" + "37.19.217.18" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1096, - "hostname": "de1096.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "fr831.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.191" + "37.19.217.18" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1097, - "hostname": "de1097.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "fr832.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.197" + "37.19.217.12" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1097, - "hostname": "de1097.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "fr832.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.197" + "37.19.217.12" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1098, - "hostname": "de1098.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "fr833.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.235" + "37.19.217.15" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1098, - "hostname": "de1098.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "fr833.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.235" + "37.19.217.15" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1099, - "hostname": "de1099.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "fr834.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.241" + "37.19.217.24" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1099, - "hostname": "de1099.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "fr834.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.241" + "37.19.217.24" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1100, - "hostname": "de1100.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "fr835.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.96.248" + "37.19.217.27" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Berlin", - "number": 1100, - "hostname": "de1100.nordvpn.com", - "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "fr835.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "194.233.96.248" + "37.19.217.27" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 750, - "hostname": "de750.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "fr836.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.120" + "37.19.217.30" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 750, - "hostname": "de750.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "fr836.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.120" + "37.19.217.30" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 785, - "hostname": "de785.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "fr837.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.123" + "37.19.217.33" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 785, - "hostname": "de785.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "fr837.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.123" + "37.19.217.33" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 786, - "hostname": "de786.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 838, + "hostname": "fr838.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.126" + "37.19.217.36" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 786, - "hostname": "de786.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 838, + "hostname": "fr838.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.126" + "37.19.217.36" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 787, - "hostname": "de787.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "fr840.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.129" + "82.102.18.11" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 787, - "hostname": "de787.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "fr840.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.129" + "82.102.18.11" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 788, - "hostname": "de788.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "fr841.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.132" + "194.59.249.179" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 788, - "hostname": "de788.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "fr841.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.132" + "194.59.249.179" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 789, - "hostname": "de789.nordvpn.com", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 850, + "hostname": "fr850.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.135" + "37.19.217.44" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 789, - "hostname": "de789.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 851, + "hostname": "fr851.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "5.180.62.135" + "37.19.217.45" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 793, - "hostname": "de793.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "fr868.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.103.50.43" + "146.70.105.195" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 793, - "hostname": "de793.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "fr868.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "212.103.50.43" + "146.70.105.195" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 794, - "hostname": "de794.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "fr869.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.103.50.51" + "146.70.105.203" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 794, - "hostname": "de794.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "fr869.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "212.103.50.51" + "146.70.105.203" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 799, - "hostname": "de799.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "fr870.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.181.170.204" + "146.70.105.211" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 799, - "hostname": "de799.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "fr870.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "195.181.170.204" + "146.70.105.211" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 800, - "hostname": "de800.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "fr871.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.181.170.194" + "146.70.105.219" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 800, - "hostname": "de800.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "fr871.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "195.181.170.194" + "146.70.105.219" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 801, - "hostname": "de801.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "fr872.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.181.170.199" + "146.70.105.227" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 801, - "hostname": "de801.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "fr872.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "195.181.170.199" + "146.70.105.227" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 822, - "hostname": "de822.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "fr873.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.138" + "146.70.105.235" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 822, - "hostname": "de822.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "fr873.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.138" + "146.70.105.235" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 823, - "hostname": "de823.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "fr874.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.141" + "146.70.105.243" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 823, - "hostname": "de823.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "fr874.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.141" + "146.70.105.243" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 824, - "hostname": "de824.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "fr875.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.144" + "146.70.105.251" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 824, - "hostname": "de824.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "fr875.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.144" + "146.70.105.251" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 825, - "hostname": "de825.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "fr876.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.147" + "146.70.105.155" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 825, - "hostname": "de825.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "fr876.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.147" + "146.70.105.155" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 826, - "hostname": "de826.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "fr877.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.150" + "146.70.68.99" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 826, - "hostname": "de826.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "fr877.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.150" + "146.70.68.99" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 827, - "hostname": "de827.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "fr878.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.153" + "146.70.68.107" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 827, - "hostname": "de827.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "fr878.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.153" + "146.70.68.107" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 828, - "hostname": "de828.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "fr879.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.156" + "146.70.68.155" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 828, - "hostname": "de828.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "fr879.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.156" + "146.70.68.155" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 848, - "hostname": "de848.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "fr880.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.143.245.187" + "146.70.68.179" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 848, - "hostname": "de848.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "fr880.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "83.143.245.187" + "146.70.68.179" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 850, - "hostname": "de850.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "fr881.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.184" + "146.70.68.187" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 850, - "hostname": "de850.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "fr881.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.184" + "146.70.68.187" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 851, - "hostname": "de851.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "fr886.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.232.23.43" + "31.187.69.1" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 851, - "hostname": "de851.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "fr886.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.232.23.43" + "31.187.69.1" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 857, - "hostname": "de857.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "fr887.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.33.3" + "31.187.69.12" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 857, - "hostname": "de857.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "fr887.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.216.33.3" + "31.187.69.12" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 858, - "hostname": "de858.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "fr888.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.33.8" + "31.187.69.23" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 858, - "hostname": "de858.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "fr888.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.216.33.8" + "31.187.69.23" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 859, - "hostname": "de859.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "fr889.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.33.13" + "31.187.69.34" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 859, - "hostname": "de859.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "fr889.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.216.33.13" + "31.187.69.34" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 860, - "hostname": "de860.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "fr890.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.33.18" + "31.187.69.45" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 860, - "hostname": "de860.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "fr890.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.216.33.18" + "31.187.69.45" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 861, - "hostname": "de861.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "fr891.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.33.23" + "31.187.69.56" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 861, - "hostname": "de861.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "fr891.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.216.33.23" + "31.187.69.56" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 870, - "hostname": "de870.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "fr892.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.195" + "31.187.69.67" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 870, - "hostname": "de870.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "fr892.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.220.70.195" + "31.187.69.67" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 871, - "hostname": "de871.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "fr893.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.200" + "31.187.69.78" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 871, - "hostname": "de871.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "fr893.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.220.70.200" + "31.187.69.78" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 872, - "hostname": "de872.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "fr894.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.205" + "31.187.69.89" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 872, - "hostname": "de872.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "fr894.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.220.70.205" + "31.187.69.89" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 873, - "hostname": "de873.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "fr895.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.210" + "31.187.69.100" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 873, - "hostname": "de873.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "fr895.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.220.70.210" + "31.187.69.100" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 874, - "hostname": "de874.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "fr896.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.215" + "185.61.156.14" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 874, - "hostname": "de874.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "fr896.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.220.70.215" + "185.61.156.14" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 875, - "hostname": "de875.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "fr897.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.225" + "185.61.156.15" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 875, - "hostname": "de875.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "fr897.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.220.70.225" + "185.61.156.15" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 876, - "hostname": "de876.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "fr898.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.230" + "185.61.156.16" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 876, - "hostname": "de876.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "fr898.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.220.70.230" + "185.61.156.16" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 877, - "hostname": "de877.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "fr899.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.235" + "185.61.156.17" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 877, - "hostname": "de877.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "fr899.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.220.70.235" + "185.61.156.17" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 892, - "hostname": "de892.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "fr900.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.131" + "185.61.156.18" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 892, - "hostname": "de892.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "fr900.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.131" + "185.61.156.18" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 893, - "hostname": "de893.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "fr901.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.136" + "185.61.156.19" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 893, - "hostname": "de893.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "fr901.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.136" + "185.61.156.19" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 894, - "hostname": "de894.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "fr902.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.172.67" + "185.61.156.20" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 894, - "hostname": "de894.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "fr902.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.207.172.67" + "185.61.156.20" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 895, - "hostname": "de895.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "fr903.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.172.72" + "185.61.156.21" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 895, - "hostname": "de895.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "fr903.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.207.172.72" + "185.61.156.21" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 903, - "hostname": "de903.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "fr904.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.172.77" + "185.61.156.22" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 903, - "hostname": "de903.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "fr904.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.207.172.77" + "185.61.156.22" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 904, - "hostname": "de904.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "fr905.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.172.85" + "185.61.156.23" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 904, - "hostname": "de904.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "fr905.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.207.172.85" + "185.61.156.23" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 905, - "hostname": "de905.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 906, + "hostname": "fr906.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.172.90" + "185.61.156.24" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 905, - "hostname": "de905.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 906, + "hostname": "fr906.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "91.207.172.90" + "185.61.156.24" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 907, - "hostname": "de907.nordvpn.com", + "hostname": "fr907.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.141" + "185.61.156.25" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 907, - "hostname": "de907.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr907.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.141" + "185.61.156.25" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 908, - "hostname": "de908.nordvpn.com", + "hostname": "fr908.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.146" + "84.247.0.14" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 908, - "hostname": "de908.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr908.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.146" + "84.247.0.14" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 909, - "hostname": "de909.nordvpn.com", + "hostname": "fr909.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.219" + "84.247.0.16" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 909, - "hostname": "de909.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr909.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.219" + "84.247.0.16" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 910, - "hostname": "de910.nordvpn.com", + "hostname": "fr910.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.151" + "84.247.0.18" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 910, - "hostname": "de910.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr910.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.151" + "84.247.0.18" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 911, - "hostname": "de911.nordvpn.com", + "hostname": "fr911.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.104.184.3" + "84.247.0.20" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 911, - "hostname": "de911.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr911.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "185.104.184.3" + "84.247.0.20" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 912, - "hostname": "de912.nordvpn.com", + "hostname": "fr912.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.227" + "84.247.0.22" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 912, - "hostname": "de912.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr912.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.227" + "84.247.0.22" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 913, - "hostname": "de913.nordvpn.com", + "hostname": "fr913.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.235" + "84.247.0.24" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 913, - "hostname": "de913.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr913.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "82.102.16.235" + "84.247.0.24" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 914, - "hostname": "de914.nordvpn.com", + "hostname": "fr914.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.249.65.67" + "84.247.0.26" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 914, - "hostname": "de914.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr914.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "89.249.65.67" + "84.247.0.26" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 915, - "hostname": "de915.nordvpn.com", + "hostname": "fr915.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.249.65.75" + "84.247.0.28" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 915, - "hostname": "de915.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr915.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "89.249.65.75" + "84.247.0.28" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 916, - "hostname": "de916.nordvpn.com", + "hostname": "fr916.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.249.65.83" + "84.247.0.30" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 916, - "hostname": "de916.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr916.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "89.249.65.83" + "84.247.0.30" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 917, - "hostname": "de917.nordvpn.com", + "hostname": "fr917.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.249.65.99" + "84.247.0.32" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 917, - "hostname": "de917.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr917.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "89.249.65.99" + "84.247.0.32" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 918, - "hostname": "de918.nordvpn.com", + "hostname": "fr918.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.249.65.107" + "84.247.0.34" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 918, - "hostname": "de918.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr918.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "89.249.65.107" + "84.247.0.34" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 919, - "hostname": "de919.nordvpn.com", + "hostname": "fr919.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.249.65.115" + "84.247.0.36" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], "number": 919, - "hostname": "de919.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr919.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "89.249.65.115" + "84.247.0.36" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], "number": 920, - "hostname": "de920.nordvpn.com", + "hostname": "fr920.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.243.181.195" + "156.146.63.99" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 920, - "hostname": "de920.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 921, + "hostname": "fr921.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "77.243.181.195" + "156.146.63.100" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 934, - "hostname": "de934.nordvpn.com", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 922, + "hostname": "fr922.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.3" + "156.146.63.108" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 934, - "hostname": "de934.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 923, + "hostname": "fr923.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "5.180.62.3" + "156.146.63.110" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 935, - "hostname": "de935.nordvpn.com", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 924, + "hostname": "fr924.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.6" + "156.146.63.103" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 935, - "hostname": "de935.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 925, + "hostname": "fr925.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "5.180.62.6" + "156.146.63.105" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 942, - "hostname": "de942.nordvpn.com", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 941, + "hostname": "fr941.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.9" + "156.146.63.116" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], "number": 942, - "hostname": "de942.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "hostname": "fr942.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "5.180.62.9" + "156.146.63.118" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], "number": 943, - "hostname": "de943.nordvpn.com", + "hostname": "fr943.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.12" + "156.146.63.120" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 943, - "hostname": "de943.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 944, + "hostname": "fr944.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "5.180.62.12" + "156.146.63.122" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 944, - "hostname": "de944.nordvpn.com", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 945, + "hostname": "fr945.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.15" + "156.146.63.82" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 944, - "hostname": "de944.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 946, + "hostname": "fr946.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "5.180.62.15" + "156.146.63.84" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 945, - "hostname": "de945.nordvpn.com", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 947, + "hostname": "fr947.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.18" + "149.88.28.18" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 945, - "hostname": "de945.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 948, + "hostname": "fr948.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "5.180.62.18" + "149.88.28.20" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 946, - "hostname": "de946.nordvpn.com", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 953, + "hostname": "fr953.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.21" + "149.88.28.23" ] }, { - "vpn": "wireguard", - "country": "Germany", + "vpn": "openvpn", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 946, - "hostname": "de946.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Dedicated IP" + ], + "number": 954, + "hostname": "fr954.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "5.180.62.21" + "149.88.28.25" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 947, - "hostname": "de947.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 955, + "hostname": "fr955.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.24" + "84.247.0.15" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 947, - "hostname": "de947.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 955, + "hostname": "fr955.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.24" + "84.247.0.15" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 948, - "hostname": "de948.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 956, + "hostname": "fr956.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.27" + "84.247.0.17" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 948, - "hostname": "de948.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 956, + "hostname": "fr956.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.27" + "84.247.0.17" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 949, - "hostname": "de949.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 957, + "hostname": "fr957.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.30" + "84.247.0.19" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 949, - "hostname": "de949.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 957, + "hostname": "fr957.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.30" + "84.247.0.19" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 950, - "hostname": "de950.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 958, + "hostname": "fr958.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.33" + "84.247.0.21" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 950, - "hostname": "de950.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 958, + "hostname": "fr958.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.33" + "84.247.0.21" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 951, - "hostname": "de951.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 959, + "hostname": "fr959.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.36" + "84.247.0.23" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 951, - "hostname": "de951.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 959, + "hostname": "fr959.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.36" + "84.247.0.23" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 961, - "hostname": "de961.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "fr960.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.39" + "84.247.0.25" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 961, - "hostname": "de961.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "fr960.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.39" + "84.247.0.25" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 962, - "hostname": "de962.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "fr961.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.42" + "84.247.0.29" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 962, - "hostname": "de962.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "fr961.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.42" + "84.247.0.29" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 964, - "hostname": "de964.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "fr962.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.48" + "84.247.0.27" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 964, - "hostname": "de964.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "fr962.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.48" + "84.247.0.27" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 965, - "hostname": "de965.nordvpn.com", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "fr963.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.51" + "86.104.248.170" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "France", "region": "Europe", - "city": "Frankfurt", - "number": 965, - "hostname": "de965.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Paris", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "fr963.nordvpn.com", + "wgpubkey": "FT46M53w4dhBep/2VScW1j/EoZbpBgzvk71FlLZLDBM=", "ips": [ - "5.180.62.51" + "86.104.248.170" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 966, - "hostname": "de966.nordvpn.com", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ge13.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.54" + "81.17.123.100" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 966, - "hostname": "de966.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "ge13.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", "ips": [ - "5.180.62.54" + "81.17.123.100" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 967, - "hostname": "de967.nordvpn.com", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ge14.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.57" + "81.17.123.102" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 967, - "hostname": "de967.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "ge14.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", "ips": [ - "5.180.62.57" + "81.17.123.102" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 968, - "hostname": "de968.nordvpn.com", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ge15.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.60" + "81.17.123.104" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 968, - "hostname": "de968.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "ge15.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", "ips": [ - "5.180.62.60" + "81.17.123.104" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 969, - "hostname": "de969.nordvpn.com", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ge16.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.63" + "81.17.123.106" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 969, - "hostname": "de969.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "ge16.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", "ips": [ - "5.180.62.63" + "81.17.123.106" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 970, - "hostname": "de970.nordvpn.com", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "ge17.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.66" + "81.17.123.108" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 970, - "hostname": "de970.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "ge17.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", "ips": [ - "5.180.62.66" + "81.17.123.108" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 971, - "hostname": "de971.nordvpn.com", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "ge18.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.69" + "81.17.123.110" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 971, - "hostname": "de971.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "ge18.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", "ips": [ - "5.180.62.69" + "81.17.123.110" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 972, - "hostname": "de972.nordvpn.com", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "ge19.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.72" + "81.17.123.112" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 972, - "hostname": "de972.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "ge19.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", "ips": [ - "5.180.62.72" + "81.17.123.112" ] }, { "vpn": "openvpn", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 973, - "hostname": "de973.nordvpn.com", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 20, + "hostname": "ge20.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.75" + "81.17.123.114" ] }, { "vpn": "wireguard", - "country": "Germany", + "country": "Georgia", "region": "Europe", - "city": "Frankfurt", - "number": 973, - "hostname": "de973.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Tbilisi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 20, + "hostname": "ge20.nordvpn.com", + "wgpubkey": "uWEpH47kcLRPOfT+ca3Kn3h1fBjYObJrOFA1YuuN0Ho=", "ips": [ - "5.180.62.75" + "81.17.123.114" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 974, - "hostname": "de974.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1069, + "hostname": "de1069.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.78" + "194.233.96.10" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 974, - "hostname": "de974.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1069, + "hostname": "de1069.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.78" + "194.233.96.10" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 975, - "hostname": "de975.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1070, + "hostname": "de1070.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.81" + "194.233.96.17" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 975, - "hostname": "de975.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1070, + "hostname": "de1070.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.81" + "194.233.96.17" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 976, - "hostname": "de976.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1071, + "hostname": "de1071.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.84" + "194.233.96.24" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 976, - "hostname": "de976.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1071, + "hostname": "de1071.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.84" + "194.233.96.24" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 977, - "hostname": "de977.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1072, + "hostname": "de1072.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.87" + "194.233.96.31" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 977, - "hostname": "de977.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1072, + "hostname": "de1072.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.87" + "194.233.96.31" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 978, - "hostname": "de978.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1073, + "hostname": "de1073.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.90" + "194.233.96.38" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 978, - "hostname": "de978.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1073, + "hostname": "de1073.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.90" + "194.233.96.38" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 983, - "hostname": "de983.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1074, + "hostname": "de1074.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.93" + "194.233.96.45" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 983, - "hostname": "de983.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1074, + "hostname": "de1074.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.93" + "194.233.96.45" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 984, - "hostname": "de984.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1075, + "hostname": "de1075.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.96" + "194.233.96.52" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 984, - "hostname": "de984.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1075, + "hostname": "de1075.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.96" + "194.233.96.52" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 985, - "hostname": "de985.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1076, + "hostname": "de1076.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.99" + "194.233.96.59" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 985, - "hostname": "de985.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1076, + "hostname": "de1076.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.99" + "194.233.96.59" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 986, - "hostname": "de986.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1077, + "hostname": "de1077.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.102" + "194.233.96.66" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 986, - "hostname": "de986.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1077, + "hostname": "de1077.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.102" + "194.233.96.66" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 987, - "hostname": "de987.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1078, + "hostname": "de1078.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.105" + "194.233.96.73" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 987, - "hostname": "de987.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1078, + "hostname": "de1078.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.105" + "194.233.96.73" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 988, - "hostname": "de988.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1079, + "hostname": "de1079.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.108" + "194.233.96.80" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 988, - "hostname": "de988.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1079, + "hostname": "de1079.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.108" + "194.233.96.80" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 989, - "hostname": "de989.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1080, + "hostname": "de1080.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.111" + "194.233.96.87" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 989, - "hostname": "de989.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1080, + "hostname": "de1080.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.111" + "194.233.96.87" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 990, - "hostname": "de990.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1081, + "hostname": "de1081.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.114" + "194.233.96.94" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 990, - "hostname": "de990.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1081, + "hostname": "de1081.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.114" + "194.233.96.94" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 991, - "hostname": "de991.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1082, + "hostname": "de1082.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.117" + "194.233.96.101" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 991, - "hostname": "de991.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1082, + "hostname": "de1082.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.117" + "194.233.96.101" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1003, - "hostname": "de1003.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1083, + "hostname": "de1083.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.143.245.179" + "194.233.96.108" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1003, - "hostname": "de1003.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1083, + "hostname": "de1083.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "83.143.245.179" + "194.233.96.108" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1004, - "hostname": "de1004.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1084, + "hostname": "de1084.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.16.179" + "194.233.96.115" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1004, - "hostname": "de1004.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1084, + "hostname": "de1084.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "82.102.16.179" + "194.233.96.115" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1008, - "hostname": "de1008.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1085, + "hostname": "de1085.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.67" + "194.233.96.122" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1008, - "hostname": "de1008.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1085, + "hostname": "de1085.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "185.220.70.67" + "194.233.96.122" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1009, - "hostname": "de1009.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1086, + "hostname": "de1086.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.220" + "194.233.96.129" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1009, - "hostname": "de1009.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1086, + "hostname": "de1086.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "185.220.70.220" + "194.233.96.129" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1011, - "hostname": "de1011.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1087, + "hostname": "de1087.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.249.65.91" + "194.233.96.136" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1011, - "hostname": "de1011.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1087, + "hostname": "de1087.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "89.249.65.91" + "194.233.96.136" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1017, - "hostname": "de1017.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1088, + "hostname": "de1088.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.173" + "194.233.96.143" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1017, - "hostname": "de1017.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1088, + "hostname": "de1088.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.173" + "194.233.96.143" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1018, - "hostname": "de1018.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1089, + "hostname": "de1089.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.174" + "194.233.96.149" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1018, - "hostname": "de1018.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1089, + "hostname": "de1089.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.174" + "194.233.96.149" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1019, - "hostname": "de1019.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1090, + "hostname": "de1090.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.175" + "194.233.96.155" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1019, - "hostname": "de1019.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1090, + "hostname": "de1090.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.175" + "194.233.96.155" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1020, - "hostname": "de1020.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1091, + "hostname": "de1091.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.176" + "194.233.96.161" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1020, - "hostname": "de1020.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1091, + "hostname": "de1091.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.176" + "194.233.96.161" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1021, - "hostname": "de1021.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1092, + "hostname": "de1092.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.177" + "194.233.96.167" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1021, - "hostname": "de1021.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1092, + "hostname": "de1092.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.177" + "194.233.96.167" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1022, - "hostname": "de1022.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1093, + "hostname": "de1093.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.178" + "194.233.96.173" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1022, - "hostname": "de1022.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1093, + "hostname": "de1093.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.178" + "194.233.96.173" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1023, - "hostname": "de1023.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1094, + "hostname": "de1094.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.179" + "194.233.96.179" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1023, - "hostname": "de1023.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1094, + "hostname": "de1094.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.179" + "194.233.96.179" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1024, - "hostname": "de1024.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1095, + "hostname": "de1095.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.180" + "194.233.96.185" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1024, - "hostname": "de1024.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1095, + "hostname": "de1095.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.180" + "194.233.96.185" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1025, - "hostname": "de1025.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1096, + "hostname": "de1096.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.181" + "194.233.96.191" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1025, - "hostname": "de1025.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1096, + "hostname": "de1096.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.181" + "194.233.96.191" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1026, - "hostname": "de1026.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1097, + "hostname": "de1097.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.180.62.182" + "194.233.96.197" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1026, - "hostname": "de1026.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1097, + "hostname": "de1097.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "5.180.62.182" + "194.233.96.197" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1027, - "hostname": "de1027.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1098, + "hostname": "de1098.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.1" + "194.233.96.235" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1027, - "hostname": "de1027.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1098, + "hostname": "de1098.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "185.196.22.1" + "194.233.96.235" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1028, - "hostname": "de1028.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1099, + "hostname": "de1099.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.2" + "194.233.96.241" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1028, - "hostname": "de1028.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1099, + "hostname": "de1099.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", "ips": [ - "185.196.22.2" + "194.233.96.241" ] }, { "vpn": "openvpn", "country": "Germany", "region": "Europe", - "city": "Frankfurt", - "number": 1029, - "hostname": "de1029.nordvpn.com", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1100, + "hostname": "de1100.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.3" + "194.233.96.248" ] }, { "vpn": "wireguard", "country": "Germany", "region": "Europe", + "city": "Berlin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1100, + "hostname": "de1100.nordvpn.com", + "wgpubkey": "3ZNjosvvIqfvu3/BqaLzNNXs9zWO4jXpcXNOmDMDpX0=", + "ips": [ + "194.233.96.248" + ] + }, + { + "vpn": "openvpn", + "country": "Germany", + "region": "Europe", "city": "Frankfurt", - "number": 1029, - "hostname": "de1029.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 507, + "hostname": "de507.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.3" + "185.130.184.115" ] }, { @@ -88209,24 +98676,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1030, - "hostname": "de1030.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 508, + "hostname": "de508.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.4" + "185.130.184.116" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1030, - "hostname": "de1030.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 509, + "hostname": "de509.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.4" + "185.130.184.117" ] }, { @@ -88234,24 +98708,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1031, - "hostname": "de1031.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 510, + "hostname": "de510.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.5" + "185.130.184.118" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1031, - "hostname": "de1031.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 654, + "hostname": "de654.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.5" + "194.31.54.3" ] }, { @@ -88259,24 +98740,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1032, - "hostname": "de1032.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 655, + "hostname": "de655.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.6" + "194.31.54.4" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1032, - "hostname": "de1032.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 675, + "hostname": "de675.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.6" + "37.120.223.115" ] }, { @@ -88284,24 +98772,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1033, - "hostname": "de1033.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 676, + "hostname": "de676.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.7" + "37.120.223.116" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1033, - "hostname": "de1033.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 677, + "hostname": "de677.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.7" + "195.181.170.209" ] }, { @@ -88309,24 +98804,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1034, - "hostname": "de1034.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 678, + "hostname": "de678.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.8" + "195.181.170.210" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1034, - "hostname": "de1034.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 679, + "hostname": "de679.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.8" + "195.181.170.216" ] }, { @@ -88334,24 +98836,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1035, - "hostname": "de1035.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 680, + "hostname": "de680.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.9" + "195.181.170.217" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1035, - "hostname": "de1035.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 681, + "hostname": "de681.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.9" + "169.150.201.162" ] }, { @@ -88359,24 +98868,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1036, - "hostname": "de1036.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 682, + "hostname": "de682.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.10" + "169.150.201.163" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1036, - "hostname": "de1036.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 683, + "hostname": "de683.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.10" + "169.150.201.165" ] }, { @@ -88384,24 +98900,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1037, - "hostname": "de1037.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 684, + "hostname": "de684.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.11" + "169.150.201.166" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1037, - "hostname": "de1037.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 685, + "hostname": "de685.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.11" + "169.150.201.169" ] }, { @@ -88409,24 +98932,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1038, - "hostname": "de1038.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 686, + "hostname": "de686.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.12" + "169.150.201.171" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1038, - "hostname": "de1038.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 687, + "hostname": "de687.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.12" + "169.150.201.174" ] }, { @@ -88434,24 +98964,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1039, - "hostname": "de1039.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 688, + "hostname": "de688.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.159" + "169.150.201.176" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1039, - "hostname": "de1039.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 689, + "hostname": "de689.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.159" + "149.102.230.193" ] }, { @@ -88459,24 +98996,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1040, - "hostname": "de1040.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 690, + "hostname": "de690.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.166" + "149.102.230.195" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1040, - "hostname": "de1040.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 691, + "hostname": "de691.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.166" + "149.102.230.197" ] }, { @@ -88484,24 +99028,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1041, - "hostname": "de1041.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 692, + "hostname": "de692.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.173" + "149.102.230.199" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1041, - "hostname": "de1041.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 693, + "hostname": "de693.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.173" + "149.102.230.201" ] }, { @@ -88509,24 +99060,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1042, - "hostname": "de1042.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 694, + "hostname": "de694.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.180" + "149.102.230.203" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1042, - "hostname": "de1042.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 695, + "hostname": "de695.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.180" + "169.150.201.179" ] }, { @@ -88534,24 +99092,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1043, - "hostname": "de1043.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 696, + "hostname": "de696.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.187" + "169.150.201.181" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1043, - "hostname": "de1043.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 697, + "hostname": "de697.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.187" + "149.102.230.209" ] }, { @@ -88559,24 +99124,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1044, - "hostname": "de1044.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 698, + "hostname": "de698.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.194" + "149.102.230.211" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1044, - "hostname": "de1044.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 699, + "hostname": "de699.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.194" + "149.88.19.149" ] }, { @@ -88584,24 +99156,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1045, - "hostname": "de1045.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 700, + "hostname": "de700.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.201" + "149.88.19.151" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1045, - "hostname": "de1045.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 706, + "hostname": "de706.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.201" + "149.102.230.214" ] }, { @@ -88609,24 +99188,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1046, - "hostname": "de1046.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 707, + "hostname": "de707.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.208" + "149.102.230.216" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1046, - "hostname": "de1046.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 710, + "hostname": "de710.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.208" + "212.102.43.195" ] }, { @@ -88634,24 +99220,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1047, - "hostname": "de1047.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 712, + "hostname": "de712.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.196.22.215" + "212.102.43.201" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1047, - "hostname": "de1047.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 713, + "hostname": "de713.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.196.22.215" + "212.102.43.204" ] }, { @@ -88659,24 +99252,31 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1052, - "hostname": "de1052.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 714, + "hostname": "de714.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.104.184.211" + "212.102.43.207" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1052, - "hostname": "de1052.nordvpn.com", - "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "categories": [ + "Dedicated IP" + ], + "number": 715, + "hostname": "de715.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.104.184.211" + "212.102.43.210" ] }, { @@ -88684,12 +99284,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1053, - "hostname": "de1053.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "de750.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.220.70.240" + "5.180.62.120" ] }, { @@ -88697,11 +99301,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1053, - "hostname": "de1053.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 750, + "hostname": "de750.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.220.70.240" + "5.180.62.120" ] }, { @@ -88709,12 +99317,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1054, - "hostname": "de1054.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 785, + "hostname": "de785.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.87.212.3" + "5.180.62.123" ] }, { @@ -88722,11 +99333,14 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1054, - "hostname": "de1054.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 785, + "hostname": "de785.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "45.87.212.3" + "5.180.62.123" ] }, { @@ -88734,12 +99348,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1055, - "hostname": "de1055.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 786, + "hostname": "de786.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.87.212.11" + "5.180.62.126" ] }, { @@ -88747,11 +99364,14 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1055, - "hostname": "de1055.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 786, + "hostname": "de786.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "45.87.212.11" + "5.180.62.126" ] }, { @@ -88759,12 +99379,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1056, - "hostname": "de1056.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 787, + "hostname": "de787.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.62.227" + "5.180.62.129" ] }, { @@ -88772,11 +99395,14 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1056, - "hostname": "de1056.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 787, + "hostname": "de787.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "146.70.62.227" + "5.180.62.129" ] }, { @@ -88784,12 +99410,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1057, - "hostname": "de1057.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 788, + "hostname": "de788.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.62.235" + "5.180.62.132" ] }, { @@ -88797,11 +99426,14 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1057, - "hostname": "de1057.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 788, + "hostname": "de788.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "146.70.62.235" + "5.180.62.132" ] }, { @@ -88809,12 +99441,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1058, - "hostname": "de1058.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 789, + "hostname": "de789.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.62.243" + "5.180.62.135" ] }, { @@ -88822,11 +99457,14 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1058, - "hostname": "de1058.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 789, + "hostname": "de789.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "146.70.62.243" + "5.180.62.135" ] }, { @@ -88834,12 +99472,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1059, - "hostname": "de1059.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "de793.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.62.251" + "212.103.50.43" ] }, { @@ -88847,11 +99489,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1059, - "hostname": "de1059.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 793, + "hostname": "de793.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "146.70.62.251" + "212.103.50.43" ] }, { @@ -88859,12 +99505,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1060, - "hostname": "de1060.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "de794.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.197.35" + "212.103.50.51" ] }, { @@ -88872,11 +99522,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1060, - "hostname": "de1060.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 794, + "hostname": "de794.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "37.120.197.35" + "212.103.50.51" ] }, { @@ -88884,12 +99538,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1061, - "hostname": "de1061.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "de799.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.197.43" + "195.181.170.204" ] }, { @@ -88897,11 +99555,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1061, - "hostname": "de1061.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 799, + "hostname": "de799.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "37.120.197.43" + "195.181.170.204" ] }, { @@ -88909,12 +99571,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1062, - "hostname": "de1062.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "de800.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.197.51" + "195.181.170.194" ] }, { @@ -88922,11 +99588,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1062, - "hostname": "de1062.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 800, + "hostname": "de800.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "37.120.197.51" + "195.181.170.194" ] }, { @@ -88934,12 +99604,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1063, - "hostname": "de1063.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "de801.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.141.152.59" + "195.181.170.199" ] }, { @@ -88947,11 +99621,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1063, - "hostname": "de1063.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 801, + "hostname": "de801.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "45.141.152.59" + "195.181.170.199" ] }, { @@ -88959,12 +99637,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1064, - "hostname": "de1064.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "de822.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.141.152.51" + "5.180.62.138" ] }, { @@ -88972,11 +99654,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1064, - "hostname": "de1064.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "de822.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "45.141.152.51" + "5.180.62.138" ] }, { @@ -88984,12 +99670,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1065, - "hostname": "de1065.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "de823.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.141.152.35" + "5.180.62.141" ] }, { @@ -88997,11 +99687,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1065, - "hostname": "de1065.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "de823.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "45.141.152.35" + "5.180.62.141" ] }, { @@ -89009,12 +99703,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1066, - "hostname": "de1066.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "de824.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.141.152.43" + "5.180.62.144" ] }, { @@ -89022,11 +99720,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1066, - "hostname": "de1066.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "de824.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "45.141.152.43" + "5.180.62.144" ] }, { @@ -89034,12 +99736,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1101, - "hostname": "de1101.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "de825.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.115.2" + "5.180.62.147" ] }, { @@ -89047,11 +99753,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1101, - "hostname": "de1101.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "de825.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "5.253.115.2" + "5.180.62.147" ] }, { @@ -89059,12 +99769,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1102, - "hostname": "de1102.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "de826.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.115.14" + "5.180.62.150" ] }, { @@ -89072,11 +99786,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1102, - "hostname": "de1102.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "de826.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "5.253.115.14" + "5.180.62.150" ] }, { @@ -89084,12 +99802,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1103, - "hostname": "de1103.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "de827.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.115.26" + "5.180.62.153" ] }, { @@ -89097,11 +99819,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1103, - "hostname": "de1103.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "de827.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "5.253.115.26" + "5.180.62.153" ] }, { @@ -89109,12 +99835,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1104, - "hostname": "de1104.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "de828.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.115.38" + "5.180.62.156" ] }, { @@ -89122,11 +99852,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1104, - "hostname": "de1104.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "de828.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "5.253.115.38" + "5.180.62.156" ] }, { @@ -89134,12 +99868,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1105, - "hostname": "de1105.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "de848.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.115.50" + "83.143.245.187" ] }, { @@ -89147,11 +99885,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1105, - "hostname": "de1105.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "de848.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "5.253.115.50" + "83.143.245.187" ] }, { @@ -89159,12 +99901,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1106, - "hostname": "de1106.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "de850.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.115.62" + "82.102.16.184" ] }, { @@ -89172,11 +99918,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1106, - "hostname": "de1106.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "de850.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "5.253.115.62" + "82.102.16.184" ] }, { @@ -89184,12 +99934,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1107, - "hostname": "de1107.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "de851.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.115.74" + "185.232.23.43" ] }, { @@ -89197,11 +99951,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1107, - "hostname": "de1107.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "de851.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "5.253.115.74" + "185.232.23.43" ] }, { @@ -89209,12 +99967,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1108, - "hostname": "de1108.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "de857.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.115.86" + "185.216.33.3" ] }, { @@ -89222,11 +99984,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1108, - "hostname": "de1108.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 857, + "hostname": "de857.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "5.253.115.86" + "185.216.33.3" ] }, { @@ -89234,12 +100000,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1109, - "hostname": "de1109.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "de858.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.2" + "185.216.33.8" ] }, { @@ -89247,11 +100017,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1109, - "hostname": "de1109.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 858, + "hostname": "de858.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.2" + "185.216.33.8" ] }, { @@ -89259,12 +100033,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1110, - "hostname": "de1110.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "de859.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.4" + "185.216.33.13" ] }, { @@ -89272,11 +100050,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1110, - "hostname": "de1110.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 859, + "hostname": "de859.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.4" + "185.216.33.13" ] }, { @@ -89284,12 +100066,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1111, - "hostname": "de1111.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "de860.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.6" + "185.216.33.18" ] }, { @@ -89297,11 +100083,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1111, - "hostname": "de1111.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 860, + "hostname": "de860.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.6" + "185.216.33.18" ] }, { @@ -89309,12 +100099,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1112, - "hostname": "de1112.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "de861.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.8" + "185.216.33.23" ] }, { @@ -89322,11 +100116,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1112, - "hostname": "de1112.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 861, + "hostname": "de861.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.8" + "185.216.33.23" ] }, { @@ -89334,12 +100132,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1113, - "hostname": "de1113.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "de870.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.10" + "185.220.70.195" ] }, { @@ -89347,11 +100149,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1113, - "hostname": "de1113.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "de870.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.10" + "185.220.70.195" ] }, { @@ -89359,12 +100165,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1114, - "hostname": "de1114.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "de871.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.12" + "185.220.70.200" ] }, { @@ -89372,11 +100182,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1114, - "hostname": "de1114.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "de871.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.12" + "185.220.70.200" ] }, { @@ -89384,12 +100198,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1115, - "hostname": "de1115.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "de872.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.14" + "185.220.70.205" ] }, { @@ -89397,11 +100215,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1115, - "hostname": "de1115.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "de872.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.14" + "185.220.70.205" ] }, { @@ -89409,12 +100231,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1116, - "hostname": "de1116.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "de873.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.16" + "185.220.70.210" ] }, { @@ -89422,11 +100248,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1116, - "hostname": "de1116.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "de873.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.16" + "185.220.70.210" ] }, { @@ -89434,12 +100264,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1117, - "hostname": "de1117.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "de874.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.18" + "185.220.70.215" ] }, { @@ -89447,11 +100281,15 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1117, - "hostname": "de1117.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "de874.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.18" + "185.220.70.215" ] }, { @@ -89459,12 +100297,16 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1118, - "hostname": "de1118.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "de875.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.67.85.20" + "185.220.70.225" ] }, { @@ -89472,35373 +100314,72878 @@ "country": "Germany", "region": "Europe", "city": "Frankfurt", - "number": 1118, - "hostname": "de1118.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "de875.nordvpn.com", "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.67.85.20" + "185.220.70.225" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 26, - "hostname": "gr26.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "de876.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.77" + "185.220.70.230" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 26, - "hostname": "gr26.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "de876.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.77" + "185.220.70.230" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 27, - "hostname": "gr27.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "de877.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.79" + "185.220.70.235" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 27, - "hostname": "gr27.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "de877.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.79" + "185.220.70.235" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 28, - "hostname": "gr28.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "de892.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.81" + "82.102.16.131" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 28, - "hostname": "gr28.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "de892.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.81" + "82.102.16.131" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 29, - "hostname": "gr29.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "de893.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.83" + "82.102.16.136" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 29, - "hostname": "gr29.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "de893.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.83" + "82.102.16.136" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 30, - "hostname": "gr30.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "de894.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.85" + "91.207.172.67" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 30, - "hostname": "gr30.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "de894.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.85" + "91.207.172.67" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 31, - "hostname": "gr31.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "de895.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.87" + "91.207.172.72" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 31, - "hostname": "gr31.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "de895.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.87" + "91.207.172.72" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 42, - "hostname": "gr42.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "de903.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.72" + "91.207.172.77" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 42, - "hostname": "gr42.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "de903.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.72" + "91.207.172.77" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 43, - "hostname": "gr43.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "de904.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.145" + "91.207.172.85" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 43, - "hostname": "gr43.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 904, + "hostname": "de904.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.145" + "91.207.172.85" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 44, - "hostname": "gr44.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "de905.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.153" + "91.207.172.90" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 44, - "hostname": "gr44.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 905, + "hostname": "de905.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.153" + "91.207.172.90" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 45, - "hostname": "gr45.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "de907.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.161" + "82.102.16.141" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 45, - "hostname": "gr45.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 907, + "hostname": "de907.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.161" + "82.102.16.141" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 46, - "hostname": "gr46.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "de908.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.150.167.169" + "82.102.16.146" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 46, - "hostname": "gr46.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 908, + "hostname": "de908.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "194.150.167.169" + "82.102.16.146" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 47, - "hostname": "gr47.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "de909.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.2" + "82.102.16.219" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 47, - "hostname": "gr47.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 909, + "hostname": "de909.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.2" + "82.102.16.219" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 48, - "hostname": "gr48.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "de910.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.28" + "82.102.16.151" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 48, - "hostname": "gr48.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 910, + "hostname": "de910.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.28" + "82.102.16.151" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 49, - "hostname": "gr49.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "de911.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.54" + "185.104.184.3" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 49, - "hostname": "gr49.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 911, + "hostname": "de911.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.54" + "185.104.184.3" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 50, - "hostname": "gr50.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "de912.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.80" + "82.102.16.227" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 50, - "hostname": "gr50.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 912, + "hostname": "de912.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.80" + "82.102.16.227" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 51, - "hostname": "gr51.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "de913.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.105" + "82.102.16.235" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 51, - "hostname": "gr51.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 913, + "hostname": "de913.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.105" + "82.102.16.235" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 52, - "hostname": "gr52.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "de914.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.130" + "89.249.65.67" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 52, - "hostname": "gr52.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 914, + "hostname": "de914.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.130" + "89.249.65.67" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 53, - "hostname": "gr53.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "de915.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.155" + "89.249.65.75" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 53, - "hostname": "gr53.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 915, + "hostname": "de915.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.155" + "89.249.65.75" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 54, - "hostname": "gr54.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "de916.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.180" + "89.249.65.83" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 54, - "hostname": "gr54.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 916, + "hostname": "de916.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.180" + "89.249.65.83" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 55, - "hostname": "gr55.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "de917.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.205" + "89.249.65.99" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 55, - "hostname": "gr55.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 917, + "hostname": "de917.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.205" + "89.249.65.99" ] }, { "vpn": "openvpn", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 56, - "hostname": "gr56.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "de918.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.132.104.230" + "89.249.65.107" ] }, { "vpn": "wireguard", - "country": "Greece", + "country": "Germany", "region": "Europe", - "city": "Athens", - "number": 56, - "hostname": "gr56.nordvpn.com", - "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 918, + "hostname": "de918.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "178.132.104.230" + "89.249.65.107" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 203, - "hostname": "hk203.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "de919.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.226" + "89.249.65.115" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 203, - "hostname": "hk203.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 919, + "hostname": "de919.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.226" + "89.249.65.115" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 204, - "hostname": "hk204.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 920, + "hostname": "de920.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.229" + "77.243.181.195" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 204, - "hostname": "hk204.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 920, + "hostname": "de920.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.229" + "77.243.181.195" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 205, - "hostname": "hk205.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "de934.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.232" + "5.180.62.3" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 205, - "hostname": "hk205.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 934, + "hostname": "de934.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.232" + "5.180.62.3" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 206, - "hostname": "hk206.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "de935.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.235" + "5.180.62.6" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 206, - "hostname": "hk206.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 935, + "hostname": "de935.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.235" + "5.180.62.6" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 207, - "hostname": "hk207.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 942, + "hostname": "de942.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.238" + "5.180.62.9" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 207, - "hostname": "hk207.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 942, + "hostname": "de942.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.238" + "5.180.62.9" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 208, - "hostname": "hk208.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 943, + "hostname": "de943.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.241" + "5.180.62.12" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 208, - "hostname": "hk208.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 943, + "hostname": "de943.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.241" + "5.180.62.12" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 209, - "hostname": "hk209.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 944, + "hostname": "de944.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.244" + "5.180.62.15" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 209, - "hostname": "hk209.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 944, + "hostname": "de944.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.244" + "5.180.62.15" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 210, - "hostname": "hk210.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 945, + "hostname": "de945.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.247" + "5.180.62.18" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 210, - "hostname": "hk210.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 945, + "hostname": "de945.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.247" + "5.180.62.18" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 211, - "hostname": "hk211.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 946, + "hostname": "de946.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.250" + "5.180.62.21" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 211, - "hostname": "hk211.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 946, + "hostname": "de946.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.250" + "5.180.62.21" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 212, - "hostname": "hk212.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 947, + "hostname": "de947.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.86" + "5.180.62.24" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 212, - "hostname": "hk212.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 947, + "hostname": "de947.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.86" + "5.180.62.24" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 248, - "hostname": "hk248.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 948, + "hostname": "de948.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.57.34" + "5.180.62.27" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 248, - "hostname": "hk248.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 948, + "hostname": "de948.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.57.34" + "5.180.62.27" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 249, - "hostname": "hk249.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 949, + "hostname": "de949.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.57.44" + "5.180.62.30" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 249, - "hostname": "hk249.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 949, + "hostname": "de949.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.57.44" + "5.180.62.30" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 250, - "hostname": "hk250.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 950, + "hostname": "de950.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.57.54" + "5.180.62.33" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 250, - "hostname": "hk250.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 950, + "hostname": "de950.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.57.54" + "5.180.62.33" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 252, - "hostname": "hk252.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 951, + "hostname": "de951.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.57.49" + "5.180.62.36" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 252, - "hostname": "hk252.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 951, + "hostname": "de951.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.57.49" + "5.180.62.36" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 253, - "hostname": "hk253.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "de961.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.57.39" + "5.180.62.39" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 253, - "hostname": "hk253.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "de961.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.57.39" + "5.180.62.39" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 254, - "hostname": "hk254.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "de962.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.66" + "5.180.62.42" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 254, - "hostname": "hk254.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "de962.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.66" + "5.180.62.42" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 255, - "hostname": "hk255.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "de963.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.71" + "5.180.62.45" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 255, - "hostname": "hk255.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "de963.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.71" + "5.180.62.45" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 256, - "hostname": "hk256.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "de964.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.76" + "5.180.62.48" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 256, - "hostname": "hk256.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "de964.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.76" + "5.180.62.48" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 257, - "hostname": "hk257.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "de965.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.37.81" + "5.180.62.51" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 257, - "hostname": "hk257.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "de965.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.17.37.81" + "5.180.62.51" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 265, - "hostname": "hk265.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "de966.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.1" + "5.180.62.54" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 265, - "hostname": "hk265.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "de966.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.1" + "5.180.62.54" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 266, - "hostname": "hk266.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "de967.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.3" + "5.180.62.57" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 266, - "hostname": "hk266.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "de967.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.3" + "5.180.62.57" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 267, - "hostname": "hk267.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "de968.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.5" + "5.180.62.60" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 267, - "hostname": "hk267.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "de968.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.5" + "5.180.62.60" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 268, - "hostname": "hk268.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "de969.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.7" + "5.180.62.63" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 268, - "hostname": "hk268.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "de969.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.7" + "5.180.62.63" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 269, - "hostname": "hk269.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "de970.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.9" + "5.180.62.66" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 269, - "hostname": "hk269.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "de970.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.9" + "5.180.62.66" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 270, - "hostname": "hk270.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "de971.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.11" + "5.180.62.69" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 270, - "hostname": "hk270.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "de971.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.11" + "5.180.62.69" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 271, - "hostname": "hk271.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "de972.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.13" + "5.180.62.72" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 271, - "hostname": "hk271.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "de972.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.13" + "5.180.62.72" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 272, - "hostname": "hk272.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "de973.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.15" + "5.180.62.75" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 272, - "hostname": "hk272.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "de973.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.15" + "5.180.62.75" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 273, - "hostname": "hk273.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "de974.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.17" + "5.180.62.78" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 273, - "hostname": "hk273.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "de974.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.17" + "5.180.62.78" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 274, - "hostname": "hk274.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "de975.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.19" + "5.180.62.81" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 274, - "hostname": "hk274.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "de975.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.19" + "5.180.62.81" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 275, - "hostname": "hk275.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "de976.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.21" + "5.180.62.84" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 275, - "hostname": "hk275.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", - "ips": [ - "185.225.234.21" - ] - }, + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "de976.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", + "ips": [ + "5.180.62.84" + ] + }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 276, - "hostname": "hk276.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "de977.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.234.23" + "5.180.62.87" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 276, - "hostname": "hk276.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "de977.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.225.234.23" + "5.180.62.87" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 277, - "hostname": "hk277.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "de978.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.45.8" + "5.180.62.90" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 277, - "hostname": "hk277.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "de978.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.146.45.8" + "5.180.62.90" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 278, - "hostname": "hk278.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "de983.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.45.13" + "5.180.62.93" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 278, - "hostname": "hk278.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "de983.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.146.45.13" + "5.180.62.93" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 279, - "hostname": "hk279.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "de984.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.45.18" + "5.180.62.96" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 279, - "hostname": "hk279.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "de984.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.146.45.18" + "5.180.62.96" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 280, - "hostname": "hk280.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "de985.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.45.23" + "5.180.62.99" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 280, - "hostname": "hk280.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "de985.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "156.146.45.23" + "5.180.62.99" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 283, - "hostname": "hk283.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "de986.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.165.70.19" + "5.180.62.102" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 283, - "hostname": "hk283.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "de986.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "202.165.70.19" + "5.180.62.102" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 284, - "hostname": "hk284.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "de987.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.165.70.27" + "5.180.62.105" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 284, - "hostname": "hk284.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "de987.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "202.165.70.27" + "5.180.62.105" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 285, - "hostname": "hk285.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "de988.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.165.70.35" + "5.180.62.108" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 285, - "hostname": "hk285.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "de988.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "202.165.70.35" + "5.180.62.108" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 286, - "hostname": "hk286.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "de989.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.165.70.43" + "5.180.62.111" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 286, - "hostname": "hk286.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "de989.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "202.165.70.43" + "5.180.62.111" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 287, - "hostname": "hk287.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "de990.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.165.70.51" + "5.180.62.114" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 287, - "hostname": "hk287.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "de990.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "202.165.70.51" + "5.180.62.114" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 288, - "hostname": "hk288.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "de991.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.165.70.59" + "5.180.62.117" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 288, - "hostname": "hk288.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "de991.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "202.165.70.59" + "5.180.62.117" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 289, - "hostname": "hk289.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1003, + "hostname": "de1003.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.165.70.67" + "83.143.245.179" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 289, - "hostname": "hk289.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1003, + "hostname": "de1003.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "202.165.70.67" + "83.143.245.179" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 290, - "hostname": "hk290.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1004, + "hostname": "de1004.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.165.70.75" + "82.102.16.179" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 290, - "hostname": "hk290.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1004, + "hostname": "de1004.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "202.165.70.75" + "82.102.16.179" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 291, - "hostname": "hk291.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "de1008.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.100" + "185.220.70.67" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 291, - "hostname": "hk291.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "de1008.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.100" + "185.220.70.67" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 292, - "hostname": "hk292.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "de1009.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.102" + "185.220.70.220" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 292, - "hostname": "hk292.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "de1009.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.102" + "185.220.70.220" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 293, - "hostname": "hk293.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "de1011.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.104" + "89.249.65.91" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 293, - "hostname": "hk293.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "de1011.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.104" + "89.249.65.91" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 294, - "hostname": "hk294.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "de1017.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.106" + "5.180.62.173" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 294, - "hostname": "hk294.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "de1017.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.106" + "5.180.62.173" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 295, - "hostname": "hk295.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "de1018.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.108" + "5.180.62.174" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 295, - "hostname": "hk295.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "de1018.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.108" + "5.180.62.174" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 296, - "hostname": "hk296.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1019, + "hostname": "de1019.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.110" + "5.180.62.175" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 296, - "hostname": "hk296.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1019, + "hostname": "de1019.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.110" + "5.180.62.175" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 297, - "hostname": "hk297.nordvpn.com", - "tcp": true, - "udp": true, - "ips": [ - "192.166.244.112" + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1020, + "hostname": "de1020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.180.62.176" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 297, - "hostname": "hk297.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1020, + "hostname": "de1020.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.112" + "5.180.62.176" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 298, - "hostname": "hk298.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1021, + "hostname": "de1021.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.114" + "5.180.62.177" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 298, - "hostname": "hk298.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1021, + "hostname": "de1021.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.114" + "5.180.62.177" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 299, - "hostname": "hk299.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1022, + "hostname": "de1022.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.116" + "5.180.62.178" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 299, - "hostname": "hk299.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1022, + "hostname": "de1022.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.116" + "5.180.62.178" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 300, - "hostname": "hk300.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1023, + "hostname": "de1023.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.118" + "5.180.62.179" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 300, - "hostname": "hk300.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1023, + "hostname": "de1023.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.118" + "5.180.62.179" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 301, - "hostname": "hk301.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1024, + "hostname": "de1024.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.120" + "5.180.62.180" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 301, - "hostname": "hk301.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1024, + "hostname": "de1024.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.120" + "5.180.62.180" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 302, - "hostname": "hk302.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1025, + "hostname": "de1025.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.122" + "5.180.62.181" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 302, - "hostname": "hk302.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1025, + "hostname": "de1025.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.122" + "5.180.62.181" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 303, - "hostname": "hk303.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1026, + "hostname": "de1026.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.124" + "5.180.62.182" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 303, - "hostname": "hk303.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1026, + "hostname": "de1026.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.124" + "5.180.62.182" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 304, - "hostname": "hk304.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1027, + "hostname": "de1027.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.126" + "185.196.22.1" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 304, - "hostname": "hk304.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1027, + "hostname": "de1027.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.126" + "185.196.22.1" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 305, - "hostname": "hk305.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1028, + "hostname": "de1028.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.128" + "185.196.22.2" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 305, - "hostname": "hk305.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1028, + "hostname": "de1028.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.128" + "185.196.22.2" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 306, - "hostname": "hk306.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1029, + "hostname": "de1029.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.130" + "185.196.22.3" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 306, - "hostname": "hk306.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1029, + "hostname": "de1029.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.130" + "185.196.22.3" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 307, - "hostname": "hk307.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1030, + "hostname": "de1030.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.132" + "185.196.22.4" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 307, - "hostname": "hk307.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1030, + "hostname": "de1030.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.132" + "185.196.22.4" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 308, - "hostname": "hk308.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1031, + "hostname": "de1031.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.134" + "185.196.22.5" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 308, - "hostname": "hk308.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1031, + "hostname": "de1031.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.134" + "185.196.22.5" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 309, - "hostname": "hk309.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1032, + "hostname": "de1032.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.136" + "185.196.22.6" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 309, - "hostname": "hk309.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1032, + "hostname": "de1032.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.136" + "185.196.22.6" ] }, { "vpn": "openvpn", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 310, - "hostname": "hk310.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1033, + "hostname": "de1033.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.244.138" + "185.196.22.7" ] }, { "vpn": "wireguard", - "country": "Hong Kong", - "region": "Asia Pacific", - "city": "Hong Kong", - "number": 310, - "hostname": "hk310.nordvpn.com", - "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1033, + "hostname": "de1033.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "192.166.244.138" + "185.196.22.7" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 47, - "hostname": "hu47.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1034, + "hostname": "de1034.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.99" + "185.196.22.8" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 47, - "hostname": "hu47.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1034, + "hostname": "de1034.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.99" + "185.196.22.8" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 48, - "hostname": "hu48.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1035, + "hostname": "de1035.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.189.114.28" + "185.196.22.9" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 48, - "hostname": "hu48.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1035, + "hostname": "de1035.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.189.114.28" + "185.196.22.9" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 49, - "hostname": "hu49.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1036, + "hostname": "de1036.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.83" + "185.196.22.10" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 49, - "hostname": "hu49.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1036, + "hostname": "de1036.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.83" + "185.196.22.10" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 50, - "hostname": "hu50.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1037, + "hostname": "de1037.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.128.26.171" + "185.196.22.11" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 50, - "hostname": "hu50.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1037, + "hostname": "de1037.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.128.26.171" + "185.196.22.11" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 51, - "hostname": "hu51.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1038, + "hostname": "de1038.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.189.114.243" + "185.196.22.12" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 51, - "hostname": "hu51.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1038, + "hostname": "de1038.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.189.114.243" + "185.196.22.12" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 52, - "hostname": "hu52.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1039, + "hostname": "de1039.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.189.114.235" + "185.196.22.159" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 52, - "hostname": "hu52.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1039, + "hostname": "de1039.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.189.114.235" + "185.196.22.159" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 53, - "hostname": "hu53.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1040, + "hostname": "de1040.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.128.26.51" + "185.196.22.166" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 53, - "hostname": "hu53.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1040, + "hostname": "de1040.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.128.26.51" + "185.196.22.166" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 54, - "hostname": "hu54.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1041, + "hostname": "de1041.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.128.26.59" + "185.196.22.173" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 54, - "hostname": "hu54.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1041, + "hostname": "de1041.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.128.26.59" + "185.196.22.173" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 55, - "hostname": "hu55.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "de1042.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.104.187.75" + "185.196.22.180" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 55, - "hostname": "hu55.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "de1042.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.104.187.75" + "185.196.22.180" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 56, - "hostname": "hu56.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1043, + "hostname": "de1043.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.144.115" + "185.196.22.187" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 56, - "hostname": "hu56.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1043, + "hostname": "de1043.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "37.120.144.115" + "185.196.22.187" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 57, - "hostname": "hu57.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1044, + "hostname": "de1044.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.144.123" + "185.196.22.194" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 57, - "hostname": "hu57.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1044, + "hostname": "de1044.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "37.120.144.123" + "185.196.22.194" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 58, - "hostname": "hu58.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1045, + "hostname": "de1045.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.27" + "185.196.22.201" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 58, - "hostname": "hu58.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1045, + "hostname": "de1045.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.27" + "185.196.22.201" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 59, - "hostname": "hu59.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1046, + "hostname": "de1046.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.35" + "185.196.22.208" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 59, - "hostname": "hu59.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1046, + "hostname": "de1046.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.35" + "185.196.22.208" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 60, - "hostname": "hu60.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1047, + "hostname": "de1047.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.43" + "185.196.22.215" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 60, - "hostname": "hu60.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1047, + "hostname": "de1047.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.43" + "185.196.22.215" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 61, - "hostname": "hu61.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1052, + "hostname": "de1052.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.51" + "185.104.184.211" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 61, - "hostname": "hu61.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1052, + "hostname": "de1052.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.51" + "185.104.184.211" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 62, - "hostname": "hu62.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1053, + "hostname": "de1053.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.59" + "185.220.70.240" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 62, - "hostname": "hu62.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1053, + "hostname": "de1053.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.59" + "185.220.70.240" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 63, - "hostname": "hu63.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1054, + "hostname": "de1054.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.67" + "45.87.212.3" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 63, - "hostname": "hu63.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1054, + "hostname": "de1054.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.67" + "45.87.212.3" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 64, - "hostname": "hu64.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1055, + "hostname": "de1055.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.75" + "45.87.212.11" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 64, - "hostname": "hu64.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1055, + "hostname": "de1055.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.75" + "45.87.212.11" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 65, - "hostname": "hu65.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1056, + "hostname": "de1056.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.192.91" + "146.70.62.227" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 65, - "hostname": "hu65.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1056, + "hostname": "de1056.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.192.91" + "146.70.62.227" ] }, { "vpn": "openvpn", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 66, - "hostname": "hu66.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1057, + "hostname": "de1057.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.144.243" + "146.70.62.235" ] }, { "vpn": "wireguard", - "country": "Hungary", + "country": "Germany", "region": "Europe", - "city": "Budapest", - "number": 66, - "hostname": "hu66.nordvpn.com", - "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1057, + "hostname": "de1057.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "37.120.144.243" + "146.70.62.235" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 63, - "hostname": "is63.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1058, + "hostname": "de1058.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.100" + "146.70.62.243" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 63, - "hostname": "is63.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1058, + "hostname": "de1058.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.100" + "146.70.62.243" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 64, - "hostname": "is64.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1059, + "hostname": "de1059.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.102" + "146.70.62.251" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 64, - "hostname": "is64.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1059, + "hostname": "de1059.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.102" + "146.70.62.251" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 65, - "hostname": "is65.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1060, + "hostname": "de1060.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.104" + "37.120.197.35" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 65, - "hostname": "is65.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1060, + "hostname": "de1060.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.104" + "37.120.197.35" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 66, - "hostname": "is66.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1061, + "hostname": "de1061.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.106" + "37.120.197.43" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 66, - "hostname": "is66.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1061, + "hostname": "de1061.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.106" + "37.120.197.43" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 67, - "hostname": "is67.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1062, + "hostname": "de1062.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.108" + "37.120.197.51" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 67, - "hostname": "is67.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1062, + "hostname": "de1062.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.108" + "37.120.197.51" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 68, - "hostname": "is68.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1063, + "hostname": "de1063.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.110" + "45.141.152.59" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 68, - "hostname": "is68.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1063, + "hostname": "de1063.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.110" + "45.141.152.59" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 69, - "hostname": "is69.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1064, + "hostname": "de1064.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.112" + "45.141.152.51" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 69, - "hostname": "is69.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1064, + "hostname": "de1064.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.112" + "45.141.152.51" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 70, - "hostname": "is70.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1065, + "hostname": "de1065.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.114" + "45.141.152.35" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 70, - "hostname": "is70.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1065, + "hostname": "de1065.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.114" + "45.141.152.35" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 71, - "hostname": "is71.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "de1066.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.116" + "45.141.152.43" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 71, - "hostname": "is71.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1066, + "hostname": "de1066.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.116" + "45.141.152.43" ] }, { "vpn": "openvpn", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 72, - "hostname": "is72.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1101, + "hostname": "de1101.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.234.68.118" + "5.253.115.2" ] }, { "vpn": "wireguard", - "country": "Iceland", + "country": "Germany", "region": "Europe", - "city": "Reykjavik", - "number": 72, - "hostname": "is72.nordvpn.com", - "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1101, + "hostname": "de1101.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.234.68.118" + "5.253.115.2" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 46, - "hostname": "id46.nordvpn.com", - "tcp": true, - "udp": true, - "ips": [ - "185.213.83.100" + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1102, + "hostname": "de1102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.115.14" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 46, - "hostname": "id46.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1102, + "hostname": "de1102.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.100" + "5.253.115.14" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 47, - "hostname": "id47.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "de1103.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.102" + "5.253.115.26" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 47, - "hostname": "id47.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1103, + "hostname": "de1103.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.102" + "5.253.115.26" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 48, - "hostname": "id48.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "de1104.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.104" + "5.253.115.38" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 48, - "hostname": "id48.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1104, + "hostname": "de1104.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.104" + "5.253.115.38" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 49, - "hostname": "id49.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1105, + "hostname": "de1105.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.106" + "5.253.115.50" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 49, - "hostname": "id49.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1105, + "hostname": "de1105.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.106" + "5.253.115.50" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 50, - "hostname": "id50.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1106, + "hostname": "de1106.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.108" + "5.253.115.62" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 50, - "hostname": "id50.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1106, + "hostname": "de1106.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.108" + "5.253.115.62" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 51, - "hostname": "id51.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1107, + "hostname": "de1107.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.110" + "5.253.115.74" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 51, - "hostname": "id51.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1107, + "hostname": "de1107.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.110" + "5.253.115.74" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 52, - "hostname": "id52.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1108, + "hostname": "de1108.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.112" + "5.253.115.86" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 52, - "hostname": "id52.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1108, + "hostname": "de1108.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.112" + "5.253.115.86" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 53, - "hostname": "id53.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1109, + "hostname": "de1109.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.114" + "156.67.85.2" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 53, - "hostname": "id53.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1109, + "hostname": "de1109.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.114" + "156.67.85.2" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 54, - "hostname": "id54.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1110, + "hostname": "de1110.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.116" + "156.67.85.4" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 54, - "hostname": "id54.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1110, + "hostname": "de1110.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.116" + "156.67.85.4" ] }, { "vpn": "openvpn", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 55, - "hostname": "id55.nordvpn.com", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1111, + "hostname": "de1111.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.83.118" + "156.67.85.6" ] }, { "vpn": "wireguard", - "country": "Indonesia", - "region": "Asia Pacific", - "city": "Jakarta", - "number": 55, - "hostname": "id55.nordvpn.com", - "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", + "country": "Germany", + "region": "Europe", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1111, + "hostname": "de1111.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "185.213.83.118" + "156.67.85.6" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 83, - "hostname": "ie83.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1112, + "hostname": "de1112.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.48.83" + "156.67.85.8" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 83, - "hostname": "ie83.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1112, + "hostname": "de1112.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "84.247.48.83" + "156.67.85.8" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 103, - "hostname": "ie103.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1113, + "hostname": "de1113.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.131" + "156.67.85.10" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 103, - "hostname": "ie103.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1113, + "hostname": "de1113.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.222.131" + "156.67.85.10" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 104, - "hostname": "ie104.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1114, + "hostname": "de1114.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.115" + "156.67.85.12" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 104, - "hostname": "ie104.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1114, + "hostname": "de1114.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.222.115" + "156.67.85.12" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 105, - "hostname": "ie105.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1115, + "hostname": "de1115.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.123" + "156.67.85.14" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 105, - "hostname": "ie105.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1115, + "hostname": "de1115.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.222.123" + "156.67.85.14" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 106, - "hostname": "ie106.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1116, + "hostname": "de1116.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.27" + "156.67.85.16" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 106, - "hostname": "ie106.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1116, + "hostname": "de1116.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.222.27" + "156.67.85.16" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 107, - "hostname": "ie107.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1117, + "hostname": "de1117.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.147" + "156.67.85.18" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 107, - "hostname": "ie107.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1117, + "hostname": "de1117.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.222.147" + "156.67.85.18" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 108, - "hostname": "ie108.nordvpn.com", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1118, + "hostname": "de1118.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.163" + "156.67.85.20" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Germany", "region": "Europe", - "city": "Dublin", - "number": 108, - "hostname": "ie108.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Frankfurt", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1118, + "hostname": "de1118.nordvpn.com", + "wgpubkey": "m0tej5P6pYfBivkJc8yRV4KqQXmM81AChLlzlsOSjSs=", "ips": [ - "217.138.222.163" + "156.67.85.20" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 109, - "hostname": "ie109.nordvpn.com", + "country": "Ghana", + "region": "Africa, the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gh1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.171" + "176.53.176.1" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 109, - "hostname": "ie109.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Ghana", + "region": "Africa, the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gh1.nordvpn.com", + "wgpubkey": "4qiGnHVTiZQ+TNC40F9hNx4196f9+OQjAYzKmyDAiXA=", "ips": [ - "217.138.222.171" + "176.53.176.1" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 110, - "hostname": "ie110.nordvpn.com", + "country": "Ghana", + "region": "Africa, the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gh2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.179" + "176.53.176.3" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 110, - "hostname": "ie110.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Ghana", + "region": "Africa, the Middle East and India", + "city": "Accra", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gh2.nordvpn.com", + "wgpubkey": "4qiGnHVTiZQ+TNC40F9hNx4196f9+OQjAYzKmyDAiXA=", "ips": [ - "217.138.222.179" + "176.53.176.3" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 111, - "hostname": "ie111.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "gr47.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.187" + "178.132.104.2" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 111, - "hostname": "ie111.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "gr47.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "217.138.222.187" + "178.132.104.2" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 112, - "hostname": "ie112.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "gr48.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.195" + "178.132.104.28" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 112, - "hostname": "ie112.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "gr48.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "217.138.222.195" + "178.132.104.28" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 113, - "hostname": "ie113.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "gr49.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.203" + "178.132.104.54" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 113, - "hostname": "ie113.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "gr49.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "217.138.222.203" + "178.132.104.54" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 114, - "hostname": "ie114.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "gr50.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.211" + "178.132.104.80" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 114, - "hostname": "ie114.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "gr50.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "217.138.222.211" + "178.132.104.80" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 115, - "hostname": "ie115.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "gr51.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.219" + "178.132.104.105" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 115, - "hostname": "ie115.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "gr51.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "217.138.222.219" + "178.132.104.105" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 116, - "hostname": "ie116.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "gr52.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.227" + "178.132.104.130" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 116, - "hostname": "ie116.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "gr52.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "217.138.222.227" + "178.132.104.130" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 117, - "hostname": "ie117.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "gr53.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.222.235" + "178.132.104.155" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 117, - "hostname": "ie117.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "gr53.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "217.138.222.235" + "178.132.104.155" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 118, - "hostname": "ie118.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "gr54.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.81.139.163" + "178.132.104.180" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 118, - "hostname": "ie118.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "gr54.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "77.81.139.163" + "178.132.104.180" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 119, - "hostname": "ie119.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "gr55.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.81.139.171" + "178.132.104.205" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 119, - "hostname": "ie119.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "gr55.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "77.81.139.171" + "178.132.104.205" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 120, - "hostname": "ie120.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "gr56.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.81.139.179" + "178.132.104.230" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 120, - "hostname": "ie120.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "gr56.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "77.81.139.179" + "178.132.104.230" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 121, - "hostname": "ie121.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "gr57.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.81.139.187" + "194.116.208.16" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 121, - "hostname": "ie121.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "gr57.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "77.81.139.187" + "194.116.208.16" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 131, - "hostname": "ie131.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "gr58.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.75" + "194.116.208.18" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 131, - "hostname": "ie131.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "gr58.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.75" + "194.116.208.18" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 132, - "hostname": "ie132.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "gr59.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.83" + "194.116.208.20" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 132, - "hostname": "ie132.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "gr59.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.83" + "194.116.208.20" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 133, - "hostname": "ie133.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "gr60.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.91" + "194.116.208.22" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 133, - "hostname": "ie133.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "gr60.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.91" + "194.116.208.22" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 134, - "hostname": "ie134.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "gr61.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.99" + "194.116.208.24" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 134, - "hostname": "ie134.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "gr61.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.99" + "194.116.208.24" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 135, - "hostname": "ie135.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "gr62.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.107" + "194.116.208.26" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 135, - "hostname": "ie135.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "gr62.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.107" + "194.116.208.26" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 136, - "hostname": "ie136.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "gr63.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.115" + "194.116.208.28" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 136, - "hostname": "ie136.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "gr63.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.115" + "194.116.208.28" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 137, - "hostname": "ie137.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "gr64.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.123" + "194.116.208.30" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 137, - "hostname": "ie137.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "gr64.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.123" + "194.116.208.30" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 138, - "hostname": "ie138.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "gr65.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.131" + "194.116.208.32" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 138, - "hostname": "ie138.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "gr65.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.131" + "194.116.208.32" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 139, - "hostname": "ie139.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "gr66.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.139" + "194.116.208.34" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 139, - "hostname": "ie139.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "gr66.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.139" + "194.116.208.34" ] }, { "vpn": "openvpn", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 140, - "hostname": "ie140.nordvpn.com", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "gr67.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.147" + "194.116.208.36" ] }, { "vpn": "wireguard", - "country": "Ireland", + "country": "Greece", "region": "Europe", - "city": "Dublin", - "number": 140, - "hostname": "ie140.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "city": "Athens", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "gr67.nordvpn.com", + "wgpubkey": "U6zz+5NuO0FlWkpDEK7xCggmyh4DJwjwd0etZxFnhhI=", "ips": [ - "193.56.252.147" + "194.116.208.36" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 141, - "hostname": "ie141.nordvpn.com", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gl1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.155" + "176.53.177.1" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 141, - "hostname": "ie141.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gl1.nordvpn.com", + "wgpubkey": "Gwtw7Vrr+FAX2/TMGvEkIkvMVI/ubHp+lbrmAXcyB2U=", "ips": [ - "193.56.252.155" + "176.53.177.1" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 142, - "hostname": "ie142.nordvpn.com", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gl2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.163" + "176.53.177.3" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 142, - "hostname": "ie142.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Greenland", + "region": "The Americas", + "city": "Nuuk", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gl2.nordvpn.com", + "wgpubkey": "Gwtw7Vrr+FAX2/TMGvEkIkvMVI/ubHp+lbrmAXcyB2U=", "ips": [ - "193.56.252.163" + "176.53.177.3" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 143, - "hostname": "ie143.nordvpn.com", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gu1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.171" + "176.53.178.1" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 143, - "hostname": "ie143.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gu1.nordvpn.com", + "wgpubkey": "LwVbH2GQSTQTrhjfrhsRgmnVxhTytr3k00De1yq+iHo=", "ips": [ - "193.56.252.171" + "176.53.178.1" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 144, - "hostname": "ie144.nordvpn.com", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gu2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.179" + "176.53.178.3" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 144, - "hostname": "ie144.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Guam", + "region": "Asia Pacific", + "city": "Hagatna", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gu2.nordvpn.com", + "wgpubkey": "LwVbH2GQSTQTrhjfrhsRgmnVxhTytr3k00De1yq+iHo=", "ips": [ - "193.56.252.179" + "176.53.178.3" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 145, - "hostname": "ie145.nordvpn.com", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gt1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.187" + "176.53.179.1" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 145, - "hostname": "ie145.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "gt1.nordvpn.com", + "wgpubkey": "xD1QIh3nv+9AeaEAW7+SFAYsILzTcskPQ2vu5pZE6VU=", "ips": [ - "193.56.252.187" + "176.53.179.1" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 146, - "hostname": "ie146.nordvpn.com", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gt2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.56.252.195" + "176.53.179.3" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 146, - "hostname": "ie146.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Guatemala", + "region": "The Americas", + "city": "Guatemala City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "gt2.nordvpn.com", + "wgpubkey": "xD1QIh3nv+9AeaEAW7+SFAYsILzTcskPQ2vu5pZE6VU=", "ips": [ - "193.56.252.195" + "176.53.179.3" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 149, - "hostname": "ie149.nordvpn.com", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "hn1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.90.3" + "193.9.32.1" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 149, - "hostname": "ie149.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "hn1.nordvpn.com", + "wgpubkey": "L7qdXgBWMXmUqWdTuCQCTNeKCkTei4mO7xRuG8EA7To=", "ips": [ - "146.70.90.3" + "193.9.32.1" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 150, - "hostname": "ie150.nordvpn.com", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "hn2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.90.11" + "193.9.32.3" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 150, - "hostname": "ie150.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Honduras", + "region": "The Americas", + "city": "Tegucigalpa", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "hn2.nordvpn.com", + "wgpubkey": "L7qdXgBWMXmUqWdTuCQCTNeKCkTei4mO7xRuG8EA7To=", "ips": [ - "146.70.90.11" + "193.9.32.3" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 151, - "hostname": "ie151.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Double VPN" + ], + "number": 7, + "hostname": "tw-hk7.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.90.19" + "185.213.82.114" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 151, - "hostname": "ie151.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Double VPN" + ], + "number": 7, + "hostname": "tw-hk7.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "146.70.90.19" + "185.213.82.114" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 152, - "hostname": "ie152.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "hk203.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.90.27" + "84.17.37.226" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 152, - "hostname": "ie152.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "hk203.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "146.70.90.27" + "84.17.37.226" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 153, - "hostname": "ie153.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "hk204.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.1" + "84.17.37.229" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 153, - "hostname": "ie153.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "hk204.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.1" + "84.17.37.229" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 154, - "hostname": "ie154.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "hk205.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.14" + "84.17.37.232" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 154, - "hostname": "ie154.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "hk205.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.14" + "84.17.37.232" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 155, - "hostname": "ie155.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "hk206.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.27" + "84.17.37.235" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 155, - "hostname": "ie155.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "hk206.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.27" + "84.17.37.235" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 156, - "hostname": "ie156.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "hk207.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.40" + "84.17.37.238" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 156, - "hostname": "ie156.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "hk207.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.40" + "84.17.37.238" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 157, - "hostname": "ie157.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "hk208.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.52" + "84.17.37.241" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 157, - "hostname": "ie157.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "hk208.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.52" + "84.17.37.241" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 158, - "hostname": "ie158.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "hk209.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.64" + "84.17.37.244" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 158, - "hostname": "ie158.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "hk209.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.64" + "84.17.37.244" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 159, - "hostname": "ie159.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "hk210.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.76" + "84.17.37.247" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 159, - "hostname": "ie159.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "hk210.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.76" + "84.17.37.247" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 160, - "hostname": "ie160.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "hk211.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.88" + "84.17.37.250" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 160, - "hostname": "ie160.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "hk211.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.88" + "84.17.37.250" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 161, - "hostname": "ie161.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "hk212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.100" + "84.17.37.86" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 161, - "hostname": "ie161.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "hk212.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.100" + "84.17.37.86" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 162, - "hostname": "ie162.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 248, + "hostname": "hk248.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.112" + "84.17.57.34" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 162, - "hostname": "ie162.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 248, + "hostname": "hk248.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.112" + "84.17.57.34" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 163, - "hostname": "ie163.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 249, + "hostname": "hk249.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.129" + "84.17.57.44" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 163, - "hostname": "ie163.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 249, + "hostname": "hk249.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.129" + "84.17.57.44" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 164, - "hostname": "ie164.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "hk250.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.142" + "84.17.57.54" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 164, - "hostname": "ie164.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "hk250.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.142" + "84.17.57.54" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 165, - "hostname": "ie165.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "hk252.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.155" + "84.17.57.49" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 165, - "hostname": "ie165.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "hk252.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.155" + "84.17.57.49" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 166, - "hostname": "ie166.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "hk253.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.168" + "84.17.57.39" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 166, - "hostname": "ie166.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "hk253.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.168" + "84.17.57.39" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 167, - "hostname": "ie167.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "hk254.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.180" + "84.17.37.66" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 167, - "hostname": "ie167.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "hk254.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.180" + "84.17.37.66" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 168, - "hostname": "ie168.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "hk255.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.192" + "84.17.37.71" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 168, - "hostname": "ie168.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "hk255.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.192" + "84.17.37.71" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 169, - "hostname": "ie169.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "hk256.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.204" + "84.17.37.76" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 169, - "hostname": "ie169.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "hk256.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.204" + "84.17.37.76" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 170, - "hostname": "ie170.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "hk257.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.216" + "84.17.37.81" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 170, - "hostname": "ie170.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "hk257.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.216" + "84.17.37.81" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 171, - "hostname": "ie171.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "hk265.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.228" + "185.225.234.1" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 171, - "hostname": "ie171.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "hk265.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.228" + "185.225.234.1" ] }, { "vpn": "openvpn", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 172, - "hostname": "ie172.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "hk266.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.32.235.240" + "185.225.234.3" ] }, { "vpn": "wireguard", - "country": "Ireland", - "region": "Europe", - "city": "Dublin", - "number": 172, - "hostname": "ie172.nordvpn.com", - "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "hk266.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "194.32.235.240" + "185.225.234.3" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 58, - "hostname": "il58.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "hk267.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.21" + "185.225.234.5" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 58, - "hostname": "il58.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "hk267.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.21" + "185.225.234.5" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 59, - "hostname": "il59.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "hk268.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.32" + "185.225.234.7" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 59, - "hostname": "il59.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "hk268.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.32" + "185.225.234.7" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 60, - "hostname": "il60.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "hk269.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.44" + "185.225.234.9" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 60, - "hostname": "il60.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "hk269.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.44" + "185.225.234.9" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 61, - "hostname": "il61.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "hk270.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.56" + "185.225.234.11" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 61, - "hostname": "il61.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "hk270.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.56" + "185.225.234.11" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 62, - "hostname": "il62.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "hk271.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.68" + "185.225.234.13" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 62, - "hostname": "il62.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "hk271.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.68" + "185.225.234.13" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 63, - "hostname": "il63.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "hk272.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.80" + "185.225.234.15" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 63, - "hostname": "il63.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "hk272.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.80" + "185.225.234.15" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 64, - "hostname": "il64.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "hk273.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.91" + "185.225.234.17" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 64, - "hostname": "il64.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "hk273.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.91" + "185.225.234.17" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 65, - "hostname": "il65.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "hk274.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.102" + "185.225.234.19" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 65, - "hostname": "il65.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "hk274.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.102" + "185.225.234.19" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 66, - "hostname": "il66.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "hk275.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.113" + "185.225.234.21" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 66, - "hostname": "il66.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "hk275.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.113" + "185.225.234.21" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 67, - "hostname": "il67.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "hk276.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.22" + "185.225.234.23" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 67, - "hostname": "il67.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "hk276.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.22" + "185.225.234.23" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 68, - "hostname": "il68.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "hk277.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.23" + "156.146.45.8" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 68, - "hostname": "il68.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "hk277.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.23" + "156.146.45.8" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 69, - "hostname": "il69.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "hk278.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.24" + "156.146.45.13" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 69, - "hostname": "il69.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "hk278.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.24" + "156.146.45.13" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 70, - "hostname": "il70.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "hk279.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.25" + "156.146.45.18" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 70, - "hostname": "il70.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "hk279.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.25" + "156.146.45.18" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 71, - "hostname": "il71.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "hk280.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.26" + "156.146.45.23" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 71, - "hostname": "il71.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "hk280.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.26" + "156.146.45.23" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 72, - "hostname": "il72.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "hk283.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.27" + "202.165.70.19" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 72, - "hostname": "il72.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "hk283.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.27" + "202.165.70.19" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 73, - "hostname": "il73.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "hk284.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.28" + "202.165.70.27" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 73, - "hostname": "il73.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "hk284.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.28" + "202.165.70.27" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 74, - "hostname": "il74.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "hk285.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.29" + "202.165.70.35" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 74, - "hostname": "il74.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "hk285.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.29" + "202.165.70.35" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 75, - "hostname": "il75.nordvpn.com", - "tcp": true, + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "hk286.nordvpn.com", + "tcp": true, "udp": true, "ips": [ - "169.150.226.30" + "202.165.70.43" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 75, - "hostname": "il75.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "hk286.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.30" + "202.165.70.43" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 76, - "hostname": "il76.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 287, + "hostname": "hk287.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.31" + "202.165.70.51" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 76, - "hostname": "il76.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 287, + "hostname": "hk287.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.31" + "202.165.70.51" ] }, { "vpn": "openvpn", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 77, - "hostname": "il77.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 288, + "hostname": "hk288.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.226.33" + "202.165.70.59" ] }, { "vpn": "wireguard", - "country": "Israel", - "region": "Africa, the Middle East and India", - "city": "Tel Aviv", - "number": 77, - "hostname": "il77.nordvpn.com", - "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 288, + "hostname": "hk288.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "169.150.226.33" + "202.165.70.59" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 132, - "hostname": "it132.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 289, + "hostname": "hk289.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.197.75" + "202.165.70.67" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 132, - "hostname": "it132.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 289, + "hostname": "hk289.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "217.138.197.75" + "202.165.70.67" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 146, - "hostname": "it146.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 290, + "hostname": "hk290.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.54.108" + "202.165.70.75" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 146, - "hostname": "it146.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 290, + "hostname": "hk290.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "212.102.54.108" + "202.165.70.75" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 147, - "hostname": "it147.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 291, + "hostname": "hk291.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.54.98" + "192.166.244.100" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 147, - "hostname": "it147.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 291, + "hostname": "hk291.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "212.102.54.98" + "192.166.244.100" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 148, - "hostname": "it148.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 292, + "hostname": "hk292.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.54.118" + "192.166.244.102" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 148, - "hostname": "it148.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 292, + "hostname": "hk292.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "212.102.54.118" + "192.166.244.102" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 149, - "hostname": "it149.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "hk293.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.54.103" + "192.166.244.104" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 149, - "hostname": "it149.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "hk293.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "212.102.54.103" + "192.166.244.104" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 150, - "hostname": "it150.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "hk294.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.54.113" + "192.166.244.106" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 150, - "hostname": "it150.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "hk294.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "212.102.54.113" + "192.166.244.106" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 156, - "hostname": "it156.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "hk295.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.219.171" + "192.166.244.108" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 156, - "hostname": "it156.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "hk295.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "217.138.219.171" + "192.166.244.108" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 157, - "hostname": "it157.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "hk296.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.219.163" + "192.166.244.110" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 157, - "hostname": "it157.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "hk296.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "217.138.219.163" + "192.166.244.110" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 174, - "hostname": "it174.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "hk297.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.127.179" + "192.166.244.112" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 174, - "hostname": "it174.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "hk297.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "192.145.127.179" + "192.166.244.112" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 186, - "hostname": "it186.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "hk298.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.211" + "192.166.244.114" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 186, - "hostname": "it186.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "hk298.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.211" + "192.166.244.114" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 187, - "hostname": "it187.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "hk299.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.219" + "192.166.244.116" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 187, - "hostname": "it187.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "hk299.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.219" + "192.166.244.116" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 188, - "hostname": "it188.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "hk300.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.227" + "192.166.244.118" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 188, - "hostname": "it188.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "hk300.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.227" + "192.166.244.118" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 189, - "hostname": "it189.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "hk301.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.235" + "192.166.244.120" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 189, - "hostname": "it189.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "hk301.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.235" + "192.166.244.120" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 190, - "hostname": "it190.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 302, + "hostname": "hk302.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.243" + "192.166.244.122" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 190, - "hostname": "it190.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 302, + "hostname": "hk302.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.243" + "192.166.244.122" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 191, - "hostname": "it191.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 303, + "hostname": "hk303.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.171" + "192.166.244.124" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 191, - "hostname": "it191.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 303, + "hostname": "hk303.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.171" + "192.166.244.124" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 192, - "hostname": "it192.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 304, + "hostname": "hk304.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.179" + "192.166.244.126" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 192, - "hostname": "it192.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 304, + "hostname": "hk304.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.179" + "192.166.244.126" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 193, - "hostname": "it193.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 305, + "hostname": "hk305.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.187" + "192.166.244.128" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 193, - "hostname": "it193.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", - "ips": [ - "37.120.201.187" - ] - }, + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 305, + "hostname": "hk305.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", + "ips": [ + "192.166.244.128" + ] + }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 194, - "hostname": "it194.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 307, + "hostname": "hk307.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.195" + "192.166.244.132" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 194, - "hostname": "it194.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 307, + "hostname": "hk307.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.195" + "192.166.244.132" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 195, - "hostname": "it195.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 308, + "hostname": "hk308.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.201.203" + "192.166.244.134" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 195, - "hostname": "it195.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 308, + "hostname": "hk308.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "37.120.201.203" + "192.166.244.134" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 196, - "hostname": "it196.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 309, + "hostname": "hk309.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.197.43" + "192.166.244.136" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 196, - "hostname": "it196.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 309, + "hostname": "hk309.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "217.138.197.43" + "192.166.244.136" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 197, - "hostname": "it197.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 310, + "hostname": "hk310.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.197.51" + "192.166.244.138" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 197, - "hostname": "it197.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 310, + "hostname": "hk310.nordvpn.com", + "wgpubkey": "+zv+cPRl1pf9hPXFKO3GoVpdBld97Uk3feyeF+9vLBQ=", "ips": [ - "217.138.197.51" + "192.166.244.138" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 198, - "hostname": "it198.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 311, + "hostname": "hk311.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.197.59" + "84.17.57.51" ] }, { - "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 198, - "hostname": "it198.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 312, + "hostname": "hk312.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "217.138.197.59" + "84.17.57.56" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 199, - "hostname": "it199.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 313, + "hostname": "hk313.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.197.67" + "84.17.57.37" ] }, { - "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 199, - "hostname": "it199.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 314, + "hostname": "hk314.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "217.138.197.67" + "84.17.57.42" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 201, - "hostname": "it201.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 315, + "hostname": "hk315.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.197.235" + "156.146.45.226" ] }, { - "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 201, - "hostname": "it201.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 316, + "hostname": "hk316.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "217.138.197.235" + "156.146.45.228" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 203, - "hostname": "it203.nordvpn.com", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 317, + "hostname": "hk317.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.197.243" + "156.146.45.233" ] }, { - "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Milan", - "number": 203, - "hostname": "it203.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "vpn": "openvpn", + "country": "Hong Kong", + "region": "Asia Pacific", + "city": "Hong Kong", + "categories": [ + "Dedicated IP" + ], + "number": 318, + "hostname": "hk318.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "217.138.197.243" + "156.146.45.235" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 204, - "hostname": "it204.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hu47.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.197.251" + "217.138.192.99" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 204, - "hostname": "it204.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "hu47.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "217.138.197.251" + "217.138.192.99" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 205, - "hostname": "it205.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hu48.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.219.35" + "185.189.114.28" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 205, - "hostname": "it205.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "hu48.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "217.138.219.35" + "185.189.114.28" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 210, - "hostname": "it210.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "hu49.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.54.236" + "217.138.192.83" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 210, - "hostname": "it210.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "hu49.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "138.199.54.236" + "217.138.192.83" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 211, - "hostname": "it211.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "hu50.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.54.231" + "185.128.26.171" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 211, - "hostname": "it211.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "hu50.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "138.199.54.231" + "185.128.26.171" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 212, - "hostname": "it212.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "hu51.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.54.226" + "185.189.114.243" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 212, - "hostname": "it212.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "hu51.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "138.199.54.226" + "185.189.114.243" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 213, - "hostname": "it213.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "hu52.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.73.75" + "185.189.114.235" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 213, - "hostname": "it213.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "hu52.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "146.70.73.75" + "185.189.114.235" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 214, - "hostname": "it214.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "hu53.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.73.83" + "185.128.26.51" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 214, - "hostname": "it214.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "hu53.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "146.70.73.83" + "185.128.26.51" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 215, - "hostname": "it215.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "hu54.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.9.251.27" + "185.128.26.59" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 215, - "hostname": "it215.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "hu54.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "45.9.251.27" + "185.128.26.59" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 216, - "hostname": "it216.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "hu55.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.9.251.35" + "185.104.187.75" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 216, - "hostname": "it216.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "hu55.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "45.9.251.35" + "185.104.187.75" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 217, - "hostname": "it217.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "hu56.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.21.35" + "37.120.144.115" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 217, - "hostname": "it217.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "hu56.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "82.102.21.35" + "37.120.144.115" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 218, - "hostname": "it218.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "hu57.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.21.43" + "37.120.144.123" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 218, - "hostname": "it218.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "hu57.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "82.102.21.43" + "37.120.144.123" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 219, - "hostname": "it219.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "hu58.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.21.123" + "217.138.192.27" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 219, - "hostname": "it219.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "hu58.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "82.102.21.123" + "217.138.192.27" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 220, - "hostname": "it220.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "hu59.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.21.195" + "217.138.192.35" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 220, - "hostname": "it220.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "hu59.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "82.102.21.195" + "217.138.192.35" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 221, - "hostname": "it221.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "hu60.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.64.35" + "217.138.192.43" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 221, - "hostname": "it221.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "hu60.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "95.174.64.35" + "217.138.192.43" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 222, - "hostname": "it222.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "hu61.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.73.91" + "217.138.192.51" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 222, - "hostname": "it222.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "hu61.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "146.70.73.91" + "217.138.192.51" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 223, - "hostname": "it223.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "hu62.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.54.242" + "217.138.192.59" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 223, - "hostname": "it223.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "hu62.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "138.199.54.242" + "217.138.192.59" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 224, - "hostname": "it224.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "hu63.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.54.247" + "217.138.192.67" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 224, - "hostname": "it224.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "hu63.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "138.199.54.247" + "217.138.192.67" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 225, - "hostname": "it225.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "hu64.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.42" + "217.138.192.75" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 225, - "hostname": "it225.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "hu64.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "178.249.211.42" + "217.138.192.75" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 226, - "hostname": "it226.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "hu65.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.37" + "217.138.192.91" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 226, - "hostname": "it226.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "hu65.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "178.249.211.37" + "217.138.192.91" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 227, - "hostname": "it227.nordvpn.com", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "hu66.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.32" + "37.120.144.243" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Hungary", "region": "Europe", - "city": "Milan", - "number": 227, - "hostname": "it227.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Budapest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "hu66.nordvpn.com", + "wgpubkey": "3KWTCjpHlmXD3BroyAIFMN8ajr+ibShIl8OSUGgejXY=", "ips": [ - "178.249.211.32" + "37.120.144.243" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 228, - "hostname": "it228.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "is63.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.27" + "185.234.68.100" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 228, - "hostname": "it228.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "is63.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.27" + "185.234.68.100" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 229, - "hostname": "it229.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "is64.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.22" + "185.234.68.102" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 229, - "hostname": "it229.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "is64.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.22" + "185.234.68.102" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 230, - "hostname": "it230.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "is65.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.17" + "185.234.68.104" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 230, - "hostname": "it230.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "is65.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.17" + "185.234.68.104" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 232, - "hostname": "it232.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "is66.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.7" + "185.234.68.106" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 232, - "hostname": "it232.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "is66.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.7" + "185.234.68.106" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 233, - "hostname": "it233.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "is67.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.2" + "185.234.68.108" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 233, - "hostname": "it233.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "is67.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.2" + "185.234.68.108" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 237, - "hostname": "it237.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "is68.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.58" + "185.234.68.110" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 237, - "hostname": "it237.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "is68.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.58" + "185.234.68.110" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 238, - "hostname": "it238.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "is69.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.53" + "185.234.68.112" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 238, - "hostname": "it238.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "is69.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.53" + "185.234.68.112" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 239, - "hostname": "it239.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "is70.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.48" + "185.234.68.114" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 239, - "hostname": "it239.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "is70.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.48" + "185.234.68.114" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 240, - "hostname": "it240.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "is71.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.249.211.181" + "185.234.68.116" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Milan", - "number": 240, - "hostname": "it240.nordvpn.com", - "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "is71.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "178.249.211.181" + "185.234.68.116" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Rome", - "number": 250, - "hostname": "it250.nordvpn.com", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "is72.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.100" + "185.234.68.118" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Iceland", "region": "Europe", - "city": "Rome", - "number": 250, - "hostname": "it250.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Reykjavik", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "is72.nordvpn.com", + "wgpubkey": "sI+Tafi/J4FYpga2tglr5wa3hmtPY1EZLJnOW6JYaBI=", "ips": [ - "85.190.232.100" + "185.234.68.118" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 251, - "hostname": "it251.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "in140.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.102" + "81.17.122.1" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 251, - "hostname": "it251.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "in140.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.102" + "81.17.122.1" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 252, - "hostname": "it252.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "in141.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.104" + "81.17.122.2" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 252, - "hostname": "it252.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "in141.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.104" + "81.17.122.2" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 253, - "hostname": "it253.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "in142.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.106" + "81.17.122.3" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 253, - "hostname": "it253.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "in142.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.106" + "81.17.122.3" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 254, - "hostname": "it254.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "in143.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.108" + "81.17.122.4" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 254, - "hostname": "it254.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "in143.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.108" + "81.17.122.4" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 255, - "hostname": "it255.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "in144.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.110" + "81.17.122.5" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 255, - "hostname": "it255.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "in144.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.110" + "81.17.122.5" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 256, - "hostname": "it256.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "in145.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.112" + "81.17.122.6" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 256, - "hostname": "it256.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "in145.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.112" + "81.17.122.6" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 257, - "hostname": "it257.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "in146.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.114" + "81.17.122.7" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 257, - "hostname": "it257.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "in146.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.114" + "81.17.122.7" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 258, - "hostname": "it258.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "in147.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.116" + "81.17.122.8" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 258, - "hostname": "it258.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "in147.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.116" + "81.17.122.8" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 259, - "hostname": "it259.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "in148.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.118" + "81.17.122.9" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 259, - "hostname": "it259.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "in148.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.118" + "81.17.122.9" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 260, - "hostname": "it260.nordvpn.com", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "in149.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.120" + "81.17.122.10" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 260, - "hostname": "it260.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "India", + "region": "Africa, the Middle East and India", + "city": "Mumbai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "in149.nordvpn.com", + "wgpubkey": "+7eydqFtf+DGlXeHLneRqoD2zMR8gGr3hgCq89wA9Qg=", "ips": [ - "85.190.232.120" + "81.17.122.10" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 261, - "hostname": "it261.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "id46.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.122" + "185.213.83.100" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 261, - "hostname": "it261.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "id46.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.122" + "185.213.83.100" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 262, - "hostname": "it262.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "id47.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.124" + "185.213.83.102" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 262, - "hostname": "it262.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "id47.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.124" + "185.213.83.102" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 263, - "hostname": "it263.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "id48.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.126" + "185.213.83.104" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 263, - "hostname": "it263.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "id48.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.126" + "185.213.83.104" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 264, - "hostname": "it264.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "id49.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.128" + "185.213.83.106" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 264, - "hostname": "it264.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "id49.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.128" + "185.213.83.106" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 265, - "hostname": "it265.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "id50.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.130" + "185.213.83.108" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 265, - "hostname": "it265.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "id50.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.130" + "185.213.83.108" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 266, - "hostname": "it266.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "id51.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.132" + "185.213.83.110" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 266, - "hostname": "it266.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "id51.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.132" + "185.213.83.110" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 267, - "hostname": "it267.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "id52.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.134" + "185.213.83.112" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 267, - "hostname": "it267.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "id52.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.134" + "185.213.83.112" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 268, - "hostname": "it268.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "id53.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.136" + "185.213.83.114" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 268, - "hostname": "it268.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "id53.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.136" + "185.213.83.114" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 269, - "hostname": "it269.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "id54.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.138" + "185.213.83.116" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 269, - "hostname": "it269.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "id54.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.138" + "185.213.83.116" ] }, { "vpn": "openvpn", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 270, - "hostname": "it270.nordvpn.com", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "id55.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.140" + "185.213.83.118" ] }, { "vpn": "wireguard", - "country": "Italy", - "region": "Europe", - "city": "Rome", - "number": 270, - "hostname": "it270.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "country": "Indonesia", + "region": "Asia Pacific", + "city": "Jakarta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "id55.nordvpn.com", + "wgpubkey": "uzDmNLCyEMbrIIfZ8m+BtRfQtSFBG6PIKwrYpNuM7AU=", "ips": [ - "85.190.232.140" + "185.213.83.118" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 271, - "hostname": "it271.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ie83.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.142" + "84.247.48.83" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 271, - "hostname": "it271.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ie83.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.142" + "84.247.48.83" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 272, - "hostname": "it272.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "ie103.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.144" + "217.138.222.131" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 272, - "hostname": "it272.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "ie103.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.144" + "217.138.222.131" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 273, - "hostname": "it273.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "ie104.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.146" + "217.138.222.115" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 273, - "hostname": "it273.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "ie104.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.146" + "217.138.222.115" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 274, - "hostname": "it274.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "ie105.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.148" + "217.138.222.123" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 274, - "hostname": "it274.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "ie105.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.148" + "217.138.222.123" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 275, - "hostname": "it275.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "ie106.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.150" + "217.138.222.27" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 275, - "hostname": "it275.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "ie106.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.150" + "217.138.222.27" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 276, - "hostname": "it276.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "ie107.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.152" + "217.138.222.147" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 276, - "hostname": "it276.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "ie107.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.152" + "217.138.222.147" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 277, - "hostname": "it277.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "ie108.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.154" + "217.138.222.163" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 277, - "hostname": "it277.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "ie108.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.154" + "217.138.222.163" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 278, - "hostname": "it278.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "ie109.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.156" + "217.138.222.171" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 278, - "hostname": "it278.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "ie109.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.156" + "217.138.222.171" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 279, - "hostname": "it279.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "ie110.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.158" + "217.138.222.179" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 279, - "hostname": "it279.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "ie110.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.158" + "217.138.222.179" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 280, - "hostname": "it280.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "ie111.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.160" + "217.138.222.187" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 280, - "hostname": "it280.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "ie111.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.160" + "217.138.222.187" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 281, - "hostname": "it281.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "ie112.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.162" + "217.138.222.195" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 281, - "hostname": "it281.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "ie112.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.162" + "217.138.222.195" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 282, - "hostname": "it282.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "ie113.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.164" + "217.138.222.203" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 282, - "hostname": "it282.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "ie113.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.164" + "217.138.222.203" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 283, - "hostname": "it283.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "ie114.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.166" + "217.138.222.211" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 283, - "hostname": "it283.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "ie114.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.166" + "217.138.222.211" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 284, - "hostname": "it284.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "ie115.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.168" + "217.138.222.219" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 284, - "hostname": "it284.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "ie115.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.168" + "217.138.222.219" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 285, - "hostname": "it285.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "ie116.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.170" + "217.138.222.227" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 285, - "hostname": "it285.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "ie116.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.170" + "217.138.222.227" ] }, { "vpn": "openvpn", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 286, - "hostname": "it286.nordvpn.com", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "ie117.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "85.190.232.172" + "217.138.222.235" ] }, { "vpn": "wireguard", - "country": "Italy", + "country": "Ireland", "region": "Europe", - "city": "Rome", - "number": 286, - "hostname": "it286.nordvpn.com", - "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "ie117.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "85.190.232.172" + "217.138.222.235" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 429, - "hostname": "jp429.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "ie118.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.210.107" + "77.81.139.163" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 429, - "hostname": "jp429.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "ie118.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "37.120.210.107" + "77.81.139.163" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 454, - "hostname": "jp454.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "ie119.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.54" + "77.81.139.171" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 454, - "hostname": "jp454.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "ie119.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "89.187.161.54" + "77.81.139.171" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 514, - "hostname": "jp514.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "ie120.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.154.211" + "77.81.139.179" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 514, - "hostname": "jp514.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "ie120.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "37.120.154.211" + "77.81.139.179" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 515, - "hostname": "jp515.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "ie121.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.235.107" + "77.81.139.187" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 515, - "hostname": "jp515.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "ie121.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "5.181.235.107" + "77.81.139.187" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 516, - "hostname": "jp516.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "ie131.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.235.115" + "193.56.252.75" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 516, - "hostname": "jp516.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "ie131.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "5.181.235.115" + "193.56.252.75" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 517, - "hostname": "jp517.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "ie132.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.235.83" + "193.56.252.83" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 517, - "hostname": "jp517.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "ie132.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "5.181.235.83" + "193.56.252.83" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 518, - "hostname": "jp518.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "ie133.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.115" + "193.56.252.91" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 518, - "hostname": "jp518.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "ie133.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.115" + "193.56.252.91" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 519, - "hostname": "jp519.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "ie134.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.116" + "193.56.252.99" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 519, - "hostname": "jp519.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "ie134.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.116" + "193.56.252.99" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 520, - "hostname": "jp520.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "ie135.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.119" + "193.56.252.107" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 520, - "hostname": "jp520.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "ie135.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.119" + "193.56.252.107" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 521, - "hostname": "jp521.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "ie136.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.122" + "193.56.252.115" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 521, - "hostname": "jp521.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "ie136.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.122" + "193.56.252.115" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 522, - "hostname": "jp522.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "ie137.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.203" + "193.56.252.123" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 522, - "hostname": "jp522.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "ie137.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.203" + "193.56.252.123" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 523, - "hostname": "jp523.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "ie138.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.206" + "193.56.252.131" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 523, - "hostname": "jp523.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "ie138.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.206" + "193.56.252.131" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 524, - "hostname": "jp524.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "ie139.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.209" + "193.56.252.139" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 524, - "hostname": "jp524.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "ie139.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.209" + "193.56.252.139" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 525, - "hostname": "jp525.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "ie140.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.194" + "193.56.252.147" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 525, - "hostname": "jp525.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", - "ips": [ - "212.102.50.194" - ] - }, + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "ie140.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", + "ips": [ + "193.56.252.147" + ] + }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 526, - "hostname": "jp526.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "ie141.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.197" + "193.56.252.155" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 526, - "hostname": "jp526.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "ie141.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.197" + "193.56.252.155" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 527, - "hostname": "jp527.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "ie142.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.200" + "193.56.252.163" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 527, - "hostname": "jp527.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "ie142.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.200" + "193.56.252.163" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 528, - "hostname": "jp528.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "ie143.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.194" + "193.56.252.171" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 528, - "hostname": "jp528.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "ie143.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.194" + "193.56.252.171" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 529, - "hostname": "jp529.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "ie144.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.197" + "193.56.252.179" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 529, - "hostname": "jp529.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "ie144.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.197" + "193.56.252.179" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 530, - "hostname": "jp530.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "ie145.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.200" + "193.56.252.187" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 530, - "hostname": "jp530.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "ie145.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.200" + "193.56.252.187" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 531, - "hostname": "jp531.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "ie146.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.212" + "193.56.252.195" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 531, - "hostname": "jp531.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "ie146.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.50.212" + "193.56.252.195" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 532, - "hostname": "jp532.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "ie149.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.218" + "146.70.90.3" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 532, - "hostname": "jp532.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "ie149.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.218" + "146.70.90.3" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 533, - "hostname": "jp533.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "ie150.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.215" + "146.70.90.11" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 533, - "hostname": "jp533.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "ie150.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.215" + "146.70.90.11" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 534, - "hostname": "jp534.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "ie151.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.212" + "146.70.90.19" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 534, - "hostname": "jp534.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "ie151.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.212" + "146.70.90.19" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 535, - "hostname": "jp535.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "ie152.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.203" + "146.70.90.27" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 535, - "hostname": "jp535.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "ie152.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.203" + "146.70.90.27" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 536, - "hostname": "jp536.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "ie153.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.206" + "194.32.235.1" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 536, - "hostname": "jp536.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "ie153.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.206" + "194.32.235.1" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 537, - "hostname": "jp537.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "ie154.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.51.209" + "194.32.235.14" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 537, - "hostname": "jp537.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "ie154.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "212.102.51.209" + "194.32.235.14" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 538, - "hostname": "jp538.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "ie155.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.154.43" + "194.32.235.27" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 538, - "hostname": "jp538.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "ie155.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "37.120.154.43" + "194.32.235.27" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 539, - "hostname": "jp539.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "ie156.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.154.51" + "194.32.235.40" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 539, - "hostname": "jp539.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "ie156.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "37.120.154.51" + "194.32.235.40" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 540, - "hostname": "jp540.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "ie157.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.154.203" + "194.32.235.52" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 540, - "hostname": "jp540.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "ie157.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "37.120.154.203" + "194.32.235.52" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 541, - "hostname": "jp541.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "ie158.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.154.235" + "194.32.235.64" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 541, - "hostname": "jp541.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "ie158.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "37.120.154.235" + "194.32.235.64" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 542, - "hostname": "jp542.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "ie159.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.66" + "194.32.235.76" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 542, - "hostname": "jp542.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "ie159.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.66" + "194.32.235.76" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 543, - "hostname": "jp543.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "ie160.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.93" + "194.32.235.88" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 543, - "hostname": "jp543.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "ie160.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.93" + "194.32.235.88" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 544, - "hostname": "jp544.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "ie161.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.90" + "194.32.235.100" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 544, - "hostname": "jp544.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 161, + "hostname": "ie161.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.90" + "194.32.235.100" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 545, - "hostname": "jp545.nordvpn.com", - "tcp": true, - "udp": true, - "ips": [ - "156.146.35.87" + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "ie162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.32.235.112" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 545, - "hostname": "jp545.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "ie162.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.87" + "194.32.235.112" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 546, - "hostname": "jp546.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "ie163.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.84" + "194.32.235.129" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 546, - "hostname": "jp546.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "ie163.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.84" + "194.32.235.129" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 547, - "hostname": "jp547.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "ie164.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.81" + "194.32.235.142" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 547, - "hostname": "jp547.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "ie164.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.81" + "194.32.235.142" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 548, - "hostname": "jp548.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "ie165.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.78" + "194.32.235.155" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 548, - "hostname": "jp548.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "ie165.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.78" + "194.32.235.155" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 549, - "hostname": "jp549.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "ie166.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.75" + "194.32.235.168" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 549, - "hostname": "jp549.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "ie166.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.75" + "194.32.235.168" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 550, - "hostname": "jp550.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "ie167.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.72" + "194.32.235.180" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 550, - "hostname": "jp550.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "ie167.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.72" + "194.32.235.180" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 551, - "hostname": "jp551.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "ie168.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.69" + "194.32.235.192" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 551, - "hostname": "jp551.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "ie168.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "156.146.35.69" + "194.32.235.192" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 552, - "hostname": "jp552.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "ie169.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.235.19" + "194.32.235.204" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 552, - "hostname": "jp552.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "ie169.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "5.181.235.19" + "194.32.235.204" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 553, - "hostname": "jp553.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "ie170.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.235.35" + "194.32.235.216" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 553, - "hostname": "jp553.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "ie170.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "5.181.235.35" + "194.32.235.216" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 554, - "hostname": "jp554.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "ie171.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.235.43" + "194.32.235.228" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 554, - "hostname": "jp554.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "ie171.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "5.181.235.43" + "194.32.235.228" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 555, - "hostname": "jp555.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "ie172.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.235.51" + "194.32.235.240" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 555, - "hostname": "jp555.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "ie172.nordvpn.com", + "wgpubkey": "WwpRem21dqdXwZF3qDqTe3rOxOBTPZIem8de5R17sCc=", "ips": [ - "5.181.235.51" + "194.32.235.240" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 562, - "hostname": "jp562.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 174, + "hostname": "ie174.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.28.35" + "87.249.137.215" ] }, { - "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 562, - "hostname": "jp562.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 175, + "hostname": "ie175.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "82.102.28.35" + "87.249.137.217" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 563, - "hostname": "jp563.nordvpn.com", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 176, + "hostname": "ie176.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.28.83" + "149.34.243.34" ] }, { - "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 563, - "hostname": "jp563.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "vpn": "openvpn", + "country": "Ireland", + "region": "Europe", + "city": "Dublin", + "categories": [ + "Dedicated IP" + ], + "number": 177, + "hostname": "ie177.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "82.102.28.83" + "149.34.243.36" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 564, - "hostname": "jp564.nordvpn.com", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "im1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.174.147" + "193.9.33.1" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 564, - "hostname": "jp564.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "im1.nordvpn.com", + "wgpubkey": "dioa2r6is3zlgHnr4DIeDKu+JhzPNbFLjl1fN5OUVgk=", "ips": [ - "91.207.174.147" + "193.9.33.1" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 565, - "hostname": "jp565.nordvpn.com", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "im2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.174.155" + "193.9.33.3" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 565, - "hostname": "jp565.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Isle of Man", + "region": "Europe", + "city": "Douglas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "im2.nordvpn.com", + "wgpubkey": "dioa2r6is3zlgHnr4DIeDKu+JhzPNbFLjl1fN5OUVgk=", "ips": [ - "91.207.174.155" + "193.9.33.3" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 566, - "hostname": "jp566.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "il58.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.174.163" + "169.150.226.21" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 566, - "hostname": "jp566.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "il58.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "91.207.174.163" + "169.150.226.21" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 567, - "hostname": "jp567.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "il59.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.96" + "169.150.226.32" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 567, - "hostname": "jp567.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "il59.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "156.146.35.96" + "169.150.226.32" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 568, - "hostname": "jp568.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "il60.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.99" + "169.150.226.44" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 568, - "hostname": "jp568.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "il60.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "156.146.35.99" + "169.150.226.44" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 569, - "hostname": "jp569.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "il61.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.102" + "169.150.226.56" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 569, - "hostname": "jp569.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "il61.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "156.146.35.102" + "169.150.226.56" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 570, - "hostname": "jp570.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "il62.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.35.105" + "169.150.226.68" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 570, - "hostname": "jp570.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "il62.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "156.146.35.105" + "169.150.226.68" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 571, - "hostname": "jp571.nordvpn.com", - "tcp": true, + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "il63.nordvpn.com", + "tcp": true, "udp": true, "ips": [ - "156.146.35.108" + "169.150.226.80" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 571, - "hostname": "jp571.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "il63.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "156.146.35.108" + "169.150.226.80" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 576, - "hostname": "jp576.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "il64.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.66" + "169.150.226.91" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 576, - "hostname": "jp576.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "il64.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.66" + "169.150.226.91" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 577, - "hostname": "jp577.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "il65.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.81" + "169.150.226.102" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 577, - "hostname": "jp577.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "il65.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.81" + "169.150.226.102" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 578, - "hostname": "jp578.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "il66.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.71" + "169.150.226.113" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 578, - "hostname": "jp578.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "il66.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.71" + "169.150.226.113" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 579, - "hostname": "jp579.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "il67.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.76" + "169.150.226.22" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 579, - "hostname": "jp579.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "il67.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.76" + "169.150.226.22" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 581, - "hostname": "jp581.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "il68.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.210.59" + "169.150.226.23" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 581, - "hostname": "jp581.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "il68.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "37.120.210.59" + "169.150.226.23" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 582, - "hostname": "jp582.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "il69.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.210.83" + "169.150.226.24" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 582, - "hostname": "jp582.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "il69.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "37.120.210.83" + "169.150.226.24" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 583, - "hostname": "jp583.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "il70.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.210.91" + "169.150.226.25" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 583, - "hostname": "jp583.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "il70.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "37.120.210.91" + "169.150.226.25" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 584, - "hostname": "jp584.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "il71.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.210.99" + "169.150.226.26" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 584, - "hostname": "jp584.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "il71.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "37.120.210.99" + "169.150.226.26" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 585, - "hostname": "jp585.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "il72.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.49" + "169.150.226.27" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 585, - "hostname": "jp585.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "il72.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.49" + "169.150.226.27" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 586, - "hostname": "jp586.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "il73.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.44" + "169.150.226.28" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 586, - "hostname": "jp586.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "il73.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.44" + "169.150.226.28" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 587, - "hostname": "jp587.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "il75.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.39" + "169.150.226.30" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 587, - "hostname": "jp587.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "il75.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.39" + "169.150.226.30" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 588, - "hostname": "jp588.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "il76.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.34" + "169.150.226.31" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 588, - "hostname": "jp588.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "il76.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.34" + "169.150.226.31" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 589, - "hostname": "jp589.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "il77.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.161.86" + "169.150.226.33" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 589, - "hostname": "jp589.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "il77.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "89.187.161.86" + "169.150.226.33" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 590, - "hostname": "jp590.nordvpn.com", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "il78.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.86" + "169.150.226.39" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 590, - "hostname": "jp590.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Israel", + "region": "Africa, the Middle East and India", + "city": "Tel Aviv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "il78.nordvpn.com", + "wgpubkey": "uwlNXjsX4meWkGpmZreFfjpxNpaGtqFiR/7I/DYSXHI=", "ips": [ - "212.102.50.86" + "169.150.226.39" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 591, - "hostname": "jp591.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "it132.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.91" + "217.138.197.75" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 591, - "hostname": "jp591.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "it132.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "212.102.50.91" + "217.138.197.75" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 592, - "hostname": "jp592.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "it146.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.96" + "212.102.54.108" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 592, - "hostname": "jp592.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "it146.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "212.102.50.96" + "212.102.54.108" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 593, - "hostname": "jp593.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "it147.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.101" + "212.102.54.98" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 593, - "hostname": "jp593.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "it147.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "212.102.50.101" + "212.102.54.98" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 594, - "hostname": "jp594.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "it148.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.106" + "212.102.54.118" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 594, - "hostname": "jp594.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "it148.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "212.102.50.106" + "212.102.54.118" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 595, - "hostname": "jp595.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "it149.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.50.111" + "212.102.54.103" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 595, - "hostname": "jp595.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "it149.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "212.102.50.111" + "212.102.54.103" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 602, - "hostname": "jp602.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "it150.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.27" + "212.102.54.113" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 602, - "hostname": "jp602.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "it150.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.27" + "212.102.54.113" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 603, - "hostname": "jp603.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "it156.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.35" + "217.138.219.171" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 603, - "hostname": "jp603.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "it156.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.35" + "217.138.219.171" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 604, - "hostname": "jp604.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "it157.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.43" + "217.138.219.163" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 604, - "hostname": "jp604.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "it157.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.43" + "217.138.219.163" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 605, - "hostname": "jp605.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "it174.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.51" + "192.145.127.179" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 605, - "hostname": "jp605.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "it174.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.51" + "192.145.127.179" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 606, - "hostname": "jp606.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "it186.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.59" + "37.120.201.211" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 606, - "hostname": "jp606.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "it186.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.59" + "37.120.201.211" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 607, - "hostname": "jp607.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "it187.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.67" + "37.120.201.219" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 607, - "hostname": "jp607.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "it187.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.67" + "37.120.201.219" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 608, - "hostname": "jp608.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "it188.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.75" + "37.120.201.227" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 608, - "hostname": "jp608.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "it188.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.75" + "37.120.201.227" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 609, - "hostname": "jp609.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "it189.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.83" + "37.120.201.235" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 609, - "hostname": "jp609.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "it189.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.83" + "37.120.201.235" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 610, - "hostname": "jp610.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "it190.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.11" + "37.120.201.243" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 610, - "hostname": "jp610.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "it190.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.11" + "37.120.201.243" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 611, - "hostname": "jp611.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "it191.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.91" + "37.120.201.171" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 611, - "hostname": "jp611.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "it191.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.91" + "37.120.201.171" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 612, - "hostname": "jp612.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "it192.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.99" + "37.120.201.179" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 612, - "hostname": "jp612.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "it192.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.99" + "37.120.201.179" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 613, - "hostname": "jp613.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "it193.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.107" + "37.120.201.187" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 613, - "hostname": "jp613.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "it193.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.107" + "37.120.201.187" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 614, - "hostname": "jp614.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "it194.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.115" + "37.120.201.195" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 614, - "hostname": "jp614.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "it194.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.115" + "37.120.201.195" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 615, - "hostname": "jp615.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "it195.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.123" + "37.120.201.203" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 615, - "hostname": "jp615.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "it195.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.123" + "37.120.201.203" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 616, - "hostname": "jp616.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "it196.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.131" + "217.138.197.43" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 616, - "hostname": "jp616.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "it196.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.131" + "217.138.197.43" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 617, - "hostname": "jp617.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "it197.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.139" + "217.138.197.51" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 617, - "hostname": "jp617.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "it197.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.139" + "217.138.197.51" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 618, - "hostname": "jp618.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "it198.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.147" + "217.138.197.59" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 618, - "hostname": "jp618.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "it198.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.147" + "217.138.197.59" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 619, - "hostname": "jp619.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "it199.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.155" + "217.138.197.67" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 619, - "hostname": "jp619.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "it199.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.155" + "217.138.197.67" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 620, - "hostname": "jp620.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "it201.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.163" + "217.138.197.235" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 620, - "hostname": "jp620.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "it201.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.163" + "217.138.197.235" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 621, - "hostname": "jp621.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "it203.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.171" + "217.138.197.243" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 621, - "hostname": "jp621.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "it203.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.171" + "217.138.197.243" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 622, - "hostname": "jp622.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "it204.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.179" + "217.138.197.251" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 622, - "hostname": "jp622.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "it204.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.179" + "217.138.197.251" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 623, - "hostname": "jp623.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "it205.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.187" + "217.138.219.35" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 623, - "hostname": "jp623.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "it205.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.187" + "217.138.219.35" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 624, - "hostname": "jp624.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "it210.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.195" + "138.199.54.236" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 624, - "hostname": "jp624.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "it210.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.195" + "138.199.54.236" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 625, - "hostname": "jp625.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "it211.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.10.99.203" + "138.199.54.231" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 625, - "hostname": "jp625.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "it211.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "203.10.99.203" + "138.199.54.231" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 626, - "hostname": "jp626.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "it212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.21.71" + "138.199.54.226" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 626, - "hostname": "jp626.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "it212.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "138.199.21.71" + "138.199.54.226" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 627, - "hostname": "jp627.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "it213.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.21.66" + "146.70.73.75" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 627, - "hostname": "jp627.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "it213.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "138.199.21.66" + "146.70.73.75" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 628, - "hostname": "jp628.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "it214.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.21.76" + "146.70.73.83" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 628, - "hostname": "jp628.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "it214.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "138.199.21.76" + "146.70.73.83" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 629, - "hostname": "jp629.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "it215.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.21.81" + "45.9.251.27" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 629, - "hostname": "jp629.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "it215.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "138.199.21.81" + "45.9.251.27" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 630, - "hostname": "jp630.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "it216.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.21.91" + "45.9.251.35" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 630, - "hostname": "jp630.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "it216.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "138.199.21.91" + "45.9.251.35" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 631, - "hostname": "jp631.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "it217.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.21.86" + "82.102.21.35" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 631, - "hostname": "jp631.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "it217.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "138.199.21.86" + "82.102.21.35" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 668, - "hostname": "jp668.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "it218.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.18" + "82.102.21.43" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 668, - "hostname": "jp668.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "it218.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.18" + "82.102.21.43" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 669, - "hostname": "jp669.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "it219.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.20" + "82.102.21.123" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 669, - "hostname": "jp669.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "it219.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.20" + "82.102.21.123" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 670, - "hostname": "jp670.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "it220.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.22" + "82.102.21.195" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 670, - "hostname": "jp670.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "it220.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.22" + "82.102.21.195" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 671, - "hostname": "jp671.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "it221.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.24" + "95.174.64.35" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 671, - "hostname": "jp671.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "it221.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.24" + "95.174.64.35" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 672, - "hostname": "jp672.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "it222.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.26" + "146.70.73.91" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 672, - "hostname": "jp672.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "it222.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.26" + "146.70.73.91" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 673, - "hostname": "jp673.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "it223.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.28" + "138.199.54.242" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 673, - "hostname": "jp673.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "it223.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.28" + "138.199.54.242" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 674, - "hostname": "jp674.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "it224.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.30" + "138.199.54.247" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 674, - "hostname": "jp674.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "it224.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.30" + "138.199.54.247" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 675, - "hostname": "jp675.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "it225.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.32" + "178.249.211.42" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 675, - "hostname": "jp675.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "it225.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.32" + "178.249.211.42" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 676, - "hostname": "jp676.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "it226.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.34" + "178.249.211.37" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 676, - "hostname": "jp676.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "it226.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.34" + "178.249.211.37" ] }, { "vpn": "openvpn", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 677, - "hostname": "jp677.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "it227.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.89.36" + "178.249.211.32" ] }, { "vpn": "wireguard", - "country": "Japan", - "region": "Asia Pacific", - "city": "Tokyo", - "number": 677, - "hostname": "jp677.nordvpn.com", - "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "country": "Italy", + "region": "Europe", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "it227.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "194.195.89.36" + "178.249.211.32" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 44, - "hostname": "lv44.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "it228.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.54.3" + "178.249.211.27" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 44, - "hostname": "lv44.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "it228.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "196.240.54.3" + "178.249.211.27" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 45, - "hostname": "lv45.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "it229.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.54.11" + "178.249.211.22" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 45, - "hostname": "lv45.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "it229.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "196.240.54.11" + "178.249.211.22" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 46, - "hostname": "lv46.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "it230.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.54.19" + "178.249.211.17" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 46, - "hostname": "lv46.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "it230.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "196.240.54.19" + "178.249.211.17" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 48, - "hostname": "lv48.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "it232.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.54.35" + "178.249.211.7" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 48, - "hostname": "lv48.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "it232.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "196.240.54.35" + "178.249.211.7" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 49, - "hostname": "lv49.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "it233.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.54.51" + "178.249.211.2" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 49, - "hostname": "lv49.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "it233.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "196.240.54.51" + "178.249.211.2" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 50, - "hostname": "lv50.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "it237.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.54.59" + "178.249.211.58" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 50, - "hostname": "lv50.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "it237.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "196.240.54.59" + "178.249.211.58" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 52, - "hostname": "lv52.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "it238.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "196.240.54.43" + "178.249.211.53" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 52, - "hostname": "lv52.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "it238.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "196.240.54.43" + "178.249.211.53" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 58, - "hostname": "lv58.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "it239.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.176.222.163" + "178.249.211.48" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 58, - "hostname": "lv58.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "it239.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "185.176.222.163" + "178.249.211.48" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 59, - "hostname": "lv59.nordvpn.com", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "it240.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.176.222.156" + "178.249.211.181" ] }, { "vpn": "wireguard", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 59, - "hostname": "lv59.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "it240.nordvpn.com", + "wgpubkey": "FgxaycYZ4t1kp4x7LDv60sczNTAl0h/d4pyyUNHhgBc=", "ips": [ - "185.176.222.156" + "178.249.211.181" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 60, - "hostname": "lv60.nordvpn.com", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 241, + "hostname": "it241.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.176.222.138" + "178.249.211.11" ] }, { - "vpn": "wireguard", - "country": "Latvia", + "vpn": "openvpn", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 60, - "hostname": "lv60.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 242, + "hostname": "it242.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.176.222.138" + "178.249.211.13" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 61, - "hostname": "lv61.nordvpn.com", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 243, + "hostname": "it243.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.176.222.135" + "149.102.237.65" ] }, { - "vpn": "wireguard", - "country": "Latvia", + "vpn": "openvpn", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 61, - "hostname": "lv61.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 244, + "hostname": "it244.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.176.222.135" + "149.102.237.67" ] }, { "vpn": "openvpn", - "country": "Latvia", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 62, - "hostname": "lv62.nordvpn.com", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 246, + "hostname": "it246.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.176.222.134" + "149.102.237.80" ] }, { - "vpn": "wireguard", - "country": "Latvia", + "vpn": "openvpn", + "country": "Italy", "region": "Europe", - "city": "Riga", - "number": 62, - "hostname": "lv62.nordvpn.com", - "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 247, + "hostname": "it247.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.176.222.134" + "149.102.237.82" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 7, - "hostname": "lt7.nordvpn.com", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 248, + "hostname": "it248.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.65.50.11" + "149.102.237.75" ] }, { - "vpn": "wireguard", - "country": "Lithuania", + "vpn": "openvpn", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 7, - "hostname": "lt7.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 249, + "hostname": "it249.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.65.50.11" + "149.102.237.77" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 8, - "hostname": "lt8.nordvpn.com", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 287, + "hostname": "it287.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.65.50.17" + "149.102.237.85" ] }, { - "vpn": "wireguard", - "country": "Lithuania", + "vpn": "openvpn", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 8, - "hostname": "lt8.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 288, + "hostname": "it288.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.65.50.17" + "149.102.237.87" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 9, - "hostname": "lt9.nordvpn.com", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 289, + "hostname": "it289.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.65.50.23" + "178.249.211.4" ] }, { - "vpn": "wireguard", - "country": "Lithuania", + "vpn": "openvpn", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 9, - "hostname": "lt9.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Milan", + "categories": [ + "Dedicated IP" + ], + "number": 290, + "hostname": "it290.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.65.50.23" + "178.249.211.8" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 10, - "hostname": "lt10.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "it250.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.65.50.29" + "85.190.232.100" ] }, { "vpn": "wireguard", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 10, - "hostname": "lt10.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 250, + "hostname": "it250.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "185.65.50.29" + "85.190.232.100" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 11, - "hostname": "lt11.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 251, + "hostname": "it251.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.65.50.35" + "85.190.232.102" ] }, { "vpn": "wireguard", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 11, - "hostname": "lt11.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 251, + "hostname": "it251.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "185.65.50.35" + "85.190.232.102" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 13, - "hostname": "lt13.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "it252.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.82.33.4" + "85.190.232.104" ] }, { "vpn": "wireguard", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 13, - "hostname": "lt13.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "it252.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "45.82.33.4" + "85.190.232.104" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 14, - "hostname": "lt14.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "it253.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.82.33.6" + "85.190.232.106" ] }, { "vpn": "wireguard", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 14, - "hostname": "lt14.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 253, + "hostname": "it253.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "45.82.33.6" + "85.190.232.106" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 15, - "hostname": "lt15.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "it254.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.82.33.8" + "85.190.232.108" ] }, { "vpn": "wireguard", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 15, - "hostname": "lt15.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 254, + "hostname": "it254.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "45.82.33.8" + "85.190.232.108" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 16, - "hostname": "lt16.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "it255.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.82.33.10" + "85.190.232.110" ] }, { "vpn": "wireguard", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 16, - "hostname": "lt16.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 255, + "hostname": "it255.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "45.82.33.10" + "85.190.232.110" ] }, { "vpn": "openvpn", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 17, - "hostname": "lt17.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "it256.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.82.33.14" + "85.190.232.112" ] }, { "vpn": "wireguard", - "country": "Lithuania", + "country": "Italy", "region": "Europe", - "city": "Vilnius", - "number": 17, - "hostname": "lt17.nordvpn.com", - "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 256, + "hostname": "it256.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "45.82.33.14" + "85.190.232.112" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 102, - "hostname": "lu102.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "it257.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.0" + "85.190.232.114" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 102, - "hostname": "lu102.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", - "ips": [ - "194.110.85.0" - ] + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 257, + "hostname": "it257.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", + "ips": [ + "85.190.232.114" + ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 103, - "hostname": "lu103.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "it258.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.16" + "85.190.232.116" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 103, - "hostname": "lu103.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 258, + "hostname": "it258.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.16" + "85.190.232.116" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 104, - "hostname": "lu104.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "it259.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.32" + "85.190.232.118" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 104, - "hostname": "lu104.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 259, + "hostname": "it259.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.32" + "85.190.232.118" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 105, - "hostname": "lu105.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "it260.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.48" + "85.190.232.120" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 105, - "hostname": "lu105.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 260, + "hostname": "it260.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.48" + "85.190.232.120" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 106, - "hostname": "lu106.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "it261.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.64" + "85.190.232.122" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 106, - "hostname": "lu106.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 261, + "hostname": "it261.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.64" + "85.190.232.122" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 107, - "hostname": "lu107.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "it262.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.80" + "85.190.232.124" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 107, - "hostname": "lu107.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 262, + "hostname": "it262.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.80" + "85.190.232.124" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 108, - "hostname": "lu108.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "it263.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.96" + "85.190.232.126" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 108, - "hostname": "lu108.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 263, + "hostname": "it263.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.96" + "85.190.232.126" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 109, - "hostname": "lu109.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "it264.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.112" + "85.190.232.128" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 109, - "hostname": "lu109.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 264, + "hostname": "it264.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.112" + "85.190.232.128" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 110, - "hostname": "lu110.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "it265.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.128" + "85.190.232.130" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 110, - "hostname": "lu110.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 265, + "hostname": "it265.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.128" + "85.190.232.130" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 111, - "hostname": "lu111.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "it266.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.144" + "85.190.232.132" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 111, - "hostname": "lu111.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 266, + "hostname": "it266.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.144" + "85.190.232.132" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 112, - "hostname": "lu112.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "it267.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.160" + "85.190.232.134" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 112, - "hostname": "lu112.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 267, + "hostname": "it267.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.160" + "85.190.232.134" ] }, { "vpn": "openvpn", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 113, - "hostname": "lu113.nordvpn.com", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "it268.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.85.176" + "85.190.232.136" ] }, { "vpn": "wireguard", - "country": "Luxembourg", + "country": "Italy", "region": "Europe", - "city": "Luxembourg", - "number": 113, - "hostname": "lu113.nordvpn.com", - "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 268, + "hostname": "it268.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "194.110.85.176" + "85.190.232.136" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 37, - "hostname": "my37.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "it269.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.87.221.198" + "85.190.232.138" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 37, - "hostname": "my37.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 269, + "hostname": "it269.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.87.221.198" + "85.190.232.138" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 38, - "hostname": "my38.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "it270.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.87.221.252" + "85.190.232.140" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 38, - "hostname": "my38.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 270, + "hostname": "it270.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.87.221.252" + "85.190.232.140" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 39, - "hostname": "my39.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "it271.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.87.221.137" + "85.190.232.142" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 39, - "hostname": "my39.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 271, + "hostname": "it271.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.87.221.137" + "85.190.232.142" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 40, - "hostname": "my40.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "it272.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.73.12.106" + "85.190.232.144" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 40, - "hostname": "my40.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 272, + "hostname": "it272.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.73.12.106" + "85.190.232.144" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 41, - "hostname": "my41.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "it273.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.73.12.103" + "85.190.232.146" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 41, - "hostname": "my41.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 273, + "hostname": "it273.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.73.12.103" + "85.190.232.146" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 42, - "hostname": "my42.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "it274.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.73.12.100" + "85.190.232.148" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 42, - "hostname": "my42.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 274, + "hostname": "it274.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.73.12.100" + "85.190.232.148" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 43, - "hostname": "my43.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "it275.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.73.12.97" + "85.190.232.150" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 43, - "hostname": "my43.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 275, + "hostname": "it275.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.73.12.97" + "85.190.232.150" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 44, - "hostname": "my44.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "it276.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.73.12.94" + "85.190.232.152" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 44, - "hostname": "my44.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 276, + "hostname": "it276.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.73.12.94" + "85.190.232.152" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 45, - "hostname": "my45.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "it277.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.73.12.91" + "85.190.232.154" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 45, - "hostname": "my45.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 277, + "hostname": "it277.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.73.12.91" + "85.190.232.154" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 46, - "hostname": "my46.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "it278.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.87.222.102" + "85.190.232.156" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 46, - "hostname": "my46.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 278, + "hostname": "it278.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.87.222.102" + "85.190.232.156" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 47, - "hostname": "my47.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "it279.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.73.12.61" + "85.190.232.158" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 47, - "hostname": "my47.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 279, + "hostname": "it279.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.73.12.61" + "85.190.232.158" ] }, { "vpn": "openvpn", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 48, - "hostname": "my48.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "it280.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "202.73.12.73" + "85.190.232.160" ] }, { "vpn": "wireguard", - "country": "Malaysia", - "region": "Asia Pacific", - "city": "Kuala Lumpur", - "number": 48, - "hostname": "my48.nordvpn.com", - "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 280, + "hostname": "it280.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "202.73.12.73" + "85.190.232.160" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 70, - "hostname": "mx70.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 281, + "hostname": "it281.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.102" + "85.190.232.162" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 70, - "hostname": "mx70.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 281, + "hostname": "it281.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "185.153.177.102" + "85.190.232.162" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 71, - "hostname": "mx71.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 282, + "hostname": "it282.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.104" + "85.190.232.164" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 71, - "hostname": "mx71.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 282, + "hostname": "it282.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "185.153.177.104" + "85.190.232.164" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 72, - "hostname": "mx72.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "it283.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.106" + "85.190.232.166" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 72, - "hostname": "mx72.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 283, + "hostname": "it283.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "185.153.177.106" + "85.190.232.166" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 73, - "hostname": "mx73.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "it284.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.108" + "85.190.232.168" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 73, - "hostname": "mx73.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 284, + "hostname": "it284.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "185.153.177.108" + "85.190.232.168" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 74, - "hostname": "mx74.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "it285.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.110" + "85.190.232.170" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 74, - "hostname": "mx74.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 285, + "hostname": "it285.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "185.153.177.110" + "85.190.232.170" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 80, - "hostname": "mx80.nordvpn.com", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "it286.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.122" + "85.190.232.172" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 80, - "hostname": "mx80.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Italy", + "region": "Europe", + "city": "Rome", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "it286.nordvpn.com", + "wgpubkey": "4zVJiM7ZTy8cu1pTpq65kRWg92fSwqZ18tClJMffMHk=", "ips": [ - "185.153.177.122" + "85.190.232.172" ] }, { "vpn": "openvpn", - "country": "Mexico", + "country": "Jamaica", "region": "The Americas", - "city": "Mexico", - "number": 81, - "hostname": "mx81.nordvpn.com", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "jm1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.124" + "193.9.34.1" ] }, { "vpn": "wireguard", - "country": "Mexico", + "country": "Jamaica", "region": "The Americas", - "city": "Mexico", - "number": 81, - "hostname": "mx81.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "jm1.nordvpn.com", + "wgpubkey": "/vZCA9m2tWPmYpy/12cUjjWNyLbys5bzNGMq2pmHOBM=", "ips": [ - "185.153.177.124" + "193.9.34.1" ] }, { "vpn": "openvpn", - "country": "Mexico", + "country": "Jamaica", "region": "The Americas", - "city": "Mexico", - "number": 82, - "hostname": "mx82.nordvpn.com", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "jm2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.126" + "193.9.34.3" ] }, { "vpn": "wireguard", - "country": "Mexico", + "country": "Jamaica", "region": "The Americas", - "city": "Mexico", - "number": 82, - "hostname": "mx82.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "city": "Kingston", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "jm2.nordvpn.com", + "wgpubkey": "/vZCA9m2tWPmYpy/12cUjjWNyLbys5bzNGMq2pmHOBM=", "ips": [ - "185.153.177.126" + "193.9.34.3" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 83, - "hostname": "mx83.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 632, + "hostname": "jp632.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.158" + "192.166.247.100" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 83, - "hostname": "mx83.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 632, + "hostname": "jp632.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.158" + "192.166.247.100" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 84, - "hostname": "mx84.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 633, + "hostname": "jp633.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.170" + "192.166.247.102" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 84, - "hostname": "mx84.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 633, + "hostname": "jp633.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.170" + "192.166.247.102" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 85, - "hostname": "mx85.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 634, + "hostname": "jp634.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.182" + "192.166.247.104" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 85, - "hostname": "mx85.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 634, + "hostname": "jp634.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.182" + "192.166.247.104" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 86, - "hostname": "mx86.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 635, + "hostname": "jp635.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.194" + "192.166.247.106" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 86, - "hostname": "mx86.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 635, + "hostname": "jp635.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.194" + "192.166.247.106" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 87, - "hostname": "mx87.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 636, + "hostname": "jp636.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.206" + "192.166.247.108" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 87, - "hostname": "mx87.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 636, + "hostname": "jp636.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.206" + "192.166.247.108" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 88, - "hostname": "mx88.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 637, + "hostname": "jp637.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.218" + "192.166.247.110" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 88, - "hostname": "mx88.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 637, + "hostname": "jp637.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.218" + "192.166.247.110" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 89, - "hostname": "mx89.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "jp638.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.230" + "192.166.247.112" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 89, - "hostname": "mx89.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 638, + "hostname": "jp638.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.230" + "192.166.247.112" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 90, - "hostname": "mx90.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "jp639.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.112" + "192.166.247.114" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 90, - "hostname": "mx90.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 639, + "hostname": "jp639.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.112" + "192.166.247.114" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 91, - "hostname": "mx91.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "jp640.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.114" + "192.166.247.116" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 91, - "hostname": "mx91.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 640, + "hostname": "jp640.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.114" + "192.166.247.116" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 92, - "hostname": "mx92.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "jp641.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.116" + "192.166.247.118" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 92, - "hostname": "mx92.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 641, + "hostname": "jp641.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.116" + "192.166.247.118" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 93, - "hostname": "mx93.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "jp642.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.118" + "192.166.247.120" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 93, - "hostname": "mx93.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 642, + "hostname": "jp642.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.118" + "192.166.247.120" ] }, { "vpn": "openvpn", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 94, - "hostname": "mx94.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "jp643.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.153.177.120" + "192.166.247.122" ] }, { "vpn": "wireguard", - "country": "Mexico", - "region": "The Americas", - "city": "Mexico", - "number": 94, - "hostname": "mx94.nordvpn.com", - "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 643, + "hostname": "jp643.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "185.153.177.120" + "192.166.247.122" ] }, { "vpn": "openvpn", - "country": "Moldova", - "region": "Europe", - "city": "Chisinau", - "number": 19, - "hostname": "md19.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "jp644.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.175.141.209" + "192.166.247.124" ] }, { "vpn": "wireguard", - "country": "Moldova", - "region": "Europe", - "city": "Chisinau", - "number": 19, - "hostname": "md19.nordvpn.com", - "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 644, + "hostname": "jp644.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "178.175.141.209" + "192.166.247.124" ] }, { "vpn": "openvpn", - "country": "Moldova", - "region": "Europe", - "city": "Chisinau", - "number": 20, - "hostname": "md20.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "jp645.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.175.141.225" + "192.166.247.126" ] }, { "vpn": "wireguard", - "country": "Moldova", - "region": "Europe", - "city": "Chisinau", - "number": 20, - "hostname": "md20.nordvpn.com", - "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 645, + "hostname": "jp645.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "178.175.141.225" + "192.166.247.126" ] }, { "vpn": "openvpn", - "country": "Moldova", - "region": "Europe", - "city": "Chisinau", - "number": 21, - "hostname": "md21.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "jp646.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.175.141.241" + "192.166.247.128" ] }, { "vpn": "wireguard", - "country": "Moldova", - "region": "Europe", - "city": "Chisinau", - "number": 21, - "hostname": "md21.nordvpn.com", - "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 646, + "hostname": "jp646.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "178.175.141.241" + "192.166.247.128" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 716, - "hostname": "nl716.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "jp647.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.178" + "192.166.247.130" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 716, - "hostname": "nl716.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", - "ips": [ - "213.232.87.178" + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 647, + "hostname": "jp647.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", + "ips": [ + "192.166.247.130" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 717, - "hostname": "nl717.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "jp648.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.180" + "192.166.247.132" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 717, - "hostname": "nl717.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 648, + "hostname": "jp648.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.180" + "192.166.247.132" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 718, - "hostname": "nl718.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "jp649.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.182" + "192.166.247.134" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 718, - "hostname": "nl718.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 649, + "hostname": "jp649.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.182" + "192.166.247.134" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 719, - "hostname": "nl719.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "jp650.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.184" + "192.166.247.136" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 719, - "hostname": "nl719.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 650, + "hostname": "jp650.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.184" + "192.166.247.136" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 720, - "hostname": "nl720.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "jp651.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.186" + "192.166.247.138" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 720, - "hostname": "nl720.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 651, + "hostname": "jp651.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.186" + "192.166.247.138" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 721, - "hostname": "nl721.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "jp652.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.188" + "192.166.247.140" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 721, - "hostname": "nl721.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 652, + "hostname": "jp652.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.188" + "192.166.247.140" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 722, - "hostname": "nl722.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "jp653.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.190" + "192.166.247.142" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 722, - "hostname": "nl722.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 653, + "hostname": "jp653.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.190" + "192.166.247.142" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 723, - "hostname": "nl723.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "jp654.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.192" + "192.166.247.144" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 723, - "hostname": "nl723.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 654, + "hostname": "jp654.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.192" + "192.166.247.144" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 724, - "hostname": "nl724.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "jp655.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.194" + "192.166.247.146" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 724, - "hostname": "nl724.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 655, + "hostname": "jp655.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.194" + "192.166.247.146" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 725, - "hostname": "nl725.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "jp656.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.196" + "192.166.247.148" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 725, - "hostname": "nl725.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 656, + "hostname": "jp656.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.196" + "192.166.247.148" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 726, - "hostname": "nl726.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "jp657.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.198" + "192.166.247.150" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 726, - "hostname": "nl726.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 657, + "hostname": "jp657.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.198" + "192.166.247.150" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 727, - "hostname": "nl727.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "jp658.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.200" + "192.166.247.152" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 727, - "hostname": "nl727.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 658, + "hostname": "jp658.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.200" + "192.166.247.152" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 728, - "hostname": "nl728.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "jp659.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.202" + "192.166.247.154" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 728, - "hostname": "nl728.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 659, + "hostname": "jp659.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.202" + "192.166.247.154" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 729, - "hostname": "nl729.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "jp660.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.204" + "192.166.247.156" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 729, - "hostname": "nl729.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 660, + "hostname": "jp660.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.204" + "192.166.247.156" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 730, - "hostname": "nl730.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "jp661.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.206" + "192.166.247.158" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 730, - "hostname": "nl730.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 661, + "hostname": "jp661.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.206" + "192.166.247.158" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 731, - "hostname": "nl731.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "jp662.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.208" + "192.166.247.160" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 731, - "hostname": "nl731.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 662, + "hostname": "jp662.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.208" + "192.166.247.160" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 732, - "hostname": "nl732.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "jp663.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.210" + "192.166.247.162" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 732, - "hostname": "nl732.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 663, + "hostname": "jp663.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.210" + "192.166.247.162" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 733, - "hostname": "nl733.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "jp664.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.212" + "192.166.247.164" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 733, - "hostname": "nl733.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 664, + "hostname": "jp664.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.212" + "192.166.247.164" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 734, - "hostname": "nl734.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "jp665.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.214" + "192.166.247.166" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 734, - "hostname": "nl734.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 665, + "hostname": "jp665.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "213.232.87.214" + "192.166.247.166" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 815, - "hostname": "nl815.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "jp666.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.251" + "192.166.247.168" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 815, - "hostname": "nl815.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 666, + "hostname": "jp666.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "178.239.173.251" + "192.166.247.168" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 816, - "hostname": "nl816.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "jp667.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.247" + "192.166.247.170" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 816, - "hostname": "nl816.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Osaka", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 667, + "hostname": "jp667.nordvpn.com", + "wgpubkey": "HYPNHyiFNRmq+1VJomQtL0TG3YhpuFopmK4qLnpl6lk=", "ips": [ - "178.239.173.247" + "192.166.247.170" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 817, - "hostname": "nl817.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 429, + "hostname": "jp429.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.243" + "37.120.210.107" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 817, - "hostname": "nl817.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 429, + "hostname": "jp429.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.243" + "37.120.210.107" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 818, - "hostname": "nl818.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 454, + "hostname": "jp454.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.239" + "89.187.161.54" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 818, - "hostname": "nl818.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 454, + "hostname": "jp454.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.239" + "89.187.161.54" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 819, - "hostname": "nl819.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "jp514.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.235" + "37.120.154.211" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 819, - "hostname": "nl819.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "jp514.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.235" + "37.120.154.211" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 820, - "hostname": "nl820.nordvpn.com", - "tcp": true, - "udp": true, - "ips": [ - "178.239.173.231" + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "jp515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.107" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 820, - "hostname": "nl820.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "jp515.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.231" + "5.181.235.107" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 821, - "hostname": "nl821.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "jp516.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.227" + "5.181.235.115" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 821, - "hostname": "nl821.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "jp516.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.227" + "5.181.235.115" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 822, - "hostname": "nl822.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "jp517.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.223" + "5.181.235.83" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 822, - "hostname": "nl822.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "jp517.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.223" + "5.181.235.83" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 823, - "hostname": "nl823.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "jp518.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.219" + "156.146.35.115" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 823, - "hostname": "nl823.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "jp518.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.219" + "156.146.35.115" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 824, - "hostname": "nl824.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "jp519.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.215" + "212.102.50.116" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 824, - "hostname": "nl824.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "jp519.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.215" + "212.102.50.116" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 825, - "hostname": "nl825.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "jp520.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.211" + "212.102.50.119" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 825, - "hostname": "nl825.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "jp520.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.211" + "212.102.50.119" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 826, - "hostname": "nl826.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "jp521.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.207" + "212.102.50.122" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 826, - "hostname": "nl826.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "jp521.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.207" + "212.102.50.122" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 827, - "hostname": "nl827.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "jp522.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.203" + "212.102.50.203" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 827, - "hostname": "nl827.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "jp522.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.203" + "212.102.50.203" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 828, - "hostname": "nl828.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "jp523.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.199" + "212.102.50.206" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 828, - "hostname": "nl828.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "jp523.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.199" + "212.102.50.206" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 829, - "hostname": "nl829.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "jp524.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.195" + "212.102.50.209" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 829, - "hostname": "nl829.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "jp524.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.195" + "212.102.50.209" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 830, - "hostname": "nl830.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "jp525.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.191" + "212.102.50.194" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 830, - "hostname": "nl830.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "jp525.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.191" + "212.102.50.194" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 831, - "hostname": "nl831.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "jp526.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.187" + "212.102.50.197" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 831, - "hostname": "nl831.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "jp526.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.187" + "212.102.50.197" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 832, - "hostname": "nl832.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "jp527.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.183" + "212.102.50.200" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 832, - "hostname": "nl832.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "jp527.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.183" + "212.102.50.200" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 833, - "hostname": "nl833.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "jp528.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.179" + "212.102.51.194" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 833, - "hostname": "nl833.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "jp528.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.179" + "212.102.51.194" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 834, - "hostname": "nl834.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "jp529.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.175" + "212.102.51.197" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 834, - "hostname": "nl834.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "jp529.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.175" + "212.102.51.197" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 835, - "hostname": "nl835.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "jp530.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.171" + "212.102.51.200" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 835, - "hostname": "nl835.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "jp530.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.171" + "212.102.51.200" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 836, - "hostname": "nl836.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "jp531.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.167" + "212.102.50.212" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 836, - "hostname": "nl836.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "jp531.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.167" + "212.102.50.212" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 837, - "hostname": "nl837.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "jp532.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.163" + "212.102.51.218" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 837, - "hostname": "nl837.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "jp532.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.163" + "212.102.51.218" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 839, - "hostname": "nl839.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "jp533.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.173.159" + "212.102.51.215" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 839, - "hostname": "nl839.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "jp533.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "178.239.173.159" + "212.102.51.215" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 840, - "hostname": "nl840.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "jp534.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.67" + "212.102.51.212" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 840, - "hostname": "nl840.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", - "ips": [ - "194.127.172.67" - ] + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "jp534.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.51.212" + ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 841, - "hostname": "nl841.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "jp535.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.70" + "212.102.51.203" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 841, - "hostname": "nl841.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "jp535.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.70" + "212.102.51.203" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 842, - "hostname": "nl842.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "jp536.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.73" + "212.102.51.206" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 842, - "hostname": "nl842.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "jp536.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.73" + "212.102.51.206" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 843, - "hostname": "nl843.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "jp537.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.76" + "212.102.51.209" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 843, - "hostname": "nl843.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "jp537.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.76" + "212.102.51.209" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 844, - "hostname": "nl844.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "jp538.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.79" + "37.120.154.43" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 844, - "hostname": "nl844.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "jp538.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.79" + "37.120.154.43" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 845, - "hostname": "nl845.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "jp539.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.82" + "37.120.154.51" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 845, - "hostname": "nl845.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "jp539.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.82" + "37.120.154.51" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 846, - "hostname": "nl846.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "jp540.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.85" + "37.120.154.203" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 846, - "hostname": "nl846.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "jp540.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.85" + "37.120.154.203" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 847, - "hostname": "nl847.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "jp541.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.88" + "37.120.154.235" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 847, - "hostname": "nl847.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "jp541.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.88" + "37.120.154.235" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 848, - "hostname": "nl848.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "jp542.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.91" + "156.146.35.66" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 848, - "hostname": "nl848.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "jp542.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.91" + "156.146.35.66" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 849, - "hostname": "nl849.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "jp543.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.94" + "156.146.35.93" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 849, - "hostname": "nl849.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "jp543.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.94" + "156.146.35.93" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 850, - "hostname": "nl850.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "jp544.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.97" + "156.146.35.90" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 850, - "hostname": "nl850.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "jp544.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.97" + "156.146.35.90" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 851, - "hostname": "nl851.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "jp545.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.100" + "156.146.35.87" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 851, - "hostname": "nl851.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "jp545.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.100" + "156.146.35.87" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 852, - "hostname": "nl852.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "jp546.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.103" + "156.146.35.84" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 852, - "hostname": "nl852.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "jp546.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.103" + "156.146.35.84" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 853, - "hostname": "nl853.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "jp547.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.106" + "156.146.35.81" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 853, - "hostname": "nl853.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "jp547.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.106" + "156.146.35.81" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 854, - "hostname": "nl854.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "jp548.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.127.172.109" + "156.146.35.78" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 854, - "hostname": "nl854.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "jp548.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "194.127.172.109" + "156.146.35.78" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 863, - "hostname": "nl863.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "jp549.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.57" + "156.146.35.75" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 863, - "hostname": "nl863.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "jp549.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.57" + "156.146.35.75" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 864, - "hostname": "nl864.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "jp550.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.59" + "156.146.35.72" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 864, - "hostname": "nl864.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "jp550.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.59" + "156.146.35.72" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 865, - "hostname": "nl865.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "jp551.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.61" + "156.146.35.69" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 865, - "hostname": "nl865.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "jp551.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.61" + "156.146.35.69" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 866, - "hostname": "nl866.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "jp552.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.63" + "5.181.235.19" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 866, - "hostname": "nl866.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "jp552.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.63" + "5.181.235.19" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 867, - "hostname": "nl867.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "jp553.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.65" + "5.181.235.35" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 867, - "hostname": "nl867.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "jp553.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.65" + "5.181.235.35" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 868, - "hostname": "nl868.nordvpn.com", - "tcp": true, - "udp": true, - "ips": [ - "213.232.87.67" + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "jp554.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.181.235.43" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 868, - "hostname": "nl868.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "jp554.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.67" + "5.181.235.43" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 869, - "hostname": "nl869.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "jp555.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.69" + "5.181.235.51" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 869, - "hostname": "nl869.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "jp555.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.69" + "5.181.235.51" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 870, - "hostname": "nl870.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "jp562.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.71" + "82.102.28.35" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 870, - "hostname": "nl870.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "jp562.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.71" + "82.102.28.35" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 871, - "hostname": "nl871.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "jp563.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.73" + "82.102.28.83" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 871, - "hostname": "nl871.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "jp563.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.73" + "82.102.28.83" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 872, - "hostname": "nl872.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "jp564.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.75" + "91.207.174.147" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 872, - "hostname": "nl872.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "jp564.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.75" + "91.207.174.147" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 873, - "hostname": "nl873.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "jp565.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.77" + "91.207.174.155" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 873, - "hostname": "nl873.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "jp565.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.77" + "91.207.174.155" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 874, - "hostname": "nl874.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "jp566.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.79" + "91.207.174.163" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 874, - "hostname": "nl874.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "jp566.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.79" + "91.207.174.163" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 875, - "hostname": "nl875.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "jp567.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.81" + "156.146.35.96" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 875, - "hostname": "nl875.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "jp567.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.81" + "156.146.35.96" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 876, - "hostname": "nl876.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "jp568.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.83" + "156.146.35.99" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 876, - "hostname": "nl876.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "jp568.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.83" + "156.146.35.99" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 877, - "hostname": "nl877.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "jp569.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.85" + "156.146.35.102" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 877, - "hostname": "nl877.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "jp569.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.85" + "156.146.35.102" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 878, - "hostname": "nl878.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "jp570.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.87" + "156.146.35.105" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 878, - "hostname": "nl878.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "jp570.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.87" + "156.146.35.105" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 879, - "hostname": "nl879.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "jp571.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.89" + "156.146.35.108" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 879, - "hostname": "nl879.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "jp571.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.89" + "156.146.35.108" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 880, - "hostname": "nl880.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "jp576.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.91" + "89.187.161.66" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 880, - "hostname": "nl880.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "jp576.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.91" + "89.187.161.66" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 881, - "hostname": "nl881.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 577, + "hostname": "jp577.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.93" + "89.187.161.81" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 881, - "hostname": "nl881.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 577, + "hostname": "jp577.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.93" + "89.187.161.81" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 882, - "hostname": "nl882.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 578, + "hostname": "jp578.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.95" + "89.187.161.71" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 882, - "hostname": "nl882.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 578, + "hostname": "jp578.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.95" + "89.187.161.71" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 883, - "hostname": "nl883.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 579, + "hostname": "jp579.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.97" + "89.187.161.76" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 883, - "hostname": "nl883.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 579, + "hostname": "jp579.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.97" + "89.187.161.76" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 884, - "hostname": "nl884.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "jp581.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.99" + "37.120.210.59" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 884, - "hostname": "nl884.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "jp581.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.99" + "37.120.210.59" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 885, - "hostname": "nl885.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "jp582.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.101" + "37.120.210.83" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 885, - "hostname": "nl885.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "jp582.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.101" + "37.120.210.83" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 886, - "hostname": "nl886.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "jp583.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.103" + "37.120.210.91" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 886, - "hostname": "nl886.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "jp583.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", "ips": [ - "213.232.87.103" + "37.120.210.91" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 887, - "hostname": "nl887.nordvpn.com", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "jp584.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.105" + "37.120.210.99" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 887, - "hostname": "nl887.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", - "ips": [ - "213.232.87.105" - ] + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "jp584.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "37.120.210.99" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "jp585.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.49" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "jp585.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.49" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "jp586.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.44" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "jp586.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.44" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "jp587.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.39" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 587, + "hostname": "jp587.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.39" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "jp588.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "jp588.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "jp589.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.161.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "jp589.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "89.187.161.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "jp590.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "jp590.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "jp591.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "jp591.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "jp592.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.96" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "jp592.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "jp593.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.101" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "jp593.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.101" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "jp594.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.106" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "jp594.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "jp595.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.102.50.111" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "jp595.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "212.102.50.111" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "jp602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.27" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 602, + "hostname": "jp602.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.27" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 603, + "hostname": "jp603.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.35" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 603, + "hostname": "jp603.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.35" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 604, + "hostname": "jp604.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.43" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 604, + "hostname": "jp604.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.43" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "jp605.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.51" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 605, + "hostname": "jp605.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.51" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "jp606.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.59" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 606, + "hostname": "jp606.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.59" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "jp607.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.67" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 607, + "hostname": "jp607.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.67" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 608, + "hostname": "jp608.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.75" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 608, + "hostname": "jp608.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.75" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 609, + "hostname": "jp609.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.83" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 609, + "hostname": "jp609.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.83" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "jp610.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.11" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 610, + "hostname": "jp610.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.11" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "jp611.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 611, + "hostname": "jp611.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "jp612.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.99" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 612, + "hostname": "jp612.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.99" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "jp613.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.107" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 613, + "hostname": "jp613.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.107" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "jp614.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.115" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 614, + "hostname": "jp614.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.115" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "jp615.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.123" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 615, + "hostname": "jp615.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.123" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 616, + "hostname": "jp616.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.131" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 616, + "hostname": "jp616.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.131" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 617, + "hostname": "jp617.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.139" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 617, + "hostname": "jp617.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.139" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 618, + "hostname": "jp618.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.147" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 618, + "hostname": "jp618.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.147" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 619, + "hostname": "jp619.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.155" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 619, + "hostname": "jp619.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.155" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 620, + "hostname": "jp620.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.163" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 620, + "hostname": "jp620.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.163" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 621, + "hostname": "jp621.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.171" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 621, + "hostname": "jp621.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.171" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "jp622.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.179" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 622, + "hostname": "jp622.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.179" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "jp623.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.187" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 623, + "hostname": "jp623.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.187" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "jp624.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.195" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 624, + "hostname": "jp624.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.195" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 625, + "hostname": "jp625.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.10.99.203" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 625, + "hostname": "jp625.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "203.10.99.203" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 626, + "hostname": "jp626.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.71" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 626, + "hostname": "jp626.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.71" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 627, + "hostname": "jp627.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.66" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 627, + "hostname": "jp627.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.66" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 628, + "hostname": "jp628.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.76" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 628, + "hostname": "jp628.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.76" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 629, + "hostname": "jp629.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.81" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 629, + "hostname": "jp629.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.81" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 630, + "hostname": "jp630.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.91" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 630, + "hostname": "jp630.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.91" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 631, + "hostname": "jp631.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.86" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 631, + "hostname": "jp631.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "138.199.21.86" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "jp668.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.18" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 668, + "hostname": "jp668.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.18" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "jp669.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.20" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 669, + "hostname": "jp669.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "jp670.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.22" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 670, + "hostname": "jp670.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.22" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "jp671.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.24" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 671, + "hostname": "jp671.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.24" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "jp672.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.26" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 672, + "hostname": "jp672.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.26" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "jp673.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.28" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 673, + "hostname": "jp673.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.28" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "jp674.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.30" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 674, + "hostname": "jp674.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.30" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "jp675.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.32" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 675, + "hostname": "jp675.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.32" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "jp676.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 676, + "hostname": "jp676.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "jp677.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.195.89.36" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 677, + "hostname": "jp677.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.195.89.36" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 678, + "hostname": "jp678.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.111" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 679, + "hostname": "jp679.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.113" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 680, + "hostname": "jp680.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.121" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 681, + "hostname": "jp681.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.193" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 682, + "hostname": "jp682.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.195" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 683, + "hostname": "jp683.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.197" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 684, + "hostname": "jp684.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.205" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 685, + "hostname": "jp685.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.207" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 686, + "hostname": "jp686.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.200" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 687, + "hostname": "jp687.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.202" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 688, + "hostname": "jp688.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.116" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 689, + "hostname": "jp689.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.118" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "jp690.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.4" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 690, + "hostname": "jp690.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.4" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "jp691.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.6" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 691, + "hostname": "jp691.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.6" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "jp692.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.8" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 692, + "hostname": "jp692.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.8" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "jp693.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.10" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 693, + "hostname": "jp693.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.10" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "jp694.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.12" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 694, + "hostname": "jp694.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.12" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "jp695.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.14" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 695, + "hostname": "jp695.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.14" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "jp696.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.16" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 696, + "hostname": "jp696.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.16" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "jp697.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.18" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 697, + "hostname": "jp697.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.18" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "jp698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.20" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 698, + "hostname": "jp698.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.20" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "jp699.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.22" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 699, + "hostname": "jp699.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.22" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 700, + "hostname": "jp700.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.101" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 701, + "hostname": "jp701.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.103" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 702, + "hostname": "jp702.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.96" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 703, + "hostname": "jp703.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.98" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 704, + "hostname": "jp704.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.106" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 705, + "hostname": "jp705.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.21.108" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "jp706.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.24" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 706, + "hostname": "jp706.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.24" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "jp707.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.26" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 707, + "hostname": "jp707.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.26" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 708, + "hostname": "jp708.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.28" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 708, + "hostname": "jp708.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.28" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 709, + "hostname": "jp709.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.30" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 709, + "hostname": "jp709.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.30" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "jp710.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.32" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 710, + "hostname": "jp710.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.32" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "jp711.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.34" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 711, + "hostname": "jp711.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.34" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "jp712.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.36" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 712, + "hostname": "jp712.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.36" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "jp713.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.38" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 713, + "hostname": "jp713.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.38" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 715, + "hostname": "jp715.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.180.179.42" + ] + }, + { + "vpn": "wireguard", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 715, + "hostname": "jp715.nordvpn.com", + "wgpubkey": "SAio0Z0suFlRfmydzPdcn6MamqS7Mq4pSOm2YmJkLSs=", + "ips": [ + "194.180.179.42" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 716, + "hostname": "jp716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.220" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 717, + "hostname": "jp717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.222" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 718, + "hostname": "jp718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.215" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 719, + "hostname": "jp719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.217" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 720, + "hostname": "jp720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.210" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 721, + "hostname": "jp721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.212" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 722, + "hostname": "jp722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.233" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 723, + "hostname": "jp723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.235" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 724, + "hostname": "jp724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.239" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 725, + "hostname": "jp725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.241" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 726, + "hostname": "jp726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.246" + ] + }, + { + "vpn": "openvpn", + "country": "Japan", + "region": "Asia Pacific", + "city": "Tokyo", + "categories": [ + "Dedicated IP" + ], + "number": 727, + "hostname": "jp727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "154.47.23.248" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "je1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.35.1" + ] + }, + { + "vpn": "wireguard", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "je1.nordvpn.com", + "wgpubkey": "/pE6BdQaHL+MJScppKpbungAJ1dHcmWes3QzySAecm0=", + "ips": [ + "193.9.35.1" + ] + }, + { + "vpn": "openvpn", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "je2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.9.35.3" + ] + }, + { + "vpn": "wireguard", + "country": "Jersey", + "region": "Europe", + "city": "Saint Helier", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "je2.nordvpn.com", + "wgpubkey": "/pE6BdQaHL+MJScppKpbungAJ1dHcmWes3QzySAecm0=", + "ips": [ + "193.9.35.3" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kz1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.69.1" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "kz1.nordvpn.com", + "wgpubkey": "N2WP7/u8UGjo1dxQksD7xNao+TfGEaF83eog7VWJfHM=", + "ips": [ + "212.97.69.1" + ] + }, + { + "vpn": "openvpn", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kz2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.69.3" + ] + }, + { + "vpn": "wireguard", + "country": "Kazakhstan", + "region": "Asia Pacific", + "city": "Astana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "kz2.nordvpn.com", + "wgpubkey": "N2WP7/u8UGjo1dxQksD7xNao+TfGEaF83eog7VWJfHM=", + "ips": [ + "212.97.69.3" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Africa, the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ke1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.68.1" + ] + }, + { + "vpn": "wireguard", + "country": "Kenya", + "region": "Africa, the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ke1.nordvpn.com", + "wgpubkey": "QfcyKkh/hju9fGRUWTqv5ERmrOOBdKVOzXWdUXRKwXg=", + "ips": [ + "212.97.68.1" + ] + }, + { + "vpn": "openvpn", + "country": "Kenya", + "region": "Africa, the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ke2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.68.3" + ] + }, + { + "vpn": "wireguard", + "country": "Kenya", + "region": "Africa, the Middle East and India", + "city": "Nairobi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ke2.nordvpn.com", + "wgpubkey": "QfcyKkh/hju9fGRUWTqv5ERmrOOBdKVOzXWdUXRKwXg=", + "ips": [ + "212.97.68.3" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "la1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.132.1" + ] + }, + { + "vpn": "wireguard", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "la1.nordvpn.com", + "wgpubkey": "rCViZObfSkL4cNEQlnde4cTgqXgznuBGJbeNwJG8xz0=", + "ips": [ + "185.227.132.1" + ] + }, + { + "vpn": "openvpn", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "la2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.132.3" + ] + }, + { + "vpn": "wireguard", + "country": "Lao People's Democratic Republic", + "region": "Asia Pacific", + "city": "Vientiane", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "la2.nordvpn.com", + "wgpubkey": "rCViZObfSkL4cNEQlnde4cTgqXgznuBGJbeNwJG8xz0=", + "ips": [ + "185.227.132.3" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "lv44.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.3" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 44, + "hostname": "lv44.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.3" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "lv45.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.11" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 45, + "hostname": "lv45.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.11" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "lv46.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.19" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 46, + "hostname": "lv46.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.19" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "lv48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.35" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "lv48.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.35" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "lv49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.51" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "lv49.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.51" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "lv50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.59" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "lv50.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.59" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "lv52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "196.240.54.43" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "lv52.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "196.240.54.43" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 58, + "hostname": "lv58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.163" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 58, + "hostname": "lv58.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.163" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 59, + "hostname": "lv59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.156" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 59, + "hostname": "lv59.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.156" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 60, + "hostname": "lv60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.138" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 60, + "hostname": "lv60.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.138" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 61, + "hostname": "lv61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.135" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 61, + "hostname": "lv61.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.135" + ] + }, + { + "vpn": "openvpn", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 62, + "hostname": "lv62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.176.222.134" + ] + }, + { + "vpn": "wireguard", + "country": "Latvia", + "region": "Europe", + "city": "Riga", + "categories": [ + "Standard VPN servers" + ], + "number": 62, + "hostname": "lv62.nordvpn.com", + "wgpubkey": "Zid1YfpCDPeeyWzEEmiZLPcmwNopke/B/Pa/DtiViiw=", + "ips": [ + "185.176.222.134" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "region": "Africa, the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lb1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.133.1" + ] + }, + { + "vpn": "wireguard", + "country": "Lebanon", + "region": "Africa, the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lb1.nordvpn.com", + "wgpubkey": "fBsThQ76XqAs0sOeEZtXMZ2lsLcqlTm71ZJ1H+PpmWE=", + "ips": [ + "185.227.133.1" + ] + }, + { + "vpn": "openvpn", + "country": "Lebanon", + "region": "Africa, the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lb2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.227.133.3" + ] + }, + { + "vpn": "wireguard", + "country": "Lebanon", + "region": "Africa, the Middle East and India", + "city": "Beirut", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lb2.nordvpn.com", + "wgpubkey": "fBsThQ76XqAs0sOeEZtXMZ2lsLcqlTm71ZJ1H+PpmWE=", + "ips": [ + "185.227.133.3" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "li1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.70.1" + ] + }, + { + "vpn": "wireguard", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "li1.nordvpn.com", + "wgpubkey": "QknkoJz4Mh5YOcnkINlLfbWwwQnjfeJkYzRFz1hpfjo=", + "ips": [ + "212.97.70.1" + ] + }, + { + "vpn": "openvpn", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "li2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.70.3" + ] + }, + { + "vpn": "wireguard", + "country": "Liechtenstein", + "region": "Europe", + "city": "Vaduz", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "li2.nordvpn.com", + "wgpubkey": "QknkoJz4Mh5YOcnkINlLfbWwwQnjfeJkYzRFz1hpfjo=", + "ips": [ + "212.97.70.3" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "lt7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.11" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 7, + "hostname": "lt7.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.11" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "lt8.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.17" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8, + "hostname": "lt8.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.17" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "lt9.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.23" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9, + "hostname": "lt9.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.23" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "lt10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.29" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10, + "hostname": "lt10.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.29" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 11, + "hostname": "lt11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.65.50.35" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 11, + "hostname": "lt11.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "185.65.50.35" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "lt13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.4" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 13, + "hostname": "lt13.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.4" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "lt14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.6" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "lt14.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.6" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "lt15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.8" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "lt15.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.8" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "lt16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.10" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "lt16.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.10" + ] + }, + { + "vpn": "openvpn", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "lt17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.82.33.14" + ] + }, + { + "vpn": "wireguard", + "country": "Lithuania", + "region": "Europe", + "city": "Vilnius", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "lt17.nordvpn.com", + "wgpubkey": "2mBAP8mN/hbGrC9UpmidxCBUl3YVOLGyRRglP0MhyG0=", + "ips": [ + "45.82.33.14" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "lu102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.0" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "lu102.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.0" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "lu103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.16" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "lu103.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.16" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "lu104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.32" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "lu104.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.32" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "lu105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.48" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "lu105.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.48" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "lu106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.64" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "lu106.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.64" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "lu107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.80" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "lu107.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.80" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "lu108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.96" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "lu108.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.96" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "lu109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.112" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "lu109.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.112" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "lu110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.128" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "lu110.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.128" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "lu111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.144" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "lu111.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.144" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "lu112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.160" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "lu112.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.160" + ] + }, + { + "vpn": "openvpn", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "lu113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.110.85.176" + ] + }, + { + "vpn": "wireguard", + "country": "Luxembourg", + "region": "Europe", + "city": "Luxembourg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "lu113.nordvpn.com", + "wgpubkey": "sY6/62/rZcfnFAYjSFW5/iA3KVUWmAbJQvj2oubgKHY=", + "ips": [ + "194.110.85.176" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "my49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.100" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "my49.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.100" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "my50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.102" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "my50.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.102" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "my51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.104" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "my51.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.104" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "my52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.106" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "my52.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.106" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "my53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.108" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "my53.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.108" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "my54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.110" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "my54.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.110" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "my55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.112" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "my55.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.112" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "my56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.114" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "my56.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.114" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "my57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.116" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "my57.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.116" + ] + }, + { + "vpn": "openvpn", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "my58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.36.237.118" + ] + }, + { + "vpn": "wireguard", + "country": "Malaysia", + "region": "Asia Pacific", + "city": "Kuala Lumpur", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "my58.nordvpn.com", + "wgpubkey": "l1sRg+3hrtHWrEKxvZ4zrzQ5G+ewLIowIAc9HTWyDlM=", + "ips": [ + "193.36.237.118" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mt1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.80.1" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mt1.nordvpn.com", + "wgpubkey": "mloV6phL3tYYyg2cF0QgkkTu1fxa6GUxNaSNUPnLfS0=", + "ips": [ + "82.149.80.1" + ] + }, + { + "vpn": "openvpn", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mt2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.80.3" + ] + }, + { + "vpn": "wireguard", + "country": "Malta", + "region": "Europe", + "city": "Valletta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mt2.nordvpn.com", + "wgpubkey": "mloV6phL3tYYyg2cF0QgkkTu1fxa6GUxNaSNUPnLfS0=", + "ips": [ + "82.149.80.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "mx50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.11" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "mx50.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.11" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "mx51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.41" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "mx51.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.41" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "mx52.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.71" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "mx52.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.71" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "mx53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.101" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "mx53.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.101" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "mx54.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.131" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "mx54.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.131" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "mx55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.162" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "mx55.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.162" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "mx56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.193" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "mx56.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.193" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "mx57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.154.196.224" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "mx57.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "192.154.196.224" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "mx70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.102" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "mx70.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.102" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "mx71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.104" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "mx71.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.104" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "mx72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.106" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "mx72.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.106" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "mx73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.108" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "mx73.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.108" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "mx74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.110" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "mx74.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.110" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "mx80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.122" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "mx80.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.122" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "mx81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.124" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "mx81.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.124" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "mx82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.126" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "mx82.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.126" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "mx83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.158" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "mx83.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.158" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "mx84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.170" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "mx84.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.170" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "mx85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.182" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "mx85.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.182" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "mx86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.194" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "mx86.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.194" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "mx87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.206" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "mx87.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.206" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "mx88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.218" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "mx88.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.218" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "mx89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.230" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "mx89.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.230" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "mx90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.112" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "mx90.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.112" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "mx91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.114" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "mx91.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.114" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "mx92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.116" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "mx92.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.116" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "mx93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.118" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "mx93.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.118" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "mx94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.153.177.120" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "mx94.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "185.153.177.120" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "mx95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "mx95.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.1" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "mx96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.3" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "mx96.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "mx97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.5" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "mx97.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.5" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "mx98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.7" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "mx98.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.7" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "mx99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.9" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "mx99.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.9" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "mx100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.11" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "mx100.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.11" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "mx101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.13" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "mx101.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.13" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "mx102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.15" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "mx102.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.15" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "mx103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.17" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "mx103.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.17" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "mx104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.19" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "mx104.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.19" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "mx105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.129" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "mx105.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.129" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "mx106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.131" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "mx106.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.131" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "mx107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.133" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "mx107.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.133" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "mx108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.135" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "mx108.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.135" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "mx109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.137" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "mx109.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.137" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "mx110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.139" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "mx110.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.139" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "mx111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.141" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "mx111.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.141" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "mx112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.143" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "mx112.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.143" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "mx113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.145" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "mx113.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.145" + ] + }, + { + "vpn": "openvpn", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "mx114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.15.147" + ] + }, + { + "vpn": "wireguard", + "country": "Mexico", + "region": "The Americas", + "city": "Mexico", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "mx114.nordvpn.com", + "wgpubkey": "aUuKVXQ//4UnXcPOqai/qGTfUK6qrdNRa6crPCF32x4=", + "ips": [ + "155.133.15.147" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "md19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.209" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "md19.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.209" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "md20.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.225" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "md20.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.225" + ] + }, + { + "vpn": "openvpn", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "md21.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.175.141.241" + ] + }, + { + "vpn": "wireguard", + "country": "Moldova", + "region": "Europe", + "city": "Chisinau", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "md21.nordvpn.com", + "wgpubkey": "Nfy8YVkt784l54Q8vlqAWDVc+ZD3HIXl7EUUgmNGWFw=", + "ips": [ + "178.175.141.241" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mc1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.81.1" + ] + }, + { + "vpn": "wireguard", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mc1.nordvpn.com", + "wgpubkey": "yffM0K4uWw1hAHYnM7qld+xbkfpBB0O6aHSTmEFKzAQ=", + "ips": [ + "82.149.81.1" + ] + }, + { + "vpn": "openvpn", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mc2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.81.3" + ] + }, + { + "vpn": "wireguard", + "country": "Monaco", + "region": "Europe", + "city": "Monte Carlo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mc2.nordvpn.com", + "wgpubkey": "yffM0K4uWw1hAHYnM7qld+xbkfpBB0O6aHSTmEFKzAQ=", + "ips": [ + "82.149.81.3" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mn1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.82.1" + ] + }, + { + "vpn": "wireguard", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mn1.nordvpn.com", + "wgpubkey": "T1XC8QynaPKCSADsKOqzNp2wigJ46D5pwKQX8MVxkH0=", + "ips": [ + "82.149.82.1" + ] + }, + { + "vpn": "openvpn", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mn2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.82.3" + ] + }, + { + "vpn": "wireguard", + "country": "Mongolia", + "region": "Asia Pacific", + "city": "Ulaanbaatar", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mn2.nordvpn.com", + "wgpubkey": "T1XC8QynaPKCSADsKOqzNp2wigJ46D5pwKQX8MVxkH0=", + "ips": [ + "82.149.82.3" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "me1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.83.1" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "me1.nordvpn.com", + "wgpubkey": "w4ezuztRzKllSV5lFwW1Bsyrev61UKFkbPTJR2LGbRY=", + "ips": [ + "82.149.83.1" + ] + }, + { + "vpn": "openvpn", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "me2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.83.3" + ] + }, + { + "vpn": "wireguard", + "country": "Montenegro", + "region": "Europe", + "city": "Podgorica", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "me2.nordvpn.com", + "wgpubkey": "w4ezuztRzKllSV5lFwW1Bsyrev61UKFkbPTJR2LGbRY=", + "ips": [ + "82.149.83.3" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "region": "Africa, the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ma1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "region": "Africa, the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ma1.nordvpn.com", + "wgpubkey": "/3HH4L/YJ+CyFByzsc6MSnMIKYU4CUZD0lFCs8hMW2E=", + "ips": [ + "82.197.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Morocco", + "region": "Africa, the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ma2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Morocco", + "region": "Africa, the Middle East and India", + "city": "Rabat", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ma2.nordvpn.com", + "wgpubkey": "/3HH4L/YJ+CyFByzsc6MSnMIKYU4CUZD0lFCs8hMW2E=", + "ips": [ + "82.197.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mm1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.77.1" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "mm1.nordvpn.com", + "wgpubkey": "Rp0b7yjmfV6oeOtKISxsfX0Ir43u4UrWqzD5pkKxrzA=", + "ips": [ + "82.197.77.1" + ] + }, + { + "vpn": "openvpn", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mm2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.77.3" + ] + }, + { + "vpn": "wireguard", + "country": "Myanmar", + "region": "Asia Pacific", + "city": "Naypyidaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "mm2.nordvpn.com", + "wgpubkey": "Rp0b7yjmfV6oeOtKISxsfX0Ir43u4UrWqzD5pkKxrzA=", + "ips": [ + "82.197.77.3" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "np1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.78.1" + ] + }, + { + "vpn": "wireguard", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "np1.nordvpn.com", + "wgpubkey": "qndOlbXzUUlrWImnqZ+Off4+IwYSeKIT8xPcQ3ITDAM=", + "ips": [ + "82.197.78.1" + ] + }, + { + "vpn": "openvpn", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "np2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.78.3" + ] + }, + { + "vpn": "wireguard", + "country": "Nepal", + "region": "Asia Pacific", + "city": "Kathmandu", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "np2.nordvpn.com", + "wgpubkey": "qndOlbXzUUlrWImnqZ+Off4+IwYSeKIT8xPcQ3ITDAM=", + "ips": [ + "82.197.78.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 6, + "hostname": "nl-onion6.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 6, + "hostname": "nl-onion6.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 7, + "hostname": "nl-onion7.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.217.171.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Onion Over VPN" + ], + "number": 7, + "hostname": "nl-onion7.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.217.171.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-nl10.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "uk-nl10.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "109.70.150.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-nl11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.195" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-nl11.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.195" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-nl11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.70.150.98" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "uk-nl11.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "109.70.150.98" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-nl12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.227" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-nl12.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "uk-nl12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.6" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "uk-nl12.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "217.146.90.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.147" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "195.242.213.147" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "uk-nl13.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.146.90.8" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "uk-nl13.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "217.146.90.8" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-nl14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.242.213.152" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-nl14.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "195.242.213.152" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-nl14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.132.138.211" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-nl14.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "91.132.138.211" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-nl15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.230.125.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-nl15.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.230.125.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-nl16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.236.201.131" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-nl16.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "185.236.201.131" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 408, + "hostname": "nl408.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.58.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 409, + "hostname": "nl409.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.58.129" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 716, + "hostname": "nl716.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.178" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 716, + "hostname": "nl716.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.178" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 717, + "hostname": "nl717.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.180" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 717, + "hostname": "nl717.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.180" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 718, + "hostname": "nl718.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.182" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 718, + "hostname": "nl718.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.182" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 719, + "hostname": "nl719.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.184" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 719, + "hostname": "nl719.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.184" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 720, + "hostname": "nl720.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.186" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 720, + "hostname": "nl720.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.186" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 721, + "hostname": "nl721.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.188" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 721, + "hostname": "nl721.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.188" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 722, + "hostname": "nl722.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.190" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 722, + "hostname": "nl722.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.190" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 723, + "hostname": "nl723.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.192" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 723, + "hostname": "nl723.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 724, + "hostname": "nl724.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.194" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 724, + "hostname": "nl724.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "nl725.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.196" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 725, + "hostname": "nl725.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.196" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "nl726.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.198" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 726, + "hostname": "nl726.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.198" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "nl727.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.200" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 727, + "hostname": "nl727.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "nl728.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.202" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 728, + "hostname": "nl728.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.202" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "nl729.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.204" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 729, + "hostname": "nl729.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "nl730.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.206" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 730, + "hostname": "nl730.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.206" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "nl731.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.208" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 731, + "hostname": "nl731.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "nl732.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.210" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 732, + "hostname": "nl732.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "nl733.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.212" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 733, + "hostname": "nl733.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.212" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "nl734.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 734, + "hostname": "nl734.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 757, + "hostname": "nl757.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.36" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "nl815.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.251" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 815, + "hostname": "nl815.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.251" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "nl816.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.247" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 816, + "hostname": "nl816.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.247" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "nl817.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.243" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 817, + "hostname": "nl817.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.243" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "nl818.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.239" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 818, + "hostname": "nl818.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.239" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "nl819.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.235" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 819, + "hostname": "nl819.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.235" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "nl820.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.231" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 820, + "hostname": "nl820.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.231" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "nl821.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.227" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 821, + "hostname": "nl821.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "nl822.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.223" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 822, + "hostname": "nl822.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.223" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "nl823.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.219" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 823, + "hostname": "nl823.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "nl824.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.215" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 824, + "hostname": "nl824.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "nl825.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.211" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 825, + "hostname": "nl825.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.211" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "nl826.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.207" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 826, + "hostname": "nl826.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.207" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "nl827.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.203" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 827, + "hostname": "nl827.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.203" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "nl828.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.199" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 828, + "hostname": "nl828.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.199" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "nl829.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.195" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 829, + "hostname": "nl829.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.195" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "nl830.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.191" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 830, + "hostname": "nl830.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.191" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "nl831.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.187" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 831, + "hostname": "nl831.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.187" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "nl832.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.183" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 832, + "hostname": "nl832.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.183" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "nl833.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.179" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 833, + "hostname": "nl833.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.179" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "nl834.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.175" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 834, + "hostname": "nl834.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.175" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "nl835.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.171" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 835, + "hostname": "nl835.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.171" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "nl836.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.167" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 836, + "hostname": "nl836.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.167" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "nl837.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.163" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 837, + "hostname": "nl837.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.163" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "nl839.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "178.239.173.159" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 839, + "hostname": "nl839.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "178.239.173.159" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "nl840.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 840, + "hostname": "nl840.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "nl841.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.70" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 841, + "hostname": "nl841.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.70" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "nl842.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 842, + "hostname": "nl842.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "nl843.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.76" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 843, + "hostname": "nl843.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.76" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "nl844.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 844, + "hostname": "nl844.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "nl845.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.82" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 845, + "hostname": "nl845.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "nl846.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 846, + "hostname": "nl846.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "nl847.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.88" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 847, + "hostname": "nl847.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "nl848.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 848, + "hostname": "nl848.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "nl849.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.94" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 849, + "hostname": "nl849.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.94" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "nl850.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 850, + "hostname": "nl850.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "nl851.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.100" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 851, + "hostname": "nl851.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "nl852.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 852, + "hostname": "nl852.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "nl853.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.106" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 853, + "hostname": "nl853.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.106" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "nl854.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.127.172.109" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 854, + "hostname": "nl854.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.127.172.109" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "nl863.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.57" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 863, + "hostname": "nl863.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "nl864.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.59" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 864, + "hostname": "nl864.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.59" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "nl865.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.61" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 865, + "hostname": "nl865.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.61" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "nl866.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.63" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 866, + "hostname": "nl866.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.63" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "nl867.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.65" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 867, + "hostname": "nl867.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "nl868.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 868, + "hostname": "nl868.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "nl869.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.69" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 869, + "hostname": "nl869.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.69" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "nl870.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.71" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 870, + "hostname": "nl870.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.71" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "nl871.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 871, + "hostname": "nl871.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "nl872.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.75" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 872, + "hostname": "nl872.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.75" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "nl873.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.77" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 873, + "hostname": "nl873.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.77" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "nl874.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 874, + "hostname": "nl874.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "nl875.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.81" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 875, + "hostname": "nl875.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.81" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "nl876.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.83" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 876, + "hostname": "nl876.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.83" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "nl877.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 877, + "hostname": "nl877.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "nl878.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.87" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 878, + "hostname": "nl878.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.87" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "nl879.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.89" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 879, + "hostname": "nl879.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.89" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "nl880.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 880, + "hostname": "nl880.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "nl881.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.93" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 881, + "hostname": "nl881.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.93" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "nl882.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.95" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 882, + "hostname": "nl882.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.95" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "nl883.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 883, + "hostname": "nl883.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "nl884.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.99" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 884, + "hostname": "nl884.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.99" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "nl885.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.101" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 885, + "hostname": "nl885.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.101" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "nl886.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 886, + "hostname": "nl886.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "nl887.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.105" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 887, + "hostname": "nl887.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.105" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "nl888.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 888, + "hostname": "nl888.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "nl889.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.109" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 889, + "hostname": "nl889.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.109" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "nl890.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.111" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 890, + "hostname": "nl890.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.111" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "nl891.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.113" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 891, + "hostname": "nl891.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.113" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "nl892.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.115" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 892, + "hostname": "nl892.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.115" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "nl893.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.117" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 893, + "hostname": "nl893.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "nl894.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.119" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 894, + "hostname": "nl894.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.119" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "nl895.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.121" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 895, + "hostname": "nl895.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.121" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "nl896.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.123" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 896, + "hostname": "nl896.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.123" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "nl897.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.125" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 897, + "hostname": "nl897.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.125" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "nl898.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.127" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 898, + "hostname": "nl898.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.127" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "nl899.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.129" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 899, + "hostname": "nl899.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.129" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "nl900.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.131" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 900, + "hostname": "nl900.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.131" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "nl901.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.133" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 901, + "hostname": "nl901.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.133" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "nl902.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.135" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 902, + "hostname": "nl902.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.135" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "nl903.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.232.87.137" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 903, + "hostname": "nl903.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.232.87.137" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 910, + "hostname": "nl910.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.3" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 910, + "hostname": "nl910.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.3" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 911, + "hostname": "nl911.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.6" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 911, + "hostname": "nl911.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.6" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 912, + "hostname": "nl912.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.9" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 912, + "hostname": "nl912.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 913, + "hostname": "nl913.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.12" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 913, + "hostname": "nl913.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.12" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 914, + "hostname": "nl914.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.15" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 914, + "hostname": "nl914.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.15" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 915, + "hostname": "nl915.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.18" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 915, + "hostname": "nl915.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.18" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 916, + "hostname": "nl916.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.21" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 916, + "hostname": "nl916.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.21" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 917, + "hostname": "nl917.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.24" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 917, + "hostname": "nl917.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.24" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 918, + "hostname": "nl918.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.27" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 918, + "hostname": "nl918.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.27" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 919, + "hostname": "nl919.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.30" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 919, + "hostname": "nl919.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.30" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 920, + "hostname": "nl920.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.33" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 920, + "hostname": "nl920.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.33" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 923, + "hostname": "nl923.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.67" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 923, + "hostname": "nl923.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.67" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 924, + "hostname": "nl924.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.70" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 924, + "hostname": "nl924.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.70" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 925, + "hostname": "nl925.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 925, + "hostname": "nl925.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 926, + "hostname": "nl926.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.76" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 926, + "hostname": "nl926.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.76" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 927, + "hostname": "nl927.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.79" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 927, + "hostname": "nl927.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.79" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 928, + "hostname": "nl928.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.82" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 928, + "hostname": "nl928.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.82" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 929, + "hostname": "nl929.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.85" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 929, + "hostname": "nl929.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.85" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 930, + "hostname": "nl930.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.88" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 930, + "hostname": "nl930.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.88" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 931, + "hostname": "nl931.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.91" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 931, + "hostname": "nl931.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.91" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 932, + "hostname": "nl932.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.94" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 932, + "hostname": "nl932.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.94" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 933, + "hostname": "nl933.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.97" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 933, + "hostname": "nl933.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.97" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 934, + "hostname": "nl934.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.100" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 934, + "hostname": "nl934.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.100" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 945, + "hostname": "nl945.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.227" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 946, + "hostname": "nl946.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.228" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 957, + "hostname": "nl957.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.203" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 958, + "hostname": "nl958.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.204" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "nl960.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.2" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 960, + "hostname": "nl960.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.2" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "nl961.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.17" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 961, + "hostname": "nl961.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "nl962.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.32" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 962, + "hostname": "nl962.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.32" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "nl963.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.47" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 963, + "hostname": "nl963.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.47" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "nl964.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.62" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 964, + "hostname": "nl964.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.62" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "nl965.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.77" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 965, + "hostname": "nl965.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.77" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "nl966.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.92" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 966, + "hostname": "nl966.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.92" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "nl967.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.107" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 967, + "hostname": "nl967.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.107" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "nl968.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.49.52.122" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 968, + "hostname": "nl968.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "194.49.52.122" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "nl969.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.150.146" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 969, + "hostname": "nl969.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "82.180.150.146" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "nl970.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.1" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 970, + "hostname": "nl970.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.1" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "nl971.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.9" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 971, + "hostname": "nl971.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.9" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "nl972.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.17" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 972, + "hostname": "nl972.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.17" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "nl973.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.25" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 973, + "hostname": "nl973.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.25" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "nl974.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.33" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 974, + "hostname": "nl974.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.33" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "nl975.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.41" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 975, + "hostname": "nl975.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.41" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "nl976.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.49" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 976, + "hostname": "nl976.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.49" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "nl977.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.57" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 977, + "hostname": "nl977.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "nl978.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.65" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 978, + "hostname": "nl978.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.65" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 979, + "hostname": "nl979.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.73" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 979, + "hostname": "nl979.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.73" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 980, + "hostname": "nl980.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.81" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 980, + "hostname": "nl980.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.81" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 981, + "hostname": "nl981.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.89" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 981, + "hostname": "nl981.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.89" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 982, + "hostname": "nl982.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.96" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 982, + "hostname": "nl982.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.96" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "nl983.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.103" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 983, + "hostname": "nl983.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.103" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "nl984.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.110" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 984, + "hostname": "nl984.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.110" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "nl985.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "143.244.41.117" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 985, + "hostname": "nl985.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "143.244.41.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "nl986.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.239" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 986, + "hostname": "nl986.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.239" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "nl987.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.241" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 987, + "hostname": "nl987.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.241" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "nl988.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.243" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 988, + "hostname": "nl988.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.243" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "nl989.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.245" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 989, + "hostname": "nl989.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.245" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "nl990.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.247" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 990, + "hostname": "nl990.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.247" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "nl991.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.188.249" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 991, + "hostname": "nl991.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.188.249" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 992, + "hostname": "nl992.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.214" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 992, + "hostname": "nl992.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.214" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 993, + "hostname": "nl993.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.218" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 993, + "hostname": "nl993.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.218" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 994, + "hostname": "nl994.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.222" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 994, + "hostname": "nl994.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.222" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 995, + "hostname": "nl995.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.226" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 995, + "hostname": "nl995.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.226" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 996, + "hostname": "nl996.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.230" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 996, + "hostname": "nl996.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.230" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 997, + "hostname": "nl997.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.234" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 997, + "hostname": "nl997.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.234" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 998, + "hostname": "nl998.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.238" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 998, + "hostname": "nl998.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.238" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 999, + "hostname": "nl999.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.242" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 999, + "hostname": "nl999.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.242" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1000, + "hostname": "nl1000.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.246" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1000, + "hostname": "nl1000.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.246" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1001, + "hostname": "nl1001.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "213.152.162.250" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1001, + "hostname": "nl1001.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "213.152.162.250" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1006, + "hostname": "nl1006.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.194" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1006, + "hostname": "nl1006.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.194" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1007, + "hostname": "nl1007.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.200" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1007, + "hostname": "nl1007.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.200" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "nl1008.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.205" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1008, + "hostname": "nl1008.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.205" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "nl1009.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.210" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1009, + "hostname": "nl1009.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "149.34.244.210" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1010, + "hostname": "nl1010.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.240" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1010, + "hostname": "nl1010.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.240" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "nl1011.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.224" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1011, + "hostname": "nl1011.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.224" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1012, + "hostname": "nl1012.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.208" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1012, + "hostname": "nl1012.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.208" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1013, + "hostname": "nl1013.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.176" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1013, + "hostname": "nl1013.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.176" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1014, + "hostname": "nl1014.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.160" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1014, + "hostname": "nl1014.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.160" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1015, + "hostname": "nl1015.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.144" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1015, + "hostname": "nl1015.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.144" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1016, + "hostname": "nl1016.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.128" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1016, + "hostname": "nl1016.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.128" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "nl1017.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.192" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1017, + "hostname": "nl1017.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.192" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "nl1018.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.112" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1018, + "hostname": "nl1018.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.112" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1020, + "hostname": "nl1020.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1021, + "hostname": "nl1021.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.216" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1022, + "hostname": "nl1022.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.218" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1023, + "hostname": "nl1023.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.244.219" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1024, + "hostname": "nl1024.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.104" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1025, + "hostname": "nl1025.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.106" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1036, + "hostname": "nl1036.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.117" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1037, + "hostname": "nl1037.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.119" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1038, + "hostname": "nl1038.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.190.55" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1039, + "hostname": "nl1039.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.229.190.57" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "nl1042.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.122.56" + ] + }, + { + "vpn": "wireguard", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1042, + "hostname": "nl1042.nordvpn.com", + "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "ips": [ + "37.46.122.56" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1043, + "hostname": "nl1043.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.115" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1044, + "hostname": "nl1044.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.218.122" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1045, + "hostname": "nl1045.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.215" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1046, + "hostname": "nl1046.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.217" + ] + }, + { + "vpn": "openvpn", + "country": "Netherlands", + "region": "Europe", + "city": "Amsterdam", + "categories": [ + "Dedicated IP" + ], + "number": 1048, + "hostname": "nl1048.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.40.59.210" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "nz86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.67" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "nz86.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.67" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "nz87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.75" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "nz87.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.75" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "nz88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.83" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "nz88.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.83" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "nz89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.91" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "nz89.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.91" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "nz90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.99" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "nz90.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.99" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "nz91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.107" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "nz91.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.107" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "nz92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.146" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "nz92.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.146" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "nz93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.150" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "nz93.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.150" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "nz94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.154" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "nz94.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.154" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "nz95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.242" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "nz95.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.242" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "nz96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.249" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "nz96.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.249" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "nz97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.194" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "nz97.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.194" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "nz98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.201" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "nz98.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.201" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "nz99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "180.149.231.82" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "nz99.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "180.149.231.82" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "nz100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.115" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "nz100.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.115" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "nz101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.123" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "nz101.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.123" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "nz102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.131" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "nz102.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.131" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "nz103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.139" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "nz103.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.139" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "nz104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.147" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "nz104.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.147" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "nz105.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.155" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 105, + "hostname": "nz105.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.155" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "nz106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.163" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "nz106.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.163" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "nz107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.74.235" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "nz107.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.74.235" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "nz108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.139" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "nz108.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.139" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "nz109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.147" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "nz109.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.147" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "nz110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.155" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "nz110.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.155" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "nz111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.163" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "nz111.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.163" + ] + }, + { + "vpn": "openvpn", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "nz112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "116.90.75.171" + ] + }, + { + "vpn": "wireguard", + "country": "New Zealand", + "region": "Asia Pacific", + "city": "Auckland", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "nz112.nordvpn.com", + "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "ips": [ + "116.90.75.171" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "region": "Africa, the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ng1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.79.1" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "region": "Africa, the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ng1.nordvpn.com", + "wgpubkey": "JxDrW3mqChvvPCpP2BrWXbHi3SUSWS/1iPAmAgBX70Q=", + "ips": [ + "82.197.79.1" + ] + }, + { + "vpn": "openvpn", + "country": "Nigeria", + "region": "Africa, the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ng2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.197.79.3" + ] + }, + { + "vpn": "wireguard", + "country": "Nigeria", + "region": "Africa, the Middle East and India", + "city": "Lagos", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ng2.nordvpn.com", + "wgpubkey": "JxDrW3mqChvvPCpP2BrWXbHi3SUSWS/1iPAmAgBX70Q=", + "ips": [ + "82.197.79.3" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 11, + "hostname": "mk11.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.28.163" + ] + }, + { + "vpn": "wireguard", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 11, + "hostname": "mk11.nordvpn.com", + "wgpubkey": "Rh1u8Z0OqDiMX2/8rLw7P/N57jZc/sa5G9MvHfMKIm8=", + "ips": [ + "185.225.28.163" + ] + }, + { + "vpn": "openvpn", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 12, + "hostname": "mk12.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.225.28.195" + ] + }, + { + "vpn": "wireguard", + "country": "North Macedonia", + "region": "Europe", + "city": "Skopje", + "categories": [ + "Standard VPN servers" + ], + "number": 12, + "hostname": "mk12.nordvpn.com", + "wgpubkey": "Rh1u8Z0OqDiMX2/8rLw7P/N57jZc/sa5G9MvHfMKIm8=", + "ips": [ + "185.225.28.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "no141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "no141.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "no142.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.171" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "no142.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.171" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "no143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "no143.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "no144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "no144.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "no145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "no145.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "no146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "no146.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "no147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.211" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "no147.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.211" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "no148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.203.219" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "no148.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.203.219" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "no149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.27" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "no149.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.27" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "no151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.92" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "no151.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.92" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "no162.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.211" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "no162.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.211" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "no163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.67" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "no163.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.67" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "no164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "no164.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "no167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "no167.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "no168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.248" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "no168.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.248" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "no169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "no169.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "no170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.147" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "no170.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.147" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "no171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "no171.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "no172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.219" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "no172.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.219" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "no173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "no173.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "no174.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "no174.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "no175.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "no175.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "no176.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.27.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "no176.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.27.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "no178.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "no178.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "no179.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "no179.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "no180.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "no180.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "no181.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "no181.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "no182.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "no182.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "no183.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.102.22.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "no183.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "82.102.22.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "no184.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.42" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 184, + "hostname": "no184.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.42" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "no185.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.91" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 185, + "hostname": "no185.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.91" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "no186.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.99" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 186, + "hostname": "no186.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.99" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "no187.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.251" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 187, + "hostname": "no187.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.251" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "no188.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.83" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "no188.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.83" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "no189.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.91" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "no189.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.91" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "no190.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.99" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "no190.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.99" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "no191.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.107" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "no191.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.107" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "no192.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.243" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "no192.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.243" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "no193.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.155" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "no193.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.155" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "no194.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.235" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "no194.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.235" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "no195.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.251" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "no195.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.251" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "no196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.12.223.227" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "no196.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.12.223.227" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "no197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.19" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "no197.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.19" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "no198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.24" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "no198.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.24" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "no199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.29" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "no199.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.29" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "no200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.149.37" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "no200.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "37.120.149.37" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "no201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.163" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "no201.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.163" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "no202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.171" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "no202.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.171" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "no203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.35" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "no203.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.35" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "no204.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.43" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "no204.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.43" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "no205.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.51" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "no205.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.51" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "no206.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.247.50.59" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "no206.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "84.247.50.59" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "no207.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "95.174.66.131" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "no207.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "95.174.66.131" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "no208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.206.225.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "no208.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "185.206.225.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "no209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.139" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "no209.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.139" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "no210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.179" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "no210.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.179" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "no211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.187" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "no211.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.187" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "no212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.195" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "no212.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.195" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "no213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "146.70.17.203" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "no213.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "146.70.17.203" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "no214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.100" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "no214.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.100" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "no215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.102" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "no215.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.102" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "no216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.104" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "no216.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.104" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "no217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.106" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "no217.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.106" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "no218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.108" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "no218.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.108" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "no219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.110" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "no219.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.110" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "no220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.112" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "no220.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.112" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "no221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.114" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "no221.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.114" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "no222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.116" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "no222.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.116" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "no223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.118" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "no223.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.118" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "no224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.120" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "no224.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.120" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "no225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.122" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "no225.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.122" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "no226.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.124" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "no226.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.124" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "no227.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.126" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "no227.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.126" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "no228.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.128" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "no228.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.128" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "no229.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.130" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "no229.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.130" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "no230.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.132" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "no230.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.132" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "no231.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.134" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "no231.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.134" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "no232.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.136" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "no232.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.136" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "no233.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.138" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "no233.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.138" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "no234.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.140" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "no234.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.140" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "no235.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.142" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "no235.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.142" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "no236.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.144" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "no236.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.144" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "no237.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.146" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "no237.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.146" + ] + }, + { + "vpn": "openvpn", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "no238.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.84.39.148" + ] + }, + { + "vpn": "wireguard", + "country": "Norway", + "region": "Europe", + "city": "Oslo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "no238.nordvpn.com", + "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "ips": [ + "45.84.39.148" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pk1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.148.1" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pk1.nordvpn.com", + "wgpubkey": "uNfNXGmJcGX6H9L3r5R3nz5OXu9OpZ2ru1XwJBnzhCY=", + "ips": [ + "185.239.148.1" + ] + }, + { + "vpn": "openvpn", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pk2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.148.3" + ] + }, + { + "vpn": "wireguard", + "country": "Pakistan", + "region": "Asia Pacific", + "city": "Karachi", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pk2.nordvpn.com", + "wgpubkey": "uNfNXGmJcGX6H9L3r5R3nz5OXu9OpZ2ru1XwJBnzhCY=", + "ips": [ + "185.239.148.3" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pa1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.149.1" + ] + }, + { + "vpn": "wireguard", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pa1.nordvpn.com", + "wgpubkey": "g7mT06lDESbHjSVoW7x//GQ4p5jtwblFVpz0fmMBlQk=", + "ips": [ + "185.239.149.1" + ] + }, + { + "vpn": "openvpn", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pa2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.149.3" + ] + }, + { + "vpn": "wireguard", + "country": "Panama", + "region": "The Americas", + "city": "Panama City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pa2.nordvpn.com", + "wgpubkey": "g7mT06lDESbHjSVoW7x//GQ4p5jtwblFVpz0fmMBlQk=", + "ips": [ + "185.239.149.3" + ] + }, + { + "vpn": "openvpn", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pg1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.67.1" + ] + }, + { + "vpn": "wireguard", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pg1.nordvpn.com", + "wgpubkey": "sTWNRBXz8BtNcBRsKZOfWMKNIIN3L642Pfgw60nUJ0U=", + "ips": [ + "212.97.67.1" + ] + }, + { + "vpn": "openvpn", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pg2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.67.3" + ] + }, + { + "vpn": "wireguard", + "country": "Papua New Guinea", + "region": "Asia Pacific", + "city": "Port Moresby", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pg2.nordvpn.com", + "wgpubkey": "sTWNRBXz8BtNcBRsKZOfWMKNIIN3L642Pfgw60nUJ0U=", + "ips": [ + "212.97.67.3" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "py1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.150.1" + ] + }, + { + "vpn": "wireguard", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "py1.nordvpn.com", + "wgpubkey": "2hJCmf9BSRCV8B6Dr2+zk9/YhWakDmZP+RRCShD2HFE=", + "ips": [ + "185.239.150.1" + ] + }, + { + "vpn": "openvpn", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "py2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.150.3" + ] + }, + { + "vpn": "wireguard", + "country": "Paraguay", + "region": "The Americas", + "city": "Asunción", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "py2.nordvpn.com", + "wgpubkey": "2hJCmf9BSRCV8B6Dr2+zk9/YhWakDmZP+RRCShD2HFE=", + "ips": [ + "185.239.150.3" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pe1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.151.1" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pe1.nordvpn.com", + "wgpubkey": "xzewOaZ8K3MPzm5BV110hUezcGLMRN7yNUwmPFnfAi4=", + "ips": [ + "185.239.151.1" + ] + }, + { + "vpn": "openvpn", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pe2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.239.151.3" + ] + }, + { + "vpn": "wireguard", + "country": "Peru", + "region": "The Americas", + "city": "Lima", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pe2.nordvpn.com", + "wgpubkey": "xzewOaZ8K3MPzm5BV110hUezcGLMRN7yNUwmPFnfAi4=", + "ips": [ + "185.239.151.3" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ph1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.71.1" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ph1.nordvpn.com", + "wgpubkey": "F5OyOuVCj2m8yvFXGv+bB5PWULm92H4NJVeA4IFw3wg=", + "ips": [ + "212.97.71.1" + ] + }, + { + "vpn": "openvpn", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ph2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "212.97.71.3" + ] + }, + { + "vpn": "wireguard", + "country": "Philippines", + "region": "Asia Pacific", + "city": "Manila", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ph2.nordvpn.com", + "wgpubkey": "F5OyOuVCj2m8yvFXGv+bB5PWULm92H4NJVeA4IFw3wg=", + "ips": [ + "212.97.71.3" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pl122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.171" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pl122.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.171" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pl125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pl125.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "pl128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.99" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "pl128.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.99" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "pl133.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.55.82" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "pl133.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "84.17.55.82" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "pl134.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.219" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "pl134.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.219" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "pl135.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "pl135.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "pl136.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.131" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "pl136.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.131" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "pl137.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "pl137.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "pl138.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "pl138.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "pl139.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.51" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "pl139.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.51" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "pl140.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "pl140.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "pl141.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.91" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "pl141.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.91" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "pl143.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "pl143.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "pl144.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "pl144.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "pl145.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.155" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "pl145.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.155" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "pl146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.163" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "pl146.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.163" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "pl147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.253.206.171" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "pl147.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "5.253.206.171" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "pl148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "pl148.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "pl149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.232" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "pl149.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.232" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "pl150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.237" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "pl150.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.237" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "pl151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.242" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "pl151.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.242" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "pl152.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.244.214.247" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 152, + "hostname": "pl152.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "185.244.214.247" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "pl153.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.227" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 153, + "hostname": "pl153.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.227" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "pl154.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.232" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "pl154.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.232" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "pl155.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.237" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "pl155.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.237" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "pl156.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.242" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "pl156.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.242" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "pl157.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "194.99.105.247" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 157, + "hostname": "pl157.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "194.99.105.247" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "pl158.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 158, + "hostname": "pl158.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "pl159.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.75" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 159, + "hostname": "pl159.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.75" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "pl160.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.156.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 160, + "hostname": "pl160.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.156.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "pl163.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.99" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "pl163.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.99" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "pl164.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.107" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "pl164.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.107" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "pl165.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.115" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "pl165.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.115" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "pl166.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.123" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "pl166.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.123" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "pl167.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.131" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "pl167.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.131" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "pl168.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.139" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "pl168.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.139" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "pl169.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.147" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "pl169.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.147" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "pl170.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.155" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "pl170.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.155" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "pl171.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.211.163" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "pl171.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "37.120.211.163" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "pl172.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.83" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "pl172.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.83" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "pl173.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "217.138.209.75" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "pl173.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "217.138.209.75" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "pl196.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.179" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "pl196.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.179" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "pl197.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.172" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "pl197.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.172" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "pl198.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.165" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "pl198.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.165" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "pl199.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.158" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "pl199.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.158" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "pl200.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.151" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "pl200.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.151" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "pl201.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.144" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "pl201.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.144" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "pl202.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.137" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "pl202.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.137" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "pl203.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.130" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "pl203.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "45.134.212.130" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "pl208.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.1" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 208, + "hostname": "pl208.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.1" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "pl209.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.7" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 209, + "hostname": "pl209.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.7" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "pl210.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.13" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 210, + "hostname": "pl210.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.13" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "pl211.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.19" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 211, + "hostname": "pl211.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.19" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "pl212.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.25" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "pl212.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.25" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "pl213.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.31" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "pl213.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.31" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "pl214.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.37" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 214, + "hostname": "pl214.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.37" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "pl215.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.43" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 215, + "hostname": "pl215.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.43" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "pl216.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.49" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 216, + "hostname": "pl216.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.49" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "pl217.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.55" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "pl217.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.55" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "pl218.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.61" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "pl218.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.61" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "pl219.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.67" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "pl219.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.67" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "pl220.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.73" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "pl220.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.73" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "pl221.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.180.151.79" + ] + }, + { + "vpn": "wireguard", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "pl221.nordvpn.com", + "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "ips": [ + "82.180.151.79" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 222, + "hostname": "pl222.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.21" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 223, + "hostname": "pl223.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.134.212.23" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 224, + "hostname": "pl224.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.54.34" + ] + }, + { + "vpn": "openvpn", + "country": "Poland", + "region": "Europe", + "city": "Warsaw", + "categories": [ + "Dedicated IP" + ], + "number": 225, + "hostname": "pl225.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.54.36" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "pt66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.193" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "pt66.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.193" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "pt67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.201" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "pt67.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.201" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "pt79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.82" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "pt79.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.82" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "pt80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.90" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "pt80.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.90" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "pt81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.218" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "pt81.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.218" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "pt82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.18" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "pt82.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.18" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "pt83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.138" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "pt83.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.138" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "pt84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.194" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "pt84.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.194" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "pt85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.42" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "pt85.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.42" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "pt86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.50" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "pt86.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.50" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "pt87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.58" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "pt87.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.58" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "pt88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.250.240.66" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "pt88.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.250.240.66" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "pt89.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.161" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 89, + "hostname": "pt89.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.161" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "pt90.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 90, + "hostname": "pt90.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "pt91.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.9" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 91, + "hostname": "pt91.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.9" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "pt92.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.17" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 92, + "hostname": "pt92.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.17" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "pt93.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.49" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 93, + "hostname": "pt93.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.49" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "pt94.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.73" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 94, + "hostname": "pt94.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.73" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "pt95.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.209" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 95, + "hostname": "pt95.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.209" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "pt96.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.57" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 96, + "hostname": "pt96.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.57" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "pt97.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.65" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 97, + "hostname": "pt97.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.65" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "pt98.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.97" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 98, + "hostname": "pt98.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.97" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "pt99.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.105" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 99, + "hostname": "pt99.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.105" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "pt100.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.113" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 100, + "hostname": "pt100.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.113" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "pt101.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.248.121" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 101, + "hostname": "pt101.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "195.158.248.121" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "pt102.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.92.210.145" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 102, + "hostname": "pt102.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.92.210.145" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "pt103.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "5.154.174.81" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 103, + "hostname": "pt103.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "5.154.174.81" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "pt104.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.209" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 104, + "hostname": "pt104.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.209" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "pt106.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.241" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 106, + "hostname": "pt106.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.241" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "pt107.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "91.205.230.249" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 107, + "hostname": "pt107.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "91.205.230.249" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "pt108.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.174.156.9" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 108, + "hostname": "pt108.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.174.156.9" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "pt109.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.174.156.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 109, + "hostname": "pt109.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "185.174.156.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "pt110.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.1" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 110, + "hostname": "pt110.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.1" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "pt111.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.17" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 111, + "hostname": "pt111.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.17" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "pt112.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.33" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 112, + "hostname": "pt112.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.33" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "pt113.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.49" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 113, + "hostname": "pt113.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.49" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "pt114.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.64" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "pt114.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.64" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "pt115.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.79" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 115, + "hostname": "pt115.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.79" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "pt116.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.94" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 116, + "hostname": "pt116.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.94" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "pt117.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.109" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 117, + "hostname": "pt117.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.109" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "pt118.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.129" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 118, + "hostname": "pt118.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.129" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "pt119.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.145" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 119, + "hostname": "pt119.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.145" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "pt120.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.161" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 120, + "hostname": "pt120.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.161" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "pt121.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.177" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 121, + "hostname": "pt121.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.177" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pt122.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.192" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 122, + "hostname": "pt122.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.192" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "pt123.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.207" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 123, + "hostname": "pt123.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.207" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "pt124.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.222" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 124, + "hostname": "pt124.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.222" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pt125.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "45.94.208.237" + ] + }, + { + "vpn": "wireguard", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 125, + "hostname": "pt125.nordvpn.com", + "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "ips": [ + "45.94.208.237" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 126, + "hostname": "pt126.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.20.243" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 127, + "hostname": "pt127.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.20.245" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 128, + "hostname": "pt128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.61.94.194" + ] + }, + { + "vpn": "openvpn", + "country": "Portugal", + "region": "Europe", + "city": "Lisbon", + "categories": [ + "Dedicated IP" + ], + "number": 129, + "hostname": "pt129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "109.61.94.196" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pr1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.76.1" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "pr1.nordvpn.com", + "wgpubkey": "4XT+2d7QrQSyXs4O7n08dsmVqh+Cm5RA9oUXcxMhzxw=", + "ips": [ + "82.149.76.1" + ] + }, + { + "vpn": "openvpn", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pr2.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.76.3" + ] + }, + { + "vpn": "wireguard", + "country": "Puerto Rico", + "region": "The Americas", + "city": "San Juan", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "pr2.nordvpn.com", + "wgpubkey": "4XT+2d7QrQSyXs4O7n08dsmVqh+Cm5RA9oUXcxMhzxw=", + "ips": [ + "82.149.76.3" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ro59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.137.187" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ro59.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.106.137.187" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ro65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.210.218.219" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "ro65.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "185.210.218.219" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ro66.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.105.9.115" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 66, + "hostname": "ro66.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.105.9.115" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ro67.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.46.103.171" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "ro67.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.46.103.171" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ro68.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.46.102.115" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "ro68.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.46.102.115" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ro69.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.181.103.187" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "ro69.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "185.181.103.187" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ro70.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.71.99" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "ro70.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.40.71.99" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ro71.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.107" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "ro71.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.107" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ro72.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.105.9.11" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "ro72.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.105.9.11" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ro73.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.33.246.19" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "ro73.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.33.246.19" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "ro74.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.251" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "ro74.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.251" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "ro75.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.36.224.243" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "ro75.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.36.224.243" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "ro76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.33.246.27" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "ro76.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.33.246.27" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "ro77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "86.106.137.11" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "ro77.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "86.106.137.11" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "ro78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.40.71.243" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "ro78.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "89.40.71.243" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "ro79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.105" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "ro79.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.105" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "ro80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.134" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "ro80.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.134" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "ro81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.158" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "ro81.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.158" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "ro82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.182" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "ro82.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.182" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ro83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.206" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "ro83.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.206" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "ro84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.229" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "ro84.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.229" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "ro85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.1" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "ro85.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.1" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "ro86.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.3" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "ro86.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.3" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "ro87.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.5" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 87, + "hostname": "ro87.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.5" + ] + }, + { + "vpn": "openvpn", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "ro88.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "155.133.71.7" + ] + }, + { + "vpn": "wireguard", + "country": "Romania", + "region": "Europe", + "city": "Bucharest", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 88, + "hostname": "ro88.nordvpn.com", + "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "ips": [ + "155.133.71.7" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "rs48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.123" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "rs48.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.123" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "rs49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.131" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "rs49.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.131" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "rs50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.139" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "rs50.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.139" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "rs51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.147" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "rs51.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.147" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "rs60.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.75" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "rs60.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.75" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "rs61.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.83" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "rs61.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.83" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "rs62.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.91" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "rs62.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.91" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "rs63.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.99" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "rs63.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.99" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "rs64.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.107" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "rs64.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.107" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "rs65.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "141.98.103.115" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 65, + "hostname": "rs65.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "141.98.103.115" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "rs76.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.240" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "rs76.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.240" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "rs77.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.224" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "rs77.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.224" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "rs78.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.192" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "rs78.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.192" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "rs79.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.176" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "rs79.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.176" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "rs80.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.160" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "rs80.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.160" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "rs81.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.144" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "rs81.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.144" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "rs82.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.128" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "rs82.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.128" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "rs83.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.208" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "rs83.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.208" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "rs84.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.112" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "rs84.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.112" + ] + }, + { + "vpn": "openvpn", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "rs85.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.46.116.96" + ] + }, + { + "vpn": "wireguard", + "country": "Serbia", + "region": "Europe", + "city": "Belgrade", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "rs85.nordvpn.com", + "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "ips": [ + "37.46.116.96" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 455, + "hostname": "sg455.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 455, + "hostname": "sg455.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 456, + "hostname": "sg456.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.163" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 456, + "hostname": "sg456.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.163" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 457, + "hostname": "sg457.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 457, + "hostname": "sg457.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 458, + "hostname": "sg458.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.99" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 458, + "hostname": "sg458.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.99" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 459, + "hostname": "sg459.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.107" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 459, + "hostname": "sg459.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.107" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 460, + "hostname": "sg460.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.123" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 460, + "hostname": "sg460.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.123" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 461, + "hostname": "sg461.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 461, + "hostname": "sg461.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 462, + "hostname": "sg462.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.147" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 462, + "hostname": "sg462.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.147" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 463, + "hostname": "sg463.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.199.155" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 463, + "hostname": "sg463.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.199.155" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 465, + "hostname": "sg465.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.133" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 465, + "hostname": "sg465.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.133" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 466, + "hostname": "sg466.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.130" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 466, + "hostname": "sg466.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 474, + "hostname": "sg474.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.194" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 474, + "hostname": "sg474.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.194" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 475, + "hostname": "sg475.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.203" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 475, + "hostname": "sg475.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.203" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 476, + "hostname": "sg476.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.197" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 476, + "hostname": "sg476.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.197" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 477, + "hostname": "sg477.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.200" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 477, + "hostname": "sg477.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.200" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 478, + "hostname": "sg478.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.206" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 478, + "hostname": "sg478.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.206" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 479, + "hostname": "sg479.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.209" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 479, + "hostname": "sg479.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.209" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 480, + "hostname": "sg480.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.212" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 480, + "hostname": "sg480.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.212" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 481, + "hostname": "sg481.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.215" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 481, + "hostname": "sg481.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.215" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 482, + "hostname": "sg482.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.218" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 482, + "hostname": "sg482.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.218" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 483, + "hostname": "sg483.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.221" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 483, + "hostname": "sg483.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.221" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "sg490.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.99" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "sg490.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.99" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "sg491.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.107" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "sg491.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.107" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "sg493.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.115" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "sg493.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.115" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "sg494.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.123" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "sg494.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.123" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "sg507.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.91" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "sg507.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.91" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "sg508.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "103.107.198.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "sg508.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "103.107.198.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "sg510.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.131" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "sg510.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.131" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "sg511.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.139" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "sg511.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.139" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "sg512.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.147" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "sg512.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.147" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "sg513.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.155" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "sg513.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.155" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "sg514.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.163" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "sg514.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.163" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "sg515.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.171" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "sg515.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.171" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "sg516.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "203.27.106.179" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "sg516.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "203.27.106.179" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "sg517.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.17" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "sg517.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.17" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "sg518.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.12" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "sg518.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.12" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "sg519.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.7" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "sg519.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.7" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "sg520.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.2" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "sg520.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.2" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "sg521.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.136" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "sg521.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.136" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "sg522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.22" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "sg522.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.22" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "sg523.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.25" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "sg523.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.25" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "sg524.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "84.17.39.250" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "sg524.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "84.17.39.250" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "sg525.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.194" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "sg525.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.194" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "sg526.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.197" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "sg526.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.197" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "sg527.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.200" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "sg527.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.200" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "sg528.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.203" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "sg528.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.203" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "sg529.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.206" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "sg529.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.206" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "sg530.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.34.253.209" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "sg530.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "149.34.253.209" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "sg531.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.100" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "sg531.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.100" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "sg532.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.102" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "sg532.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.102" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "sg533.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.104" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "sg533.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.104" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "sg534.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.106" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "sg534.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.106" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "sg535.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.108" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "sg535.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.108" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "sg536.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.110" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "sg536.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.110" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "sg537.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.112" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "sg537.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.112" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "sg538.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.114" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 538, + "hostname": "sg538.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.114" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "sg539.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.116" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 539, + "hostname": "sg539.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.116" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "sg540.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.118" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 540, + "hostname": "sg540.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.118" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "sg541.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.120" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 541, + "hostname": "sg541.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.120" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "sg542.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.122" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "sg542.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.122" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "sg543.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.124" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "sg543.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.124" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "sg544.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.126" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "sg544.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.126" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "sg545.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.128" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "sg545.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.128" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "sg546.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.130" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "sg546.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "sg547.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.132" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "sg547.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.132" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "sg548.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.134" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "sg548.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.134" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "sg549.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.136" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "sg549.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.136" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "sg550.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.138" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "sg550.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.138" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "sg551.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.140" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "sg551.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.140" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "sg552.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "192.166.246.142" + ] + }, + { + "vpn": "wireguard", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "sg552.nordvpn.com", + "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "ips": [ + "192.166.246.142" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 556, + "hostname": "sg556.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.41" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 557, + "hostname": "sg557.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.43" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 558, + "hostname": "sg558.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.36" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 559, + "hostname": "sg559.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.50.213.38" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 600, + "hostname": "sg600.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.99.130" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 601, + "hostname": "sg601.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.99.132" + ] + }, + { + "vpn": "openvpn", + "country": "Singapore", + "region": "Asia Pacific", + "city": "Singapore", + "categories": [ + "Dedicated IP" + ], + "number": 602, + "hostname": "sg602.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.107.210" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "sk40.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.75" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 40, + "hostname": "sk40.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.75" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "sk41.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.179" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 41, + "hostname": "sk41.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.179" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "sk42.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.187" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 42, + "hostname": "sk42.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.187" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "sk43.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.171" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 43, + "hostname": "sk43.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.171" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "sk47.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "193.37.255.235" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 47, + "hostname": "sk47.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "193.37.255.235" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "sk48.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.245.85.179" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 48, + "hostname": "sk48.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "185.245.85.179" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "sk49.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.147" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 49, + "hostname": "sk49.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.147" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "sk50.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.163" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 50, + "hostname": "sk50.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.163" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "sk51.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.187" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "sk51.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.187" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "sk53.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "37.120.221.155" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "sk53.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "37.120.221.155" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "sk55.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.2" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "sk55.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.2" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "sk56.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.14" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "sk56.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.14" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "sk57.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.26" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "sk57.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.26" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "sk58.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.38" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "sk58.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.38" + ] + }, + { + "vpn": "openvpn", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "sk59.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "138.199.34.50" + ] + }, + { + "vpn": "wireguard", + "country": "Slovakia", + "region": "Europe", + "city": "Bratislava", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "sk59.nordvpn.com", + "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "ips": [ + "138.199.34.50" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "si14.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.168" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 14, + "hostname": "si14.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.168" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "si15.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.170" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 15, + "hostname": "si15.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.170" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "si16.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.172" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 16, + "hostname": "si16.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.172" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "si17.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.174" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 17, + "hostname": "si17.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.174" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "si18.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.176" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 18, + "hostname": "si18.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.176" + ] + }, + { + "vpn": "openvpn", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "si19.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "195.158.249.178" + ] + }, + { + "vpn": "wireguard", + "country": "Slovenia", + "region": "Europe", + "city": "Ljubljana", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 19, + "hostname": "si19.nordvpn.com", + "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "ips": [ + "195.158.249.178" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "za128.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.1" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 128, + "hostname": "za128.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.1" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "za129.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.14" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 129, + "hostname": "za129.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.14" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "za130.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.27" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 130, + "hostname": "za130.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.27" + ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 888, - "hostname": "nl888.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "za131.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.107" + "185.203.122.40" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 888, - "hostname": "nl888.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "za131.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.107" + "185.203.122.40" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 889, - "hostname": "nl889.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "za132.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.109" + "185.203.122.52" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 889, - "hostname": "nl889.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "za132.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.109" + "185.203.122.52" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 890, - "hostname": "nl890.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "za133.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.111" + "185.203.122.64" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 890, - "hostname": "nl890.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "za133.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.111" + "185.203.122.64" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 891, - "hostname": "nl891.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "za134.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.113" + "185.203.122.76" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 891, - "hostname": "nl891.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "za134.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.113" + "185.203.122.76" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 892, - "hostname": "nl892.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "za135.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.115" + "185.203.122.88" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 892, - "hostname": "nl892.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "za135.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.115" + "185.203.122.88" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 893, - "hostname": "nl893.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "za136.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.117" + "185.203.122.100" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 893, - "hostname": "nl893.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "za136.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.117" + "185.203.122.100" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 894, - "hostname": "nl894.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "za137.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.119" + "185.203.122.112" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 894, - "hostname": "nl894.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "za137.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.119" + "185.203.122.112" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 895, - "hostname": "nl895.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "za138.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.121" + "185.203.122.129" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 895, - "hostname": "nl895.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "za138.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.121" + "185.203.122.129" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 896, - "hostname": "nl896.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "za139.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.123" + "185.203.122.142" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 896, - "hostname": "nl896.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "za139.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.123" + "185.203.122.142" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 897, - "hostname": "nl897.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "za140.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.125" + "185.203.122.155" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 897, - "hostname": "nl897.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 140, + "hostname": "za140.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.125" + "185.203.122.155" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 898, - "hostname": "nl898.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "za141.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.127" + "185.203.122.168" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 898, - "hostname": "nl898.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "za141.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.127" + "185.203.122.168" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 899, - "hostname": "nl899.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "za142.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.129" + "185.203.122.180" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 899, - "hostname": "nl899.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "za142.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.129" + "185.203.122.180" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 900, - "hostname": "nl900.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "za143.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.131" + "185.203.122.192" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 900, - "hostname": "nl900.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "za143.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.131" + "185.203.122.192" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 901, - "hostname": "nl901.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "za144.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.133" + "185.203.122.204" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 901, - "hostname": "nl901.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "za144.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", "ips": [ - "213.232.87.133" + "185.203.122.204" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 902, - "hostname": "nl902.nordvpn.com", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "za145.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.135" + "185.203.122.216" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 902, - "hostname": "nl902.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "za145.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.216" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "za146.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.228" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 146, + "hostname": "za146.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.228" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "za147.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "185.203.122.240" + ] + }, + { + "vpn": "wireguard", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "za147.nordvpn.com", + "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "ips": [ + "185.203.122.240" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 148, + "hostname": "za148.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.238.151" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 149, + "hostname": "za149.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.238.153" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 150, + "hostname": "za150.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.248.194" + ] + }, + { + "vpn": "openvpn", + "country": "South Africa", + "region": "Africa, the Middle East and India", + "city": "Johannesburg", + "categories": [ + "Dedicated IP" + ], + "number": 151, + "hostname": "za151.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.102.248.196" + ] + }, + { + "vpn": "openvpn", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 31, + "hostname": "kr31.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "210.217.18.72" + ] + }, + { + "vpn": "wireguard", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 31, + "hostname": "kr31.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.232.87.135" + "210.217.18.72" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 903, - "hostname": "nl903.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 32, + "hostname": "kr32.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.232.87.137" + "210.217.18.66" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 903, - "hostname": "nl903.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 32, + "hostname": "kr32.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.232.87.137" + "210.217.18.66" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 910, - "hostname": "nl910.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "kr34.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.3" + "211.197.11.5" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 910, - "hostname": "nl910.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "kr34.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.3" + "211.197.11.5" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 911, - "hostname": "nl911.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "kr35.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.6" + "211.197.11.10" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 911, - "hostname": "nl911.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "kr35.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.6" + "211.197.11.10" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 912, - "hostname": "nl912.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 42, + "hostname": "kr42.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.9" + "211.197.11.14" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 912, - "hostname": "nl912.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 42, + "hostname": "kr42.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.9" + "211.197.11.14" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 913, - "hostname": "nl913.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 43, + "hostname": "kr43.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.12" + "210.217.18.75" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 913, - "hostname": "nl913.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 43, + "hostname": "kr43.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.12" + "210.217.18.75" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 914, - "hostname": "nl914.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 46, + "hostname": "kr46.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.15" + "39.115.246.44" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 914, - "hostname": "nl914.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 46, + "hostname": "kr46.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.15" + "39.115.246.44" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 915, - "hostname": "nl915.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 47, + "hostname": "kr47.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.18" + "39.115.246.49" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 915, - "hostname": "nl915.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 47, + "hostname": "kr47.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.18" + "39.115.246.49" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 916, - "hostname": "nl916.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "kr48.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.21" + "39.115.246.54" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 916, - "hostname": "nl916.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 48, + "hostname": "kr48.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.21" + "39.115.246.54" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 917, - "hostname": "nl917.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "kr49.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.24" + "39.115.246.59" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 917, - "hostname": "nl917.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 49, + "hostname": "kr49.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.24" + "39.115.246.59" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 918, - "hostname": "nl918.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 55, + "hostname": "kr55.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.27" + "39.115.246.104" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 918, - "hostname": "nl918.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 55, + "hostname": "kr55.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.27" + "39.115.246.104" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 919, - "hostname": "nl919.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 56, + "hostname": "kr56.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.30" + "39.115.246.99" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 919, - "hostname": "nl919.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers" + ], + "number": 56, + "hostname": "kr56.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.30" + "39.115.246.99" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 920, - "hostname": "nl920.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "kr57.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.33" + "160.238.37.0" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 920, - "hostname": "nl920.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "kr57.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.33" + "160.238.37.0" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 923, - "hostname": "nl923.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "kr58.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.67" + "160.238.37.26" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 923, - "hostname": "nl923.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "kr58.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.67" + "160.238.37.26" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 924, - "hostname": "nl924.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "kr67.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.70" + "160.238.37.32" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 924, - "hostname": "nl924.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 67, + "hostname": "kr67.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.70" + "160.238.37.32" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 925, - "hostname": "nl925.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "kr68.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.73" + "160.238.37.48" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 925, - "hostname": "nl925.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 68, + "hostname": "kr68.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.73" + "160.238.37.48" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 926, - "hostname": "nl926.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "kr69.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.76" + "160.238.37.64" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 926, - "hostname": "nl926.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 69, + "hostname": "kr69.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.76" + "160.238.37.64" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 927, - "hostname": "nl927.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "kr70.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.79" + "160.238.37.80" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 927, - "hostname": "nl927.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 70, + "hostname": "kr70.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.79" + "160.238.37.80" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 928, - "hostname": "nl928.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "kr71.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.82" + "160.238.37.96" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 928, - "hostname": "nl928.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 71, + "hostname": "kr71.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.82" + "160.238.37.96" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 929, - "hostname": "nl929.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "kr72.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.85" + "160.238.37.112" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 929, - "hostname": "nl929.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 72, + "hostname": "kr72.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.85" + "160.238.37.112" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 930, - "hostname": "nl930.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "kr73.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.88" + "160.238.37.128" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 930, - "hostname": "nl930.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 73, + "hostname": "kr73.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.88" + "160.238.37.128" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 931, - "hostname": "nl931.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "kr74.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.91" + "160.238.37.144" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 931, - "hostname": "nl931.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 74, + "hostname": "kr74.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.91" + "160.238.37.144" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 932, - "hostname": "nl932.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "kr75.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.94" + "108.181.50.243" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 932, - "hostname": "nl932.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 75, + "hostname": "kr75.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.94" + "108.181.50.243" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 933, - "hostname": "nl933.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "kr76.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.97" + "108.181.52.42" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 933, - "hostname": "nl933.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 76, + "hostname": "kr76.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.97" + "108.181.52.42" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 934, - "hostname": "nl934.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "kr77.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.100" + "108.181.51.211" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 934, - "hostname": "nl934.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 77, + "hostname": "kr77.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "213.152.188.100" + "108.181.51.211" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 960, - "hostname": "nl960.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "kr78.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.2" + "108.181.51.219" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 960, - "hostname": "nl960.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 78, + "hostname": "kr78.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.2" + "108.181.51.219" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 961, - "hostname": "nl961.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "kr79.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.17" + "108.181.50.251" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 961, - "hostname": "nl961.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 79, + "hostname": "kr79.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.17" + "108.181.50.251" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 962, - "hostname": "nl962.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "kr80.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.32" + "108.181.52.114" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 962, - "hostname": "nl962.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 80, + "hostname": "kr80.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.32" + "108.181.52.114" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 963, - "hostname": "nl963.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "kr81.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.47" + "108.181.51.234" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 963, - "hostname": "nl963.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 81, + "hostname": "kr81.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.47" + "108.181.51.234" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 964, - "hostname": "nl964.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "kr82.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.62" + "108.181.53.3" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 964, - "hostname": "nl964.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 82, + "hostname": "kr82.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.62" + "108.181.53.3" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 965, - "hostname": "nl965.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "kr83.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.77" + "108.181.53.83" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 965, - "hostname": "nl965.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 83, + "hostname": "kr83.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.77" + "108.181.53.83" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 966, - "hostname": "nl966.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "kr84.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.92" + "108.181.52.211" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 966, - "hostname": "nl966.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 84, + "hostname": "kr84.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.92" + "108.181.52.211" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 967, - "hostname": "nl967.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "kr85.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.107" + "108.181.52.179" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 967, - "hostname": "nl967.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 85, + "hostname": "kr85.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.107" + "108.181.52.179" ] }, { "vpn": "openvpn", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 968, - "hostname": "nl968.nordvpn.com", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "kr86.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.49.52.122" + "108.181.52.227" ] }, { "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 968, - "hostname": "nl968.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "country": "South Korea", + "region": "Asia Pacific", + "city": "Seoul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 86, + "hostname": "kr86.nordvpn.com", + "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", "ips": [ - "194.49.52.122" + "108.181.52.227" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 969, - "hostname": "nl969.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "es220.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.150.146" + "185.214.97.100" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 969, - "hostname": "nl969.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 220, + "hostname": "es220.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "82.180.150.146" + "185.214.97.100" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 970, - "hostname": "nl970.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "es221.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.1" + "185.214.97.102" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 970, - "hostname": "nl970.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "es221.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.1" + "185.214.97.102" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 971, - "hostname": "nl971.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "es222.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.9" + "185.214.97.104" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 971, - "hostname": "nl971.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "es222.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.9" + "185.214.97.104" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 972, - "hostname": "nl972.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "es223.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.17" + "185.214.97.106" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 972, - "hostname": "nl972.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "es223.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.17" + "185.214.97.106" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 973, - "hostname": "nl973.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "es224.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.25" + "185.214.97.108" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 973, - "hostname": "nl973.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "es224.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.25" + "185.214.97.108" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 974, - "hostname": "nl974.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "es225.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.33" + "185.214.97.110" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 974, - "hostname": "nl974.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "es225.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.33" + "185.214.97.110" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 975, - "hostname": "nl975.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "es226.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.41" + "185.214.97.112" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 975, - "hostname": "nl975.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "es226.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.41" + "185.214.97.112" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 976, - "hostname": "nl976.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "es227.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.49" + "185.214.97.114" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 976, - "hostname": "nl976.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "es227.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.49" + "185.214.97.114" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 977, - "hostname": "nl977.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "es228.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.57" + "185.214.97.116" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 977, - "hostname": "nl977.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "es228.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.57" + "185.214.97.116" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 978, - "hostname": "nl978.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "es229.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.65" + "185.214.97.118" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 978, - "hostname": "nl978.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "es229.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.65" + "185.214.97.118" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 979, - "hostname": "nl979.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "es230.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.73" + "185.214.97.120" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 979, - "hostname": "nl979.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 230, + "hostname": "es230.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.73" + "185.214.97.120" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 980, - "hostname": "nl980.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "es231.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.81" + "185.214.97.122" ] }, { - "vpn": "wireguard", - "country": "Netherlands", - "region": "Europe", - "city": "Amsterdam", - "number": 980, - "hostname": "nl980.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 231, + "hostname": "es231.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.81" + "185.214.97.122" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 981, - "hostname": "nl981.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "es232.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.89" + "185.214.97.124" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 981, - "hostname": "nl981.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 232, + "hostname": "es232.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.89" + "185.214.97.124" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 982, - "hostname": "nl982.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "es233.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.96" + "185.214.97.126" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 982, - "hostname": "nl982.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 233, + "hostname": "es233.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.96" + "185.214.97.126" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 983, - "hostname": "nl983.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "es234.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.103" + "185.214.97.128" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 983, - "hostname": "nl983.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 234, + "hostname": "es234.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.103" + "185.214.97.128" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 984, - "hostname": "nl984.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "es235.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.110" + "185.214.97.130" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 984, - "hostname": "nl984.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 235, + "hostname": "es235.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.110" + "185.214.97.130" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 985, - "hostname": "nl985.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "es236.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.41.117" + "185.214.97.132" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 985, - "hostname": "nl985.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 236, + "hostname": "es236.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "143.244.41.117" + "185.214.97.132" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 986, - "hostname": "nl986.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "es237.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.239" + "185.214.97.134" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 986, - "hostname": "nl986.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 237, + "hostname": "es237.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "213.152.188.239" + "185.214.97.134" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 987, - "hostname": "nl987.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "es238.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.241" + "185.214.97.136" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 987, - "hostname": "nl987.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 238, + "hostname": "es238.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "213.152.188.241" + "185.214.97.136" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 988, - "hostname": "nl988.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "es239.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.243" + "185.214.97.138" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 988, - "hostname": "nl988.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 239, + "hostname": "es239.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "213.152.188.243" + "185.214.97.138" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 989, - "hostname": "nl989.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "es240.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.245" + "185.214.97.140" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 989, - "hostname": "nl989.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 240, + "hostname": "es240.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "213.152.188.245" + "185.214.97.140" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 990, - "hostname": "nl990.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "es241.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.247" + "185.214.97.142" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 990, - "hostname": "nl990.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 241, + "hostname": "es241.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "213.152.188.247" + "185.214.97.142" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 991, - "hostname": "nl991.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "es242.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.188.249" + "185.214.97.144" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 991, - "hostname": "nl991.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 242, + "hostname": "es242.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "213.152.188.249" + "185.214.97.144" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 992, - "hostname": "nl992.nordvpn.com", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "es243.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.214" + "185.214.97.146" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 992, - "hostname": "nl992.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Barcelona", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "es243.nordvpn.com", + "wgpubkey": "OaSGanHmoG3ytojHqodqeYYoN7s+4bF2wGfA67MHAXY=", "ips": [ - "213.152.162.214" + "185.214.97.146" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 993, - "hostname": "nl993.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "es114.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.218" + "37.120.199.243" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 993, - "hostname": "nl993.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 114, + "hostname": "es114.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.218" + "37.120.199.243" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 994, - "hostname": "nl994.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "es131.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.222" + "212.102.48.75" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 994, - "hostname": "nl994.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 131, + "hostname": "es131.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.222" + "212.102.48.75" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 995, - "hostname": "nl995.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "es132.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.226" + "212.102.48.72" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 995, - "hostname": "nl995.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 132, + "hostname": "es132.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.226" + "212.102.48.72" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 996, - "hostname": "nl996.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "es133.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.230" + "212.102.48.69" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 996, - "hostname": "nl996.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 133, + "hostname": "es133.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.230" + "212.102.48.69" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 997, - "hostname": "nl997.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "es134.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.234" + "212.102.48.66" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 997, - "hostname": "nl997.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 134, + "hostname": "es134.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.234" + "212.102.48.66" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 998, - "hostname": "nl998.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "es135.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.238" + "45.152.183.115" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 998, - "hostname": "nl998.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 135, + "hostname": "es135.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.238" + "45.152.183.115" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 999, - "hostname": "nl999.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "es136.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.242" + "31.13.188.99" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 999, - "hostname": "nl999.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 136, + "hostname": "es136.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.242" + "31.13.188.99" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1000, - "hostname": "nl1000.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "es137.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.246" + "217.138.218.179" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1000, - "hostname": "nl1000.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 137, + "hostname": "es137.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.246" + "217.138.218.179" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1001, - "hostname": "nl1001.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "es138.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "213.152.162.250" + "217.138.218.187" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1001, - "hostname": "nl1001.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 138, + "hostname": "es138.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "213.152.162.250" + "217.138.218.187" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1006, - "hostname": "nl1006.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "es139.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.244.194" + "217.138.218.195" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1006, - "hostname": "nl1006.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 139, + "hostname": "es139.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "149.34.244.194" + "217.138.218.195" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1007, - "hostname": "nl1007.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "es141.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.244.200" + "195.12.50.227" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1007, - "hostname": "nl1007.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 141, + "hostname": "es141.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "149.34.244.200" + "195.12.50.227" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1008, - "hostname": "nl1008.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "es142.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.244.205" + "195.12.50.232" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1008, - "hostname": "nl1008.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 142, + "hostname": "es142.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "149.34.244.205" + "195.12.50.232" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1009, - "hostname": "nl1009.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "es143.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.244.210" + "195.12.50.237" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1009, - "hostname": "nl1009.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 143, + "hostname": "es143.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "149.34.244.210" + "195.12.50.237" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1010, - "hostname": "nl1010.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "es144.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.240" + "195.206.107.117" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1010, - "hostname": "nl1010.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 144, + "hostname": "es144.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.240" + "195.206.107.117" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1011, - "hostname": "nl1011.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "es145.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.224" + "31.13.188.131" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1011, - "hostname": "nl1011.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 145, + "hostname": "es145.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.224" + "31.13.188.131" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1012, - "hostname": "nl1012.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "es147.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.208" + "31.13.188.139" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1012, - "hostname": "nl1012.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 147, + "hostname": "es147.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.208" + "31.13.188.139" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1013, - "hostname": "nl1013.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "es148.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.176" + "31.13.188.147" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1013, - "hostname": "nl1013.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 148, + "hostname": "es148.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.176" + "31.13.188.147" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1014, - "hostname": "nl1014.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "es149.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.160" + "185.183.106.227" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1014, - "hostname": "nl1014.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 149, + "hostname": "es149.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.160" + "185.183.106.227" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1015, - "hostname": "nl1015.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "es150.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.144" + "185.183.106.19" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1015, - "hostname": "nl1015.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 150, + "hostname": "es150.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.144" + "185.183.106.19" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1016, - "hostname": "nl1016.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "es151.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.128" + "185.183.106.27" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1016, - "hostname": "nl1016.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 151, + "hostname": "es151.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.128" + "185.183.106.27" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1017, - "hostname": "nl1017.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "es154.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.192" + "37.120.148.187" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1017, - "hostname": "nl1017.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 154, + "hostname": "es154.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.192" + "37.120.148.187" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1018, - "hostname": "nl1018.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "es155.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.122.112" + "37.120.148.171" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1018, - "hostname": "nl1018.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 155, + "hostname": "es155.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.46.122.112" + "37.120.148.171" ] }, { "vpn": "openvpn", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1019, - "hostname": "nl1019.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "es156.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.73.226" + "37.120.148.179" ] }, { "vpn": "wireguard", - "country": "Netherlands", + "country": "Spain", "region": "Europe", - "city": "Amsterdam", - "number": 1019, - "hostname": "nl1019.nordvpn.com", - "wgpubkey": "5p4RkybdRU5uaDi90eu4KZPTFif0lKCg4Qp6t1c4F30=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 156, + "hostname": "es156.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "79.142.73.226" + "37.120.148.179" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 68, - "hostname": "nz68.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "es162.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.62.49.193" + "192.145.124.99" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 68, - "hostname": "nz68.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 162, + "hostname": "es162.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "103.62.49.193" + "192.145.124.99" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 82, - "hostname": "nz82.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "es163.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.62.49.223" + "192.145.124.107" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 82, - "hostname": "nz82.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 163, + "hostname": "es163.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "103.62.49.223" + "192.145.124.107" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 83, - "hostname": "nz83.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "es164.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.62.49.228" + "192.145.124.123" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 83, - "hostname": "nz83.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "es164.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "103.62.49.228" + "192.145.124.123" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 84, - "hostname": "nz84.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "es169.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.62.49.233" + "37.120.199.251" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 84, - "hostname": "nz84.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "es169.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "103.62.49.233" + "37.120.199.251" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 85, - "hostname": "nz85.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "es170.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.62.49.238" + "31.13.188.27" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 85, - "hostname": "nz85.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "es170.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "103.62.49.238" + "31.13.188.27" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 86, - "hostname": "nz86.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "es171.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.67" + "31.13.188.107" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 86, - "hostname": "nz86.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 171, + "hostname": "es171.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.67" + "31.13.188.107" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 87, - "hostname": "nz87.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "es172.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.75" + "31.13.188.155" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 87, - "hostname": "nz87.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "es172.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.75" + "31.13.188.155" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 88, - "hostname": "nz88.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "es173.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.83" + "45.152.183.11" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 88, - "hostname": "nz88.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "es173.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.83" + "45.152.183.11" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 89, - "hostname": "nz89.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "es174.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.91" + "45.152.183.3" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 89, - "hostname": "nz89.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "es174.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.91" + "45.152.183.3" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 90, - "hostname": "nz90.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "es175.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.99" + "37.120.199.235" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 90, - "hostname": "nz90.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "es175.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.99" + "37.120.199.235" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 91, - "hostname": "nz91.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "es176.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.107" + "37.120.199.203" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 91, - "hostname": "nz91.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "es176.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.107" + "37.120.199.203" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 92, - "hostname": "nz92.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "es177.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "180.149.231.146" + "37.120.199.195" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 92, - "hostname": "nz92.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "es177.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "180.149.231.146" + "37.120.199.195" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 93, - "hostname": "nz93.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "es179.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "180.149.231.150" + "45.152.183.171" ] }, - { - "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 93, - "hostname": "nz93.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + { + "vpn": "wireguard", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "es179.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "180.149.231.150" + "45.152.183.171" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 94, - "hostname": "nz94.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "es180.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "180.149.231.154" + "45.152.183.179" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 94, - "hostname": "nz94.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "es180.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "180.149.231.154" + "45.152.183.179" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 95, - "hostname": "nz95.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "es181.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "180.149.231.242" + "45.152.183.187" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 95, - "hostname": "nz95.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "es181.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "180.149.231.242" + "45.152.183.187" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 96, - "hostname": "nz96.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "es182.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "180.149.231.249" + "45.152.183.195" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 96, - "hostname": "nz96.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "es182.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "180.149.231.249" + "45.152.183.195" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 97, - "hostname": "nz97.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "es183.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "180.149.231.194" + "45.152.183.203" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 97, - "hostname": "nz97.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "es183.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "180.149.231.194" + "45.152.183.203" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 98, - "hostname": "nz98.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "es188.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "180.149.231.201" + "185.93.182.251" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 98, - "hostname": "nz98.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 188, + "hostname": "es188.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "180.149.231.201" + "185.93.182.251" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 99, - "hostname": "nz99.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "es189.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "180.149.231.82" + "89.238.178.211" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 99, - "hostname": "nz99.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 189, + "hostname": "es189.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "180.149.231.82" + "89.238.178.211" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 100, - "hostname": "nz100.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "es190.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.115" + "185.199.100.1" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 100, - "hostname": "nz100.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 190, + "hostname": "es190.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.115" + "185.199.100.1" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 101, - "hostname": "nz101.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "es191.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.123" + "185.199.100.3" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 101, - "hostname": "nz101.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 191, + "hostname": "es191.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.123" + "185.199.100.3" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 102, - "hostname": "nz102.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "es192.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.131" + "185.199.100.5" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 102, - "hostname": "nz102.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 192, + "hostname": "es192.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.131" + "185.199.100.5" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 103, - "hostname": "nz103.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "es193.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.139" + "185.199.100.7" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 103, - "hostname": "nz103.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 193, + "hostname": "es193.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.139" + "185.199.100.7" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 104, - "hostname": "nz104.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "es194.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.147" + "185.199.100.9" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 104, - "hostname": "nz104.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 194, + "hostname": "es194.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.147" + "185.199.100.9" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 105, - "hostname": "nz105.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "es195.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.155" + "185.199.100.11" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 105, - "hostname": "nz105.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 195, + "hostname": "es195.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.155" + "185.199.100.11" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 106, - "hostname": "nz106.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "es196.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.163" + "185.199.100.13" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 106, - "hostname": "nz106.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 196, + "hostname": "es196.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.163" + "185.199.100.13" ] }, { "vpn": "openvpn", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 107, - "hostname": "nz107.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "es197.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "116.90.74.235" + "185.199.100.15" ] }, { "vpn": "wireguard", - "country": "New Zealand", - "region": "Asia Pacific", - "city": "Auckland", - "number": 107, - "hostname": "nz107.nordvpn.com", - "wgpubkey": "P7Dv2WoopPHomMq6jnvwV2hnV2BnI/7LklaIUTEzSQ8=", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 197, + "hostname": "es197.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "116.90.74.235" + "185.199.100.15" ] }, { "vpn": "openvpn", - "country": "North Macedonia", + "country": "Spain", "region": "Europe", - "city": "Skopje", - "number": 11, - "hostname": "mk11.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "es198.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.28.163" + "185.199.100.17" ] }, { "vpn": "wireguard", - "country": "North Macedonia", + "country": "Spain", "region": "Europe", - "city": "Skopje", - "number": 11, - "hostname": "mk11.nordvpn.com", - "wgpubkey": "Rh1u8Z0OqDiMX2/8rLw7P/N57jZc/sa5G9MvHfMKIm8=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "es198.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "185.225.28.163" + "185.199.100.17" ] }, { "vpn": "openvpn", - "country": "North Macedonia", + "country": "Spain", "region": "Europe", - "city": "Skopje", - "number": 12, - "hostname": "mk12.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "es199.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.225.28.195" + "185.199.100.19" ] }, { "vpn": "wireguard", - "country": "North Macedonia", + "country": "Spain", "region": "Europe", - "city": "Skopje", - "number": 12, - "hostname": "mk12.nordvpn.com", - "wgpubkey": "Rh1u8Z0OqDiMX2/8rLw7P/N57jZc/sa5G9MvHfMKIm8=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 199, + "hostname": "es199.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "185.225.28.195" + "185.199.100.19" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 141, - "hostname": "no141.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "es200.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.203.163" + "185.199.100.21" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 141, - "hostname": "no141.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 200, + "hostname": "es200.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.120.203.163" + "185.199.100.21" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 142, - "hostname": "no142.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "es201.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.203.171" + "185.199.100.23" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 142, - "hostname": "no142.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 201, + "hostname": "es201.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.120.203.171" + "185.199.100.23" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 143, - "hostname": "no143.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "es202.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.203.179" + "185.199.100.25" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 143, - "hostname": "no143.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 202, + "hostname": "es202.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.120.203.179" + "185.199.100.25" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 144, - "hostname": "no144.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "es203.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.203.187" + "185.199.100.27" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 144, - "hostname": "no144.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 203, + "hostname": "es203.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.120.203.187" + "185.199.100.27" ] }, { "vpn": "openvpn", - "country": "Norway", - "region": "Europe", - "city": "Oslo", - "number": 145, - "hostname": "no145.nordvpn.com", + "country": "Spain", + "region": "Europe", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "es204.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.203.195" + "185.199.100.29" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 145, - "hostname": "no145.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 204, + "hostname": "es204.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.120.203.195" + "185.199.100.29" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 146, - "hostname": "no146.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "es205.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.203.203" + "185.199.100.31" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 146, - "hostname": "no146.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 205, + "hostname": "es205.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.120.203.203" + "185.199.100.31" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 147, - "hostname": "no147.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "es206.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.203.211" + "185.199.100.33" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 147, - "hostname": "no147.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 206, + "hostname": "es206.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.120.203.211" + "185.199.100.33" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 148, - "hostname": "no148.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "es207.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.203.219" + "185.199.100.35" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 148, - "hostname": "no148.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 207, + "hostname": "es207.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "37.120.203.219" + "185.199.100.35" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 149, - "hostname": "no149.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "es212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.27" + "146.70.22.99" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 149, - "hostname": "no149.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 212, + "hostname": "es212.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "95.174.66.27" + "146.70.22.99" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 151, - "hostname": "no151.nordvpn.com", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "es213.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.22.92" + "146.70.22.107" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 151, - "hostname": "no151.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 213, + "hostname": "es213.nordvpn.com", + "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", "ips": [ - "82.102.22.92" + "146.70.22.107" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 162, - "hostname": "no162.nordvpn.com", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 214, + "hostname": "es214.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.27.211" + "149.102.236.33" ] }, { - "vpn": "wireguard", - "country": "Norway", + "vpn": "openvpn", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 162, - "hostname": "no162.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 215, + "hostname": "es215.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "82.102.27.211" + "149.102.236.35" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 163, - "hostname": "no163.nordvpn.com", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 216, + "hostname": "es216.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.67" + "149.102.236.43" ] }, { - "vpn": "wireguard", - "country": "Norway", + "vpn": "openvpn", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 163, - "hostname": "no163.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 217, + "hostname": "es217.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "95.174.66.67" + "149.102.236.45" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 164, - "hostname": "no164.nordvpn.com", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 218, + "hostname": "es218.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.83" + "149.102.236.38" ] }, { - "vpn": "wireguard", - "country": "Norway", + "vpn": "openvpn", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 164, - "hostname": "no164.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 219, + "hostname": "es219.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "95.174.66.83" + "149.102.236.40" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Spain", "region": "Europe", - "city": "Oslo", - "number": 167, - "hostname": "no167.nordvpn.com", + "city": "Madrid", + "categories": [ + "Dedicated IP" + ], + "number": 244, + "hostname": "es244.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.206.225.243" + "149.102.236.53" + ] + }, + { + "vpn": "openvpn", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lk1.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "82.149.77.1" ] }, { "vpn": "wireguard", - "country": "Norway", - "region": "Europe", - "city": "Oslo", - "number": 167, - "hostname": "no167.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "lk1.nordvpn.com", + "wgpubkey": "jNHH88BhJWNVaIqhwtwmjKDtlPAOHRTZw13buxI1jmw=", "ips": [ - "185.206.225.243" + "82.149.77.1" ] }, { "vpn": "openvpn", - "country": "Norway", - "region": "Europe", - "city": "Oslo", - "number": 168, - "hostname": "no168.nordvpn.com", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lk2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.206.225.248" + "82.149.77.3" ] }, { "vpn": "wireguard", - "country": "Norway", - "region": "Europe", - "city": "Oslo", - "number": 168, - "hostname": "no168.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "country": "Sri Lanka", + "region": "Asia Pacific", + "city": "Colombo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "lk2.nordvpn.com", + "wgpubkey": "jNHH88BhJWNVaIqhwtwmjKDtlPAOHRTZw13buxI1jmw=", "ips": [ - "185.206.225.248" + "82.149.77.3" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 169, - "hostname": "no169.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-se10.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.163" + "194.127.173.34" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 169, - "hostname": "no169.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-se10.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.163" + "194.127.173.34" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 170, - "hostname": "no170.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-se11.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.27.147" + "213.232.87.174" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 170, - "hostname": "no170.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-se11.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.102.27.147" + "213.232.87.174" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 171, - "hostname": "no171.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-se12.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.27.203" + "213.232.87.175" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 171, - "hostname": "no171.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-se12.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.102.27.203" + "213.232.87.175" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 172, - "hostname": "no172.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-se13.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.22.219" + "195.242.213.148" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 172, - "hostname": "no172.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "ch-se13.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.102.22.219" + "195.242.213.148" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 173, - "hostname": "no173.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-se13.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.227" + "213.232.87.145" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 173, - "hostname": "no173.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-se13.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "95.174.66.227" + "213.232.87.145" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 174, - "hostname": "no174.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-se14.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.235" + "195.242.213.153" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 174, - "hostname": "no174.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "ch-se14.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "95.174.66.235" + "195.242.213.153" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 175, - "hostname": "no175.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-se15.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.27.235" + "185.230.125.108" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 175, - "hostname": "no175.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 15, + "hostname": "ch-se15.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.102.27.235" + "185.230.125.108" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 176, - "hostname": "no176.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-se16.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.27.243" + "185.236.201.132" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 176, - "hostname": "no176.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "ch-se16.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.102.27.243" + "185.236.201.132" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 178, - "hostname": "no178.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 393, + "hostname": "se393.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.179" + "37.120.209.163" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 178, - "hostname": "no178.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 393, + "hostname": "se393.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "95.174.66.179" + "37.120.209.163" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 179, - "hostname": "no179.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 394, + "hostname": "se394.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.187" + "37.120.209.171" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 179, - "hostname": "no179.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 394, + "hostname": "se394.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "95.174.66.187" + "37.120.209.171" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 180, - "hostname": "no180.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 395, + "hostname": "se395.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.195" + "37.120.209.179" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 180, - "hostname": "no180.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 395, + "hostname": "se395.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "95.174.66.195" + "37.120.209.179" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 181, - "hostname": "no181.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 396, + "hostname": "se396.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.22.83" + "37.120.209.187" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 181, - "hostname": "no181.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 396, + "hostname": "se396.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.102.22.83" + "37.120.209.187" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 182, - "hostname": "no182.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 397, + "hostname": "se397.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.22.235" + "37.120.209.195" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 182, - "hostname": "no182.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 397, + "hostname": "se397.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.102.22.235" + "37.120.209.195" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 183, - "hostname": "no183.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 398, + "hostname": "se398.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.102.22.227" + "37.120.209.203" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 183, - "hostname": "no183.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 398, + "hostname": "se398.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.102.22.227" + "37.120.209.203" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 184, - "hostname": "no184.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 399, + "hostname": "se399.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.42" + "37.120.209.211" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 184, - "hostname": "no184.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 399, + "hostname": "se399.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.42" + "37.120.209.211" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 185, - "hostname": "no185.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 400, + "hostname": "se400.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.91" + "37.120.209.219" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 185, - "hostname": "no185.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 400, + "hostname": "se400.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.91" + "37.120.209.219" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 186, - "hostname": "no186.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 401, + "hostname": "se401.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.99" + "37.120.209.227" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 186, - "hostname": "no186.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 401, + "hostname": "se401.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.99" + "37.120.209.227" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 187, - "hostname": "no187.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 402, + "hostname": "se402.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.251" + "86.106.103.19" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 187, - "hostname": "no187.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 402, + "hostname": "se402.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "95.174.66.251" + "86.106.103.19" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 188, - "hostname": "no188.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 424, + "hostname": "se424.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.223.83" + "91.132.138.203" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 188, - "hostname": "no188.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 424, + "hostname": "se424.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.12.223.83" + "91.132.138.203" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 189, - "hostname": "no189.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 425, + "hostname": "se425.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.223.91" + "45.12.220.67" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 189, - "hostname": "no189.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 425, + "hostname": "se425.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.12.223.91" + "45.12.220.67" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 190, - "hostname": "no190.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 426, + "hostname": "se426.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.223.99" + "45.12.220.75" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 190, - "hostname": "no190.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 426, + "hostname": "se426.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.12.223.99" + "45.12.220.75" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 191, - "hostname": "no191.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 427, + "hostname": "se427.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.223.107" + "45.12.220.43" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 191, - "hostname": "no191.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 427, + "hostname": "se427.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.12.223.107" + "45.12.220.43" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 192, - "hostname": "no192.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 434, + "hostname": "se434.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.223.243" + "86.106.103.115" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 192, - "hostname": "no192.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 434, + "hostname": "se434.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.12.223.243" + "86.106.103.115" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 193, - "hostname": "no193.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 435, + "hostname": "se435.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.155" + "45.12.220.51" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 193, - "hostname": "no193.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 435, + "hostname": "se435.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.155" + "45.12.220.51" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 194, - "hostname": "no194.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 436, + "hostname": "se436.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.223.235" + "45.12.220.59" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 194, - "hostname": "no194.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 436, + "hostname": "se436.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.12.223.235" + "45.12.220.59" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 195, - "hostname": "no195.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 487, + "hostname": "se487.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.223.251" + "91.132.138.67" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 195, - "hostname": "no195.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 487, + "hostname": "se487.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.12.223.251" + "91.132.138.67" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 196, - "hostname": "no196.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 488, + "hostname": "se488.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.223.227" + "45.83.91.195" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 196, - "hostname": "no196.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 488, + "hostname": "se488.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.12.223.227" + "45.83.91.195" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 197, - "hostname": "no197.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 489, + "hostname": "se489.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.19" + "45.83.91.203" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 197, - "hostname": "no197.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 489, + "hostname": "se489.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.19" + "45.83.91.203" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 198, - "hostname": "no198.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "se490.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.24" + "45.83.91.211" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 198, - "hostname": "no198.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 490, + "hostname": "se490.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.24" + "45.83.91.211" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 199, - "hostname": "no199.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "se491.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.29" + "45.83.91.163" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 199, - "hostname": "no199.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 491, + "hostname": "se491.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.29" + "45.83.91.163" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 200, - "hostname": "no200.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 492, + "hostname": "se492.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.149.37" + "45.83.91.123" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 200, - "hostname": "no200.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 492, + "hostname": "se492.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.149.37" + "45.83.91.123" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 201, - "hostname": "no201.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "se493.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.17.163" + "45.83.91.179" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 201, - "hostname": "no201.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 493, + "hostname": "se493.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "146.70.17.163" + "45.83.91.179" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 202, - "hostname": "no202.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "se494.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.17.171" + "45.83.91.171" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 202, - "hostname": "no202.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 494, + "hostname": "se494.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "146.70.17.171" + "45.83.91.171" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 203, - "hostname": "no203.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 495, + "hostname": "se495.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.50.35" + "45.83.91.51" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 203, - "hostname": "no203.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 495, + "hostname": "se495.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "84.247.50.35" + "45.83.91.51" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 204, - "hostname": "no204.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 496, + "hostname": "se496.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.50.43" + "45.83.91.187" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 204, - "hostname": "no204.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 496, + "hostname": "se496.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "84.247.50.43" + "45.83.91.187" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 205, - "hostname": "no205.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 497, + "hostname": "se497.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.50.51" + "45.83.91.227" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 205, - "hostname": "no205.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 497, + "hostname": "se497.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "84.247.50.51" + "45.83.91.227" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 206, - "hostname": "no206.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 498, + "hostname": "se498.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.247.50.59" + "45.83.91.235" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 206, - "hostname": "no206.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 498, + "hostname": "se498.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "84.247.50.59" + "45.83.91.235" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 207, - "hostname": "no207.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 499, + "hostname": "se499.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "95.174.66.131" + "45.83.91.243" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 207, - "hostname": "no207.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 499, + "hostname": "se499.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "95.174.66.131" + "45.83.91.243" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 208, - "hostname": "no208.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 500, + "hostname": "se500.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.206.225.195" + "45.83.91.251" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 208, - "hostname": "no208.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 500, + "hostname": "se500.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "185.206.225.195" + "45.83.91.251" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 209, - "hostname": "no209.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 501, + "hostname": "se501.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.17.139" + "45.12.220.115" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 209, - "hostname": "no209.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 501, + "hostname": "se501.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "146.70.17.139" + "45.12.220.115" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 210, - "hostname": "no210.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 502, + "hostname": "se502.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.17.179" + "84.17.36.145" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 210, - "hostname": "no210.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 502, + "hostname": "se502.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "146.70.17.179" + "84.17.36.145" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 211, - "hostname": "no211.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 503, + "hostname": "se503.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.17.187" + "84.17.36.130" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 211, - "hostname": "no211.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 503, + "hostname": "se503.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "146.70.17.187" + "84.17.36.130" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 212, - "hostname": "no212.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 504, + "hostname": "se504.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.17.195" + "84.17.36.150" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 212, - "hostname": "no212.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 504, + "hostname": "se504.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "146.70.17.195" + "84.17.36.150" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 213, - "hostname": "no213.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 505, + "hostname": "se505.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.17.203" + "84.17.36.140" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 213, - "hostname": "no213.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 505, + "hostname": "se505.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "146.70.17.203" + "84.17.36.140" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 214, - "hostname": "no214.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 506, + "hostname": "se506.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.100" + "84.17.36.135" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 214, - "hostname": "no214.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 506, + "hostname": "se506.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.100" + "84.17.36.135" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 215, - "hostname": "no215.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "se507.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.102" + "84.17.36.155" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 215, - "hostname": "no215.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 507, + "hostname": "se507.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.102" + "84.17.36.155" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 216, - "hostname": "no216.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "se508.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.104" + "45.12.220.163" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 216, - "hostname": "no216.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 508, + "hostname": "se508.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.104" + "45.12.220.163" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 217, - "hostname": "no217.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 509, + "hostname": "se509.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.106" + "45.12.220.179" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 217, - "hostname": "no217.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 509, + "hostname": "se509.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.106" + "45.12.220.179" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 218, - "hostname": "no218.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "se510.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.108" + "45.12.220.171" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 218, - "hostname": "no218.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 510, + "hostname": "se510.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.108" + "45.12.220.171" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 219, - "hostname": "no219.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "se511.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.110" + "45.12.220.187" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 219, - "hostname": "no219.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 511, + "hostname": "se511.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.110" + "45.12.220.187" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 220, - "hostname": "no220.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "se512.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.112" + "45.12.220.195" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 220, - "hostname": "no220.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 512, + "hostname": "se512.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.112" + "45.12.220.195" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 221, - "hostname": "no221.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "se513.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.114" + "45.12.220.203" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 221, - "hostname": "no221.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 513, + "hostname": "se513.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.114" + "45.12.220.203" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 222, - "hostname": "no222.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "se514.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.116" + "45.12.220.219" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 222, - "hostname": "no222.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 514, + "hostname": "se514.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.116" + "45.12.220.219" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 223, - "hostname": "no223.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "se515.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.118" + "45.12.220.227" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 223, - "hostname": "no223.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 515, + "hostname": "se515.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.118" + "45.12.220.227" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 224, - "hostname": "no224.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "se516.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.120" + "45.12.220.235" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 224, - "hostname": "no224.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 516, + "hostname": "se516.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.120" + "45.12.220.235" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 225, - "hostname": "no225.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "se517.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.122" + "45.12.220.243" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 225, - "hostname": "no225.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 517, + "hostname": "se517.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.122" + "45.12.220.243" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 226, - "hostname": "no226.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "se518.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.124" + "45.12.220.251" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 226, - "hostname": "no226.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 518, + "hostname": "se518.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.124" + "45.12.220.251" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 227, - "hostname": "no227.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "se519.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.126" + "45.83.91.19" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 227, - "hostname": "no227.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 519, + "hostname": "se519.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.126" + "45.83.91.19" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 228, - "hostname": "no228.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "se520.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.128" + "45.83.91.27" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 228, - "hostname": "no228.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 520, + "hostname": "se520.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.128" + "45.83.91.27" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 229, - "hostname": "no229.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "se521.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.130" + "86.106.103.195" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 229, - "hostname": "no229.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 521, + "hostname": "se521.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.130" + "86.106.103.195" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 230, - "hostname": "no230.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "se522.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.132" + "86.106.103.235" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 230, - "hostname": "no230.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 522, + "hostname": "se522.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.132" + "86.106.103.235" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 231, - "hostname": "no231.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "se523.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.134" + "86.106.103.243" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 231, - "hostname": "no231.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 523, + "hostname": "se523.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.134" + "86.106.103.243" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 232, - "hostname": "no232.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "se524.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.136" + "86.106.103.251" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 232, - "hostname": "no232.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 524, + "hostname": "se524.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.136" + "86.106.103.251" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 233, - "hostname": "no233.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "se525.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.138" + "91.132.138.155" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 233, - "hostname": "no233.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 525, + "hostname": "se525.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.138" + "91.132.138.155" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 234, - "hostname": "no234.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "se526.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.140" + "45.12.220.211" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 234, - "hostname": "no234.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 526, + "hostname": "se526.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.140" + "45.12.220.211" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 235, - "hostname": "no235.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "se527.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.142" + "91.132.138.163" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 235, - "hostname": "no235.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 527, + "hostname": "se527.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.142" + "91.132.138.163" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 236, - "hostname": "no236.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "se528.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.144" + "91.132.138.179" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 236, - "hostname": "no236.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 528, + "hostname": "se528.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.144" + "91.132.138.179" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 237, - "hostname": "no237.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "se529.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.146" + "91.132.138.187" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 237, - "hostname": "no237.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 529, + "hostname": "se529.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.146" + "91.132.138.187" ] }, { "vpn": "openvpn", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 238, - "hostname": "no238.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "se530.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.84.39.148" + "185.247.71.11" ] }, { "vpn": "wireguard", - "country": "Norway", + "country": "Sweden", "region": "Europe", - "city": "Oslo", - "number": 238, - "hostname": "no238.nordvpn.com", - "wgpubkey": "24IO9X6HN0Rx/KLpFpcZHjcI2bJ6Z6JWJ+ZShKjTZkU=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 530, + "hostname": "se530.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.84.39.148" + "185.247.71.11" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 122, - "hostname": "pl122.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "se531.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.171" + "185.247.71.19" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 122, - "hostname": "pl122.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 531, + "hostname": "se531.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.171" + "185.247.71.19" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 125, - "hostname": "pl125.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "se532.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.209.67" + "185.247.71.27" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 125, - "hostname": "pl125.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 532, + "hostname": "se532.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "217.138.209.67" + "185.247.71.27" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 128, - "hostname": "pl128.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "se533.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.99.105.99" + "185.247.71.35" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 128, - "hostname": "pl128.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 533, + "hostname": "se533.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "194.99.105.99" + "185.247.71.35" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 133, - "hostname": "pl133.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "se534.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.55.82" + "185.247.71.43" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 133, - "hostname": "pl133.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 534, + "hostname": "se534.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "84.17.55.82" + "185.247.71.43" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 134, - "hostname": "pl134.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "se535.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.156.219" + "185.247.71.51" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 134, - "hostname": "pl134.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 535, + "hostname": "se535.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.156.219" + "185.247.71.51" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 135, - "hostname": "pl135.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "se536.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.156.227" + "185.247.71.59" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 135, - "hostname": "pl135.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 536, + "hostname": "se536.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.156.227" + "185.247.71.59" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 136, - "hostname": "pl136.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "se537.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.156.131" + "185.247.71.67" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 136, - "hostname": "pl136.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 537, + "hostname": "se537.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.156.131" + "185.247.71.67" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 137, - "hostname": "pl137.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "se542.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.156.139" + "185.219.140.1" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 137, - "hostname": "pl137.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 542, + "hostname": "se542.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.156.139" + "185.219.140.1" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 138, - "hostname": "pl138.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "se543.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.156.147" + "185.219.140.3" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 138, - "hostname": "pl138.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 543, + "hostname": "se543.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.156.147" + "185.219.140.3" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 139, - "hostname": "pl139.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "se544.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.206.51" + "185.219.140.5" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 139, - "hostname": "pl139.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 544, + "hostname": "se544.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "5.253.206.51" + "185.219.140.5" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 140, - "hostname": "pl140.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "se545.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.206.83" + "185.219.140.7" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 140, - "hostname": "pl140.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 545, + "hostname": "se545.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "5.253.206.83" + "185.219.140.7" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 141, - "hostname": "pl141.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "se546.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.206.91" + "185.219.140.9" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 141, - "hostname": "pl141.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 546, + "hostname": "se546.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "5.253.206.91" + "185.219.140.9" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 143, - "hostname": "pl143.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "se547.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.206.139" + "185.219.140.11" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 143, - "hostname": "pl143.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 547, + "hostname": "se547.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "5.253.206.139" + "185.219.140.11" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 144, - "hostname": "pl144.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "se548.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.206.147" + "185.219.140.13" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 144, - "hostname": "pl144.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 548, + "hostname": "se548.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "5.253.206.147" + "185.219.140.13" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 145, - "hostname": "pl145.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "se549.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.206.155" + "185.219.140.15" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 145, - "hostname": "pl145.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 549, + "hostname": "se549.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "5.253.206.155" + "185.219.140.15" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 146, - "hostname": "pl146.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "se550.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.206.163" + "185.219.140.17" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 146, - "hostname": "pl146.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 550, + "hostname": "se550.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "5.253.206.163" + "185.219.140.17" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 147, - "hostname": "pl147.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "se551.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.253.206.171" + "185.219.140.19" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 147, - "hostname": "pl147.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 551, + "hostname": "se551.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "5.253.206.171" + "185.219.140.19" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 148, - "hostname": "pl148.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "se552.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.214.227" + "185.219.140.21" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 148, - "hostname": "pl148.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 552, + "hostname": "se552.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "185.244.214.227" + "185.219.140.21" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 149, - "hostname": "pl149.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "se553.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.214.232" + "185.219.140.23" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 149, - "hostname": "pl149.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 553, + "hostname": "se553.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "185.244.214.232" + "185.219.140.23" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 150, - "hostname": "pl150.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "se554.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.214.237" + "185.219.140.25" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 150, - "hostname": "pl150.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 554, + "hostname": "se554.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "185.244.214.237" + "185.219.140.25" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 151, - "hostname": "pl151.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "se555.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.214.242" + "185.219.140.27" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 151, - "hostname": "pl151.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 555, + "hostname": "se555.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "185.244.214.242" + "185.219.140.27" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 152, - "hostname": "pl152.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 556, + "hostname": "se556.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.214.247" + "185.219.140.29" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 152, - "hostname": "pl152.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 556, + "hostname": "se556.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "185.244.214.247" + "185.219.140.29" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 153, - "hostname": "pl153.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 557, + "hostname": "se557.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.99.105.227" + "185.219.140.31" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 153, - "hostname": "pl153.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 557, + "hostname": "se557.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "194.99.105.227" + "185.219.140.31" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 154, - "hostname": "pl154.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 558, + "hostname": "se558.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.99.105.232" + "185.219.140.33" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 154, - "hostname": "pl154.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 558, + "hostname": "se558.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "194.99.105.232" + "185.219.140.33" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 155, - "hostname": "pl155.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 559, + "hostname": "se559.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.99.105.237" + "185.219.140.35" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 155, - "hostname": "pl155.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 559, + "hostname": "se559.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "194.99.105.237" + "185.219.140.35" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 156, - "hostname": "pl156.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 560, + "hostname": "se560.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.99.105.242" + "185.219.140.37" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 156, - "hostname": "pl156.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 560, + "hostname": "se560.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "194.99.105.242" + "185.219.140.37" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 157, - "hostname": "pl157.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 561, + "hostname": "se561.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.99.105.247" + "185.219.140.39" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 157, - "hostname": "pl157.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 561, + "hostname": "se561.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "194.99.105.247" + "185.219.140.39" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 158, - "hostname": "pl158.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "se562.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.156.67" + "185.219.140.41" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 158, - "hostname": "pl158.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 562, + "hostname": "se562.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.156.67" + "185.219.140.41" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 159, - "hostname": "pl159.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "se563.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.156.75" + "185.219.140.43" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 159, - "hostname": "pl159.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 563, + "hostname": "se563.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.156.75" + "185.219.140.43" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 160, - "hostname": "pl160.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "se564.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.156.83" + "185.219.140.45" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 160, - "hostname": "pl160.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 564, + "hostname": "se564.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.156.83" + "185.219.140.45" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 163, - "hostname": "pl163.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "se565.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.99" + "185.219.140.47" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 163, - "hostname": "pl163.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 565, + "hostname": "se565.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.99" + "185.219.140.47" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 164, - "hostname": "pl164.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "se566.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.107" + "185.219.140.49" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 164, - "hostname": "pl164.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 566, + "hostname": "se566.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.107" + "185.219.140.49" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 165, - "hostname": "pl165.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "se567.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.115" + "185.219.140.51" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 165, - "hostname": "pl165.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 567, + "hostname": "se567.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.115" + "185.219.140.51" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 166, - "hostname": "pl166.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "se568.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.123" + "185.219.140.53" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 166, - "hostname": "pl166.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 568, + "hostname": "se568.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.123" + "185.219.140.53" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 167, - "hostname": "pl167.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "se569.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.131" + "146.70.21.11" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 167, - "hostname": "pl167.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 569, + "hostname": "se569.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.131" + "146.70.21.11" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 168, - "hostname": "pl168.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "se570.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.139" + "146.70.21.19" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 168, - "hostname": "pl168.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 570, + "hostname": "se570.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.139" + "146.70.21.19" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 169, - "hostname": "pl169.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "se571.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.147" + "146.70.21.27" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 169, - "hostname": "pl169.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 571, + "hostname": "se571.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.147" + "146.70.21.27" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 170, - "hostname": "pl170.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 572, + "hostname": "se572.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.155" + "146.70.21.35" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 170, - "hostname": "pl170.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 572, + "hostname": "se572.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.155" + "146.70.21.35" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 171, - "hostname": "pl171.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 573, + "hostname": "se573.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.211.163" + "146.70.21.43" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 171, - "hostname": "pl171.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 573, + "hostname": "se573.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "37.120.211.163" + "146.70.21.43" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 172, - "hostname": "pl172.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 574, + "hostname": "se574.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.209.83" + "146.70.21.51" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 172, - "hostname": "pl172.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 574, + "hostname": "se574.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "217.138.209.83" + "146.70.21.51" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 173, - "hostname": "pl173.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 575, + "hostname": "se575.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.209.75" + "146.70.21.59" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 173, - "hostname": "pl173.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 575, + "hostname": "se575.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "217.138.209.75" + "146.70.21.59" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 196, - "hostname": "pl196.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "se576.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.134.212.179" + "146.70.21.67" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 196, - "hostname": "pl196.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 576, + "hostname": "se576.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.134.212.179" + "146.70.21.67" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 197, - "hostname": "pl197.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "se581.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.134.212.172" + "146.70.21.115" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 197, - "hostname": "pl197.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 581, + "hostname": "se581.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.134.212.172" + "146.70.21.115" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 198, - "hostname": "pl198.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "se582.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.134.212.165" + "31.13.191.131" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 198, - "hostname": "pl198.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 582, + "hostname": "se582.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.134.212.165" + "31.13.191.131" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 199, - "hostname": "pl199.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "se583.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.134.212.158" + "31.13.191.139" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 199, - "hostname": "pl199.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 583, + "hostname": "se583.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.134.212.158" + "31.13.191.139" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 200, - "hostname": "pl200.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "se584.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.134.212.151" + "31.13.191.147" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 200, - "hostname": "pl200.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 584, + "hostname": "se584.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.134.212.151" + "31.13.191.147" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 201, - "hostname": "pl201.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "se585.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.134.212.144" + "31.13.191.155" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 201, - "hostname": "pl201.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 585, + "hostname": "se585.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.134.212.144" + "31.13.191.155" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 202, - "hostname": "pl202.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "se586.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.134.212.137" + "146.70.21.107" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 202, - "hostname": "pl202.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 586, + "hostname": "se586.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.134.212.137" + "146.70.21.107" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 203, - "hostname": "pl203.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "se588.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.134.212.130" + "79.142.77.240" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 203, - "hostname": "pl203.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 588, + "hostname": "se588.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "45.134.212.130" + "79.142.77.240" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 208, - "hostname": "pl208.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "se589.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.1" + "79.142.77.96" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 208, - "hostname": "pl208.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 589, + "hostname": "se589.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.1" + "79.142.77.96" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 209, - "hostname": "pl209.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "se590.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.7" + "79.142.77.112" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 209, - "hostname": "pl209.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 590, + "hostname": "se590.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.7" + "79.142.77.112" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 210, - "hostname": "pl210.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "se591.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.13" + "79.142.77.128" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 210, - "hostname": "pl210.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 591, + "hostname": "se591.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.13" + "79.142.77.128" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 211, - "hostname": "pl211.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "se592.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.19" + "79.142.77.144" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 211, - "hostname": "pl211.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 592, + "hostname": "se592.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.19" + "79.142.77.144" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 212, - "hostname": "pl212.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "se593.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.25" + "79.142.77.160" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 212, - "hostname": "pl212.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 593, + "hostname": "se593.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.25" + "79.142.77.160" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 213, - "hostname": "pl213.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "se594.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.31" + "79.142.77.176" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 213, - "hostname": "pl213.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 594, + "hostname": "se594.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.31" + "79.142.77.176" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 214, - "hostname": "pl214.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "se595.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.37" + "79.142.77.192" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 214, - "hostname": "pl214.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 595, + "hostname": "se595.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.37" + "79.142.77.192" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 215, - "hostname": "pl215.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "se596.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.43" + "79.142.77.208" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 215, - "hostname": "pl215.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 596, + "hostname": "se596.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.43" + "79.142.77.208" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 216, - "hostname": "pl216.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "se597.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.49" + "79.142.77.224" ] }, { "vpn": "wireguard", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 216, - "hostname": "pl216.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 597, + "hostname": "se597.nordvpn.com", + "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", "ips": [ - "82.180.151.49" + "79.142.77.224" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 217, - "hostname": "pl217.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 598, + "hostname": "se598.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.55" - ] - }, - { - "vpn": "wireguard", - "country": "Poland", - "region": "Europe", - "city": "Warsaw", - "number": 217, - "hostname": "pl217.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", - "ips": [ - "82.180.151.55" + "84.17.36.186" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 218, - "hostname": "pl218.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 599, + "hostname": "se599.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.61" + "84.17.36.188" ] }, { - "vpn": "wireguard", - "country": "Poland", + "vpn": "openvpn", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 218, - "hostname": "pl218.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 600, + "hostname": "se600.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "82.180.151.61" + "84.17.36.248" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 219, - "hostname": "pl219.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 601, + "hostname": "se601.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.67" + "84.17.36.250" ] }, { - "vpn": "wireguard", - "country": "Poland", + "vpn": "openvpn", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 219, - "hostname": "pl219.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 602, + "hostname": "se602.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "82.180.151.67" + "84.17.36.152" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 220, - "hostname": "pl220.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 603, + "hostname": "se603.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.73" + "84.17.36.157" ] }, { - "vpn": "wireguard", - "country": "Poland", + "vpn": "openvpn", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 220, - "hostname": "pl220.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 604, + "hostname": "se604.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "82.180.151.73" + "84.17.36.138" ] }, { "vpn": "openvpn", - "country": "Poland", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 221, - "hostname": "pl221.nordvpn.com", + "city": "Stockholm", + "categories": [ + "Dedicated IP", + "P2P" + ], + "number": 605, + "hostname": "se605.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.151.79" + "84.17.36.143" ] }, { - "vpn": "wireguard", - "country": "Poland", + "vpn": "openvpn", + "country": "Sweden", "region": "Europe", - "city": "Warsaw", - "number": 221, - "hostname": "pl221.nordvpn.com", - "wgpubkey": "kjAOzXQRVGpmQdqE2zPsITH8QHmFK83AAPktqWed9wM=", + "city": "Stockholm", + "categories": [ + "Dedicated IP" + ], + "number": 606, + "hostname": "se606.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "82.180.151.79" + "84.17.36.156" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 66, - "hostname": "pt66.nordvpn.com", + "city": "Zurich", + "categories": [ + "Onion Over VPN" + ], + "number": 2, + "hostname": "ch-onion2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.205.230.193" + "37.120.137.172" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 66, - "hostname": "pt66.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Onion Over VPN" + ], + "number": 2, + "hostname": "ch-onion2.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.205.230.193" + "37.120.137.172" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 67, - "hostname": "pt67.nordvpn.com", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 8, + "hostname": "nl-ch8.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.205.230.201" + "213.232.87.170" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 67, - "hostname": "pt67.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 8, + "hostname": "nl-ch8.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.205.230.201" + "213.232.87.170" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 79, - "hostname": "pt79.nordvpn.com", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 9, + "hostname": "nl-ch9.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.82" + "213.232.87.171" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 79, - "hostname": "pt79.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 9, + "hostname": "nl-ch9.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.82" + "213.232.87.171" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 80, - "hostname": "pt80.nordvpn.com", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-ch10.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.90" + "194.127.173.35" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 80, - "hostname": "pt80.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-ch10.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.90" + "194.127.173.35" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 81, - "hostname": "pt81.nordvpn.com", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-ch11.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.218" + "213.232.87.146" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 81, - "hostname": "pt81.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-ch11.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.218" + "213.232.87.146" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 82, - "hostname": "pt82.nordvpn.com", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-ch11.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.154.174.18" + "91.132.138.196" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 82, - "hostname": "pt82.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "se-ch11.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "5.154.174.18" + "91.132.138.196" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 83, - "hostname": "pt83.nordvpn.com", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-ch12.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.154.174.138" + "91.132.138.228" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 83, - "hostname": "pt83.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "se-ch12.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "5.154.174.138" + "91.132.138.228" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 84, - "hostname": "pt84.nordvpn.com", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-ch13.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.154.174.194" + "91.132.138.220" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 84, - "hostname": "pt84.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "se-ch13.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "5.154.174.194" + "91.132.138.220" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 85, - "hostname": "pt85.nordvpn.com", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-ch14.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.250.240.42" + "91.132.138.212" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 85, - "hostname": "pt85.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Double VPN" + ], + "number": 14, + "hostname": "se-ch14.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.250.240.42" + "91.132.138.212" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 86, - "hostname": "pt86.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "ch198.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.250.240.50" + "37.120.213.131" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 86, - "hostname": "pt86.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 198, + "hostname": "ch198.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.250.240.50" + "37.120.213.131" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 87, - "hostname": "pt87.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "ch217.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.250.240.58" + "185.156.175.132" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 87, - "hostname": "pt87.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 217, + "hostname": "ch217.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.250.240.58" + "185.156.175.132" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 88, - "hostname": "pt88.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "ch218.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.250.240.66" + "84.39.112.20" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 88, - "hostname": "pt88.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 218, + "hostname": "ch218.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.250.240.66" + "84.39.112.20" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 89, - "hostname": "pt89.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "ch219.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.154.174.161" + "185.9.18.84" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 89, - "hostname": "pt89.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 219, + "hostname": "ch219.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "5.154.174.161" + "185.9.18.84" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 90, - "hostname": "pt90.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "ch221.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.1" + "91.132.136.235" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 90, - "hostname": "pt90.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 221, + "hostname": "ch221.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.1" + "91.132.136.235" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 91, - "hostname": "pt91.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "ch222.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.9" + "185.156.175.115" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 91, - "hostname": "pt91.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 222, + "hostname": "ch222.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.9" + "185.156.175.115" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 92, - "hostname": "pt92.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "ch223.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.17" + "185.156.175.123" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 92, - "hostname": "pt92.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 223, + "hostname": "ch223.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.17" + "185.156.175.123" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 93, - "hostname": "pt93.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "ch224.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.49" + "185.9.18.163" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 93, - "hostname": "pt93.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 224, + "hostname": "ch224.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.49" + "185.9.18.163" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 94, - "hostname": "pt94.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "ch225.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.73" + "212.102.36.150" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 94, - "hostname": "pt94.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 225, + "hostname": "ch225.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.73" + "212.102.36.150" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 95, - "hostname": "pt95.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "ch226.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.209" + "212.102.36.145" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 95, - "hostname": "pt95.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 226, + "hostname": "ch226.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.209" + "212.102.36.145" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 96, - "hostname": "pt96.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "ch227.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.57" + "212.102.36.140" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 96, - "hostname": "pt96.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 227, + "hostname": "ch227.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.57" + "212.102.36.140" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 97, - "hostname": "pt97.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "ch228.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.65" + "212.102.36.135" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 97, - "hostname": "pt97.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 228, + "hostname": "ch228.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.65" + "212.102.36.135" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 98, - "hostname": "pt98.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "ch229.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.97" + "212.102.36.130" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 98, - "hostname": "pt98.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 229, + "hostname": "ch229.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.97" + "212.102.36.130" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 99, - "hostname": "pt99.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "ch243.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.105" + "185.236.201.139" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 99, - "hostname": "pt99.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 243, + "hostname": "ch243.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.105" + "185.236.201.139" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 100, - "hostname": "pt100.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "ch252.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.113" + "185.156.175.139" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 100, - "hostname": "pt100.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 252, + "hostname": "ch252.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.113" + "185.156.175.139" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 101, - "hostname": "pt101.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "ch286.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.248.121" + "185.236.201.147" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 101, - "hostname": "pt101.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 286, + "hostname": "ch286.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "195.158.248.121" + "185.236.201.147" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 102, - "hostname": "pt102.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "ch293.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.92.210.145" + "37.120.213.43" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 102, - "hostname": "pt102.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 293, + "hostname": "ch293.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "185.92.210.145" + "37.120.213.43" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 103, - "hostname": "pt103.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "ch294.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.154.174.81" + "37.120.213.67" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 103, - "hostname": "pt103.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 294, + "hostname": "ch294.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "5.154.174.81" + "37.120.213.67" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 104, - "hostname": "pt104.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "ch295.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.205.230.209" + "37.120.213.75" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 104, - "hostname": "pt104.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 295, + "hostname": "ch295.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.205.230.209" + "37.120.213.75" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 105, - "hostname": "pt105.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "ch296.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.205.230.217" + "37.120.213.83" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 105, - "hostname": "pt105.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 296, + "hostname": "ch296.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.205.230.217" + "37.120.213.83" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 106, - "hostname": "pt106.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "ch297.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.205.230.241" + "37.120.213.91" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 106, - "hostname": "pt106.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 297, + "hostname": "ch297.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.205.230.241" + "37.120.213.91" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 107, - "hostname": "pt107.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "ch298.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.205.230.249" + "37.120.213.99" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 107, - "hostname": "pt107.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 298, + "hostname": "ch298.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "91.205.230.249" + "37.120.213.99" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 108, - "hostname": "pt108.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "ch299.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.174.156.9" + "37.120.213.107" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 108, - "hostname": "pt108.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 299, + "hostname": "ch299.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "185.174.156.9" + "37.120.213.107" ] }, { "vpn": "openvpn", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 109, - "hostname": "pt109.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "ch300.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.174.156.1" + "37.120.213.115" ] }, { "vpn": "wireguard", - "country": "Portugal", + "country": "Switzerland", "region": "Europe", - "city": "Lisbon", - "number": 109, - "hostname": "pt109.nordvpn.com", - "wgpubkey": "g2FKL4rhcZ3ylv9EEjpnDLsH2uR3DkgZ5iFQLTJBtF4=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 300, + "hostname": "ch300.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "185.174.156.1" + "37.120.213.115" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 59, - "hostname": "ro59.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "ch301.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.137.187" + "37.120.213.123" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 59, - "hostname": "ro59.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 301, + "hostname": "ch301.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "86.106.137.187" + "37.120.213.123" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 65, - "hostname": "ro65.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 319, + "hostname": "ch319.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.210.218.219" + "195.216.219.121" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 65, - "hostname": "ro65.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 319, + "hostname": "ch319.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "185.210.218.219" + "195.216.219.121" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 66, - "hostname": "ro66.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 320, + "hostname": "ch320.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.105.9.115" + "195.216.219.129" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 66, - "hostname": "ro66.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 320, + "hostname": "ch320.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "86.105.9.115" + "195.216.219.129" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 67, - "hostname": "ro67.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 321, + "hostname": "ch321.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.46.103.171" + "195.216.219.131" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 67, - "hostname": "ro67.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 321, + "hostname": "ch321.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.46.103.171" + "195.216.219.131" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 68, - "hostname": "ro68.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 322, + "hostname": "ch322.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.46.102.115" + "195.216.219.133" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 68, - "hostname": "ro68.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 322, + "hostname": "ch322.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.46.102.115" + "195.216.219.133" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 69, - "hostname": "ro69.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 323, + "hostname": "ch323.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.181.103.187" + "195.216.219.135" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 69, - "hostname": "ro69.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 323, + "hostname": "ch323.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "185.181.103.187" + "195.216.219.135" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 70, - "hostname": "ro70.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 324, + "hostname": "ch324.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.71.99" + "195.216.219.137" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 70, - "hostname": "ro70.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 324, + "hostname": "ch324.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.40.71.99" + "195.216.219.137" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 71, - "hostname": "ro71.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 325, + "hostname": "ch325.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.36.224.107" + "195.216.219.139" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 71, - "hostname": "ro71.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 325, + "hostname": "ch325.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.36.224.107" + "195.216.219.139" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 72, - "hostname": "ro72.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 326, + "hostname": "ch326.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.105.9.11" + "195.216.219.141" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 72, - "hostname": "ro72.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 326, + "hostname": "ch326.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "86.105.9.11" + "195.216.219.141" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 73, - "hostname": "ro73.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 327, + "hostname": "ch327.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.33.246.19" + "195.216.219.143" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 73, - "hostname": "ro73.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 327, + "hostname": "ch327.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.33.246.19" + "195.216.219.143" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 74, - "hostname": "ro74.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 328, + "hostname": "ch328.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.36.224.251" + "195.216.219.145" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 74, - "hostname": "ro74.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 328, + "hostname": "ch328.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.36.224.251" + "195.216.219.145" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 75, - "hostname": "ro75.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 329, + "hostname": "ch329.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.36.224.243" + "195.216.219.147" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 75, - "hostname": "ro75.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 329, + "hostname": "ch329.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.36.224.243" + "195.216.219.147" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 76, - "hostname": "ro76.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 330, + "hostname": "ch330.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.33.246.27" + "195.216.219.149" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 76, - "hostname": "ro76.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 330, + "hostname": "ch330.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.33.246.27" + "195.216.219.149" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 77, - "hostname": "ro77.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 331, + "hostname": "ch331.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.137.11" + "195.216.219.151" ] }, { - "vpn": "wireguard", - "country": "Romania", - "region": "Europe", - "city": "Bucharest", - "number": 77, - "hostname": "ro77.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 331, + "hostname": "ch331.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "86.106.137.11" + "195.216.219.151" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 78, - "hostname": "ro78.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 332, + "hostname": "ch332.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.40.71.243" + "195.216.219.153" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 78, - "hostname": "ro78.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 332, + "hostname": "ch332.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "89.40.71.243" + "195.216.219.153" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 79, - "hostname": "ro79.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 333, + "hostname": "ch333.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.105" + "195.216.219.155" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 79, - "hostname": "ro79.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 333, + "hostname": "ch333.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.105" + "195.216.219.155" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 80, - "hostname": "ro80.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 334, + "hostname": "ch334.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.134" + "178.239.165.14" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 80, - "hostname": "ro80.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 334, + "hostname": "ch334.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.134" + "178.239.165.14" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 81, - "hostname": "ro81.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 335, + "hostname": "ch335.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.158" + "178.239.165.16" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 81, - "hostname": "ro81.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 335, + "hostname": "ch335.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.158" + "178.239.165.16" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 82, - "hostname": "ro82.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 336, + "hostname": "ch336.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.182" + "178.239.165.18" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 82, - "hostname": "ro82.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 336, + "hostname": "ch336.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.182" + "178.239.165.18" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 83, - "hostname": "ro83.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 337, + "hostname": "ch337.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.206" + "178.239.165.20" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 83, - "hostname": "ro83.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 337, + "hostname": "ch337.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.206" + "178.239.165.20" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 84, - "hostname": "ro84.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 338, + "hostname": "ch338.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.229" + "178.239.165.22" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 84, - "hostname": "ro84.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 338, + "hostname": "ch338.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.229" + "178.239.165.22" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 85, - "hostname": "ro85.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 339, + "hostname": "ch339.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.1" + "178.239.165.24" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 85, - "hostname": "ro85.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 339, + "hostname": "ch339.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.1" + "178.239.165.24" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 86, - "hostname": "ro86.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 340, + "hostname": "ch340.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.3" + "178.239.165.26" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 86, - "hostname": "ro86.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 340, + "hostname": "ch340.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.3" + "178.239.165.26" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 87, - "hostname": "ro87.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 341, + "hostname": "ch341.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.5" + "178.239.165.28" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 87, - "hostname": "ro87.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 341, + "hostname": "ch341.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.5" + "178.239.165.28" ] }, { "vpn": "openvpn", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 88, - "hostname": "ro88.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 342, + "hostname": "ch342.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "155.133.71.7" + "178.239.165.30" ] }, { "vpn": "wireguard", - "country": "Romania", + "country": "Switzerland", "region": "Europe", - "city": "Bucharest", - "number": 88, - "hostname": "ro88.nordvpn.com", - "wgpubkey": "o3Dj1qKYmzBBOBaD9JAhK9cg/8nfYxWg6GADL09DPHE=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 342, + "hostname": "ch342.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "155.133.71.7" + "178.239.165.30" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 48, - "hostname": "rs48.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 343, + "hostname": "ch343.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.123" + "178.239.165.32" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 48, - "hostname": "rs48.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 343, + "hostname": "ch343.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.123" + "178.239.165.32" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 49, - "hostname": "rs49.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 344, + "hostname": "ch344.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.131" + "178.239.165.34" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 49, - "hostname": "rs49.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 344, + "hostname": "ch344.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.131" + "178.239.165.34" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 50, - "hostname": "rs50.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 345, + "hostname": "ch345.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.139" + "178.239.165.36" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 50, - "hostname": "rs50.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 345, + "hostname": "ch345.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.139" + "178.239.165.36" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 51, - "hostname": "rs51.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 346, + "hostname": "ch346.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.147" + "178.239.165.142" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 51, - "hostname": "rs51.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 346, + "hostname": "ch346.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.147" + "178.239.165.142" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 60, - "hostname": "rs60.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 347, + "hostname": "ch347.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.75" + "178.239.165.151" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 60, - "hostname": "rs60.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 347, + "hostname": "ch347.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.75" + "178.239.165.151" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 61, - "hostname": "rs61.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 348, + "hostname": "ch348.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.83" + "178.239.165.161" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 61, - "hostname": "rs61.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 348, + "hostname": "ch348.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.83" + "178.239.165.161" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 62, - "hostname": "rs62.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 349, + "hostname": "ch349.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.91" + "178.239.165.171" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 62, - "hostname": "rs62.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 349, + "hostname": "ch349.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.91" + "178.239.165.171" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 63, - "hostname": "rs63.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 350, + "hostname": "ch350.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.99" + "178.239.165.181" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 63, - "hostname": "rs63.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 350, + "hostname": "ch350.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.99" + "178.239.165.181" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 64, - "hostname": "rs64.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 351, + "hostname": "ch351.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.107" + "178.239.165.190" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 64, - "hostname": "rs64.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 351, + "hostname": "ch351.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.107" + "178.239.165.190" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 65, - "hostname": "rs65.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 352, + "hostname": "ch352.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.103.115" + "178.239.165.199" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 65, - "hostname": "rs65.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 352, + "hostname": "ch352.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "141.98.103.115" + "178.239.165.199" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 76, - "hostname": "rs76.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 353, + "hostname": "ch353.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.240" + "178.239.165.208" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 76, - "hostname": "rs76.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 353, + "hostname": "ch353.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.240" + "178.239.165.208" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 77, - "hostname": "rs77.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 354, + "hostname": "ch354.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.224" + "178.239.165.226" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 77, - "hostname": "rs77.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 354, + "hostname": "ch354.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.224" + "178.239.165.226" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 78, - "hostname": "rs78.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 355, + "hostname": "ch355.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.192" + "178.239.165.235" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 78, - "hostname": "rs78.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 355, + "hostname": "ch355.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.192" + "178.239.165.235" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 79, - "hostname": "rs79.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 356, + "hostname": "ch356.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.176" + "178.239.165.245" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 79, - "hostname": "rs79.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 356, + "hostname": "ch356.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.176" + "178.239.165.245" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 80, - "hostname": "rs80.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 357, + "hostname": "ch357.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.160" + "178.239.165.217" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 80, - "hostname": "rs80.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 357, + "hostname": "ch357.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.160" + "178.239.165.217" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 81, - "hostname": "rs81.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 358, + "hostname": "ch358.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.144" + "217.138.203.219" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 81, - "hostname": "rs81.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 358, + "hostname": "ch358.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.144" + "217.138.203.219" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 82, - "hostname": "rs82.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 359, + "hostname": "ch359.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.128" + "185.9.18.171" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 82, - "hostname": "rs82.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 359, + "hostname": "ch359.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.128" + "185.9.18.171" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 83, - "hostname": "rs83.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 360, + "hostname": "ch360.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.208" + "146.70.26.75" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 83, - "hostname": "rs83.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 360, + "hostname": "ch360.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.208" + "146.70.26.75" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 84, - "hostname": "rs84.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 361, + "hostname": "ch361.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.112" + "146.70.26.83" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 84, - "hostname": "rs84.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 361, + "hostname": "ch361.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.112" + "146.70.26.83" ] }, { "vpn": "openvpn", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 85, - "hostname": "rs85.nordvpn.com", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 362, + "hostname": "ch362.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.46.116.96" + "146.70.26.91" ] }, { "vpn": "wireguard", - "country": "Serbia", + "country": "Switzerland", "region": "Europe", - "city": "Belgrade", - "number": 85, - "hostname": "rs85.nordvpn.com", - "wgpubkey": "vkFDU7x3oioIVOzuSTtMIKtJqwmVj59QHz6a65lqmQU=", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 362, + "hostname": "ch362.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "37.46.116.96" + "146.70.26.91" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 455, - "hostname": "sg455.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 363, + "hostname": "ch363.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.198.131" + "195.206.105.115" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 455, - "hostname": "sg455.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 363, + "hostname": "ch363.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.198.131" + "195.206.105.115" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 456, - "hostname": "sg456.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 364, + "hostname": "ch364.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.198.163" + "195.206.105.123" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 456, - "hostname": "sg456.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 364, + "hostname": "ch364.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.198.163" + "195.206.105.123" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 457, - "hostname": "sg457.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 365, + "hostname": "ch365.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.199.131" + "185.212.170.195" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 457, - "hostname": "sg457.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 365, + "hostname": "ch365.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.199.131" + "185.212.170.195" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 458, - "hostname": "sg458.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 366, + "hostname": "ch366.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.199.99" + "146.70.71.35" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 458, - "hostname": "sg458.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 366, + "hostname": "ch366.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.199.99" + "146.70.71.35" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 459, - "hostname": "sg459.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 367, + "hostname": "ch367.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.199.107" + "146.70.71.43" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 459, - "hostname": "sg459.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 367, + "hostname": "ch367.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.199.107" + "146.70.71.43" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 460, - "hostname": "sg460.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 368, + "hostname": "ch368.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.199.123" + "146.70.71.51" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 460, - "hostname": "sg460.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 368, + "hostname": "ch368.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.199.123" + "146.70.71.51" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 461, - "hostname": "sg461.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 369, + "hostname": "ch369.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.199.139" + "146.70.71.59" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 461, - "hostname": "sg461.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 369, + "hostname": "ch369.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.199.139" + "146.70.71.59" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 462, - "hostname": "sg462.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 370, + "hostname": "ch370.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.199.147" + "146.70.26.43" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 462, - "hostname": "sg462.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 370, + "hostname": "ch370.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.199.147" + "146.70.26.43" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 463, - "hostname": "sg463.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 371, + "hostname": "ch371.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.199.155" + "146.70.26.51" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 463, - "hostname": "sg463.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 371, + "hostname": "ch371.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.199.155" + "146.70.26.51" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 465, - "hostname": "sg465.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 372, + "hostname": "ch372.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.133" + "146.70.26.59" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 465, - "hostname": "sg465.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 372, + "hostname": "ch372.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.133" + "146.70.26.59" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 466, - "hostname": "sg466.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 373, + "hostname": "ch373.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.130" + "146.70.26.67" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 466, - "hostname": "sg466.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 373, + "hostname": "ch373.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.130" + "146.70.26.67" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 474, - "hostname": "sg474.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 374, + "hostname": "ch374.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.194" + "89.37.173.142" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 474, - "hostname": "sg474.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 374, + "hostname": "ch374.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.194" + "89.37.173.142" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 475, - "hostname": "sg475.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 375, + "hostname": "ch375.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.203" + "89.37.173.152" ] - }, - { - "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 475, - "hostname": "sg475.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + }, + { + "vpn": "wireguard", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 375, + "hostname": "ch375.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.203" + "89.37.173.152" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 476, - "hostname": "sg476.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 376, + "hostname": "ch376.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.197" + "89.37.173.162" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 476, - "hostname": "sg476.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 376, + "hostname": "ch376.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.197" + "89.37.173.162" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 477, - "hostname": "sg477.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 377, + "hostname": "ch377.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.200" + "89.37.173.172" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 477, - "hostname": "sg477.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 377, + "hostname": "ch377.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.200" + "89.37.173.172" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 478, - "hostname": "sg478.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 378, + "hostname": "ch378.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.206" + "89.37.173.182" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 478, - "hostname": "sg478.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 378, + "hostname": "ch378.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.206" + "89.37.173.182" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 479, - "hostname": "sg479.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 379, + "hostname": "ch379.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.209" + "89.37.173.192" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 479, - "hostname": "sg479.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 379, + "hostname": "ch379.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.209" + "89.37.173.192" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 480, - "hostname": "sg480.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 380, + "hostname": "ch380.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.212" + "89.37.173.201" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 480, - "hostname": "sg480.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 380, + "hostname": "ch380.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.212" + "89.37.173.201" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 481, - "hostname": "sg481.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 381, + "hostname": "ch381.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.215" + "89.37.173.210" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 481, - "hostname": "sg481.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 381, + "hostname": "ch381.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.215" + "89.37.173.210" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 482, - "hostname": "sg482.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 382, + "hostname": "ch382.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.218" + "89.37.173.219" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 482, - "hostname": "sg482.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 382, + "hostname": "ch382.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.218" + "89.37.173.219" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 483, - "hostname": "sg483.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 383, + "hostname": "ch383.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.221" + "89.37.173.228" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 483, - "hostname": "sg483.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 383, + "hostname": "ch383.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.221" + "89.37.173.228" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 490, - "hostname": "sg490.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 384, + "hostname": "ch384.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.198.99" + "89.37.173.237" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 490, - "hostname": "sg490.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 384, + "hostname": "ch384.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.198.99" + "89.37.173.237" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 491, - "hostname": "sg491.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 385, + "hostname": "ch385.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.198.107" + "89.37.173.246" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 491, - "hostname": "sg491.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 385, + "hostname": "ch385.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.198.107" + "89.37.173.246" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 493, - "hostname": "sg493.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 386, + "hostname": "ch386.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.198.115" + "82.180.148.245" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 493, - "hostname": "sg493.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 386, + "hostname": "ch386.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.198.115" + "82.180.148.245" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 494, - "hostname": "sg494.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 387, + "hostname": "ch387.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.198.123" + "82.180.148.247" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 494, - "hostname": "sg494.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 387, + "hostname": "ch387.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.198.123" + "82.180.148.247" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 507, - "hostname": "sg507.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 388, + "hostname": "ch388.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.198.91" + "82.180.148.249" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 507, - "hostname": "sg507.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 388, + "hostname": "ch388.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.198.91" + "82.180.148.249" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 508, - "hostname": "sg508.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 389, + "hostname": "ch389.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.107.198.139" + "82.180.148.251" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 508, - "hostname": "sg508.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 389, + "hostname": "ch389.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "103.107.198.139" + "82.180.148.251" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 510, - "hostname": "sg510.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 403, + "hostname": "ch403.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.27.106.131" + "185.7.34.240" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 510, - "hostname": "sg510.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 403, + "hostname": "ch403.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "203.27.106.131" + "185.7.34.240" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 511, - "hostname": "sg511.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 404, + "hostname": "ch404.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.27.106.139" + "185.7.34.224" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 511, - "hostname": "sg511.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 404, + "hostname": "ch404.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "203.27.106.139" + "185.7.34.224" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 512, - "hostname": "sg512.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 405, + "hostname": "ch405.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.27.106.147" + "185.7.34.208" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 512, - "hostname": "sg512.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 405, + "hostname": "ch405.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "203.27.106.147" + "185.7.34.208" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 513, - "hostname": "sg513.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 406, + "hostname": "ch406.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.27.106.155" + "185.7.34.192" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 513, - "hostname": "sg513.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 406, + "hostname": "ch406.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "203.27.106.155" + "185.7.34.192" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 514, - "hostname": "sg514.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 407, + "hostname": "ch407.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.27.106.163" + "185.7.34.176" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 514, - "hostname": "sg514.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 407, + "hostname": "ch407.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "203.27.106.163" + "185.7.34.176" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 515, - "hostname": "sg515.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 408, + "hostname": "ch408.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.27.106.171" + "185.7.34.160" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 515, - "hostname": "sg515.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 408, + "hostname": "ch408.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "203.27.106.171" + "185.7.34.160" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 516, - "hostname": "sg516.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 409, + "hostname": "ch409.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "203.27.106.179" + "185.7.34.144" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 516, - "hostname": "sg516.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 409, + "hostname": "ch409.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "203.27.106.179" + "185.7.34.144" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 517, - "hostname": "sg517.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 413, + "hostname": "ch413.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.17" + "149.102.238.118" ] }, { - "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 517, - "hostname": "sg517.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 414, + "hostname": "ch414.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "149.34.253.17" + "149.102.238.120" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 518, - "hostname": "sg518.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 415, + "hostname": "ch415.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.12" + "149.102.238.113" ] }, { - "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 518, - "hostname": "sg518.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 416, + "hostname": "ch416.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "149.34.253.12" + "149.102.238.115" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 519, - "hostname": "sg519.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 417, + "hostname": "ch417.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.7" + "185.7.34.96" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 519, - "hostname": "sg519.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 417, + "hostname": "ch417.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "149.34.253.7" + "185.7.34.96" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 520, - "hostname": "sg520.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 418, + "hostname": "ch418.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.2" + "185.7.34.112" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 520, - "hostname": "sg520.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 418, + "hostname": "ch418.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "149.34.253.2" + "185.7.34.112" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 521, - "hostname": "sg521.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 419, + "hostname": "ch419.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.136" + "185.7.34.128" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 521, - "hostname": "sg521.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 419, + "hostname": "ch419.nordvpn.com", + "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", "ips": [ - "84.17.39.136" + "185.7.34.128" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 522, - "hostname": "sg522.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 420, + "hostname": "ch420.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.22" + "138.199.6.151" ] }, { - "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 522, - "hostname": "sg522.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 421, + "hostname": "ch421.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "149.34.253.22" + "138.199.6.153" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 523, - "hostname": "sg523.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 422, + "hostname": "ch422.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.25" + "149.88.27.66" ] }, { - "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 523, - "hostname": "sg523.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 423, + "hostname": "ch423.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "149.34.253.25" + "149.88.27.68" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 524, - "hostname": "sg524.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 424, + "hostname": "ch424.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.39.250" + "149.88.27.98" ] }, { - "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 524, - "hostname": "sg524.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 425, + "hostname": "ch425.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "84.17.39.250" + "149.88.27.100" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 525, - "hostname": "sg525.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 426, + "hostname": "ch426.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.194" + "149.88.27.103" ] }, { - "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 525, - "hostname": "sg525.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 427, + "hostname": "ch427.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "149.34.253.194" + "149.88.27.105" ] }, { "vpn": "openvpn", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 526, - "hostname": "sg526.nordvpn.com", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 428, + "hostname": "ch428.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.197" + "149.88.27.111" ] }, { - "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 526, - "hostname": "sg526.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "vpn": "openvpn", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 430, + "hostname": "ch430.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "149.34.253.197" + "149.88.27.116" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Switzerland", + "region": "Europe", + "city": "Zurich", + "categories": [ + "Dedicated IP" + ], + "number": 431, + "hostname": "ch431.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.27.118" + ] + }, + { + "vpn": "openvpn", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 527, - "hostname": "sg527.nordvpn.com", + "city": "Taipei", + "categories": [ + "Double VPN" + ], + "number": 3, + "hostname": "hk-tw3.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.200" + "84.17.37.79" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 527, - "hostname": "sg527.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Double VPN" + ], + "number": 3, + "hostname": "hk-tw3.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "149.34.253.200" + "84.17.37.79" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 528, - "hostname": "sg528.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "tw164.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.203" + "185.213.82.100" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 528, - "hostname": "sg528.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 164, + "hostname": "tw164.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "149.34.253.203" + "185.213.82.100" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 529, - "hostname": "sg529.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "tw165.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.206" + "185.213.82.102" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 529, - "hostname": "sg529.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 165, + "hostname": "tw165.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "149.34.253.206" + "185.213.82.102" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 530, - "hostname": "sg530.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "tw166.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "149.34.253.209" + "185.213.82.104" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 530, - "hostname": "sg530.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 166, + "hostname": "tw166.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "149.34.253.209" + "185.213.82.104" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 531, - "hostname": "sg531.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "tw167.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.100" + "185.213.82.106" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 531, - "hostname": "sg531.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 167, + "hostname": "tw167.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.100" + "185.213.82.106" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 532, - "hostname": "sg532.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "tw168.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.102" + "185.213.82.108" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 532, - "hostname": "sg532.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 168, + "hostname": "tw168.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.102" + "185.213.82.108" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 533, - "hostname": "sg533.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "tw169.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.104" + "185.213.82.110" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 533, - "hostname": "sg533.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 169, + "hostname": "tw169.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.104" + "185.213.82.110" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 534, - "hostname": "sg534.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "tw170.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.106" + "185.213.82.112" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 534, - "hostname": "sg534.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 170, + "hostname": "tw170.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.106" + "185.213.82.112" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 535, - "hostname": "sg535.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "tw172.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.108" + "185.213.82.116" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 535, - "hostname": "sg535.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 172, + "hostname": "tw172.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.108" + "185.213.82.116" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 536, - "hostname": "sg536.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "tw173.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.110" + "185.213.82.118" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 536, - "hostname": "sg536.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 173, + "hostname": "tw173.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.110" + "185.213.82.118" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 537, - "hostname": "sg537.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "tw174.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.112" + "185.213.82.120" ] }, { "vpn": "wireguard", - "country": "Singapore", - "region": "Asia Pacific", - "city": "Singapore", - "number": 537, - "hostname": "sg537.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "country": "Taiwan", + "region": "Asia Pacific", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 174, + "hostname": "tw174.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.112" + "185.213.82.120" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 538, - "hostname": "sg538.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "tw175.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.114" + "185.213.82.122" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 538, - "hostname": "sg538.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 175, + "hostname": "tw175.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.114" + "185.213.82.122" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 539, - "hostname": "sg539.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "tw176.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.116" + "185.213.82.124" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 539, - "hostname": "sg539.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 176, + "hostname": "tw176.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.116" + "185.213.82.124" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 540, - "hostname": "sg540.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "tw177.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.118" + "185.213.82.126" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 540, - "hostname": "sg540.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 177, + "hostname": "tw177.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.118" + "185.213.82.126" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 541, - "hostname": "sg541.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "tw178.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.120" + "185.213.82.128" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 541, - "hostname": "sg541.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 178, + "hostname": "tw178.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.120" + "185.213.82.128" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 542, - "hostname": "sg542.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "tw179.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.122" + "185.213.82.130" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 542, - "hostname": "sg542.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 179, + "hostname": "tw179.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.122" + "185.213.82.130" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 543, - "hostname": "sg543.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "tw180.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.124" + "185.213.82.132" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 543, - "hostname": "sg543.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 180, + "hostname": "tw180.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.124" + "185.213.82.132" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 544, - "hostname": "sg544.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "tw181.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.126" + "185.213.82.134" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 544, - "hostname": "sg544.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 181, + "hostname": "tw181.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.126" + "185.213.82.134" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 545, - "hostname": "sg545.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "tw182.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.128" + "185.213.82.136" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 545, - "hostname": "sg545.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 182, + "hostname": "tw182.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.128" + "185.213.82.136" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 546, - "hostname": "sg546.nordvpn.com", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "tw183.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.130" + "185.213.82.138" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Taiwan", "region": "Asia Pacific", - "city": "Singapore", - "number": 546, - "hostname": "sg546.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Taipei", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 183, + "hostname": "tw183.nordvpn.com", + "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", "ips": [ - "192.166.246.130" + "185.213.82.138" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 547, - "hostname": "sg547.nordvpn.com", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 14, + "hostname": "th14.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.132" + "122.155.174.64" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 547, - "hostname": "sg547.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 14, + "hostname": "th14.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "192.166.246.132" + "122.155.174.64" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 548, - "hostname": "sg548.nordvpn.com", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 15, + "hostname": "th15.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.134" + "122.155.174.66" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 548, - "hostname": "sg548.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 15, + "hostname": "th15.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "192.166.246.134" + "122.155.174.66" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 549, - "hostname": "sg549.nordvpn.com", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 16, + "hostname": "th16.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.136" + "122.155.174.68" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 549, - "hostname": "sg549.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 16, + "hostname": "th16.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "192.166.246.136" + "122.155.174.68" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 550, - "hostname": "sg550.nordvpn.com", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 17, + "hostname": "th17.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.138" + "122.155.174.70" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 550, - "hostname": "sg550.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 17, + "hostname": "th17.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "192.166.246.138" + "122.155.174.70" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 551, - "hostname": "sg551.nordvpn.com", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "th18.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.140" + "122.155.174.72" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 551, - "hostname": "sg551.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 18, + "hostname": "th18.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "192.166.246.140" + "122.155.174.72" ] }, { "vpn": "openvpn", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 552, - "hostname": "sg552.nordvpn.com", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "th19.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.166.246.142" + "122.155.174.96" ] }, { "vpn": "wireguard", - "country": "Singapore", + "country": "Thailand", "region": "Asia Pacific", - "city": "Singapore", - "number": 552, - "hostname": "sg552.nordvpn.com", - "wgpubkey": "U3dKnkOJY5P9p6kEbEDGR7+K2+4HmkKK1hTMugq2HQA=", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 19, + "hostname": "th19.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "192.166.246.142" + "122.155.174.96" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 40, - "hostname": "sk40.nordvpn.com", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "th20.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.85.75" + "122.155.174.99" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 40, - "hostname": "sk40.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 20, + "hostname": "th20.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "185.245.85.75" + "122.155.174.99" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 41, - "hostname": "sk41.nordvpn.com", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "th21.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.37.255.179" + "122.155.174.47" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 41, - "hostname": "sk41.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 21, + "hostname": "th21.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "193.37.255.179" + "122.155.174.47" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 42, - "hostname": "sk42.nordvpn.com", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "th22.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.37.255.187" + "122.155.174.102" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 42, - "hostname": "sk42.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 22, + "hostname": "th22.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "193.37.255.187" + "122.155.174.102" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 43, - "hostname": "sk43.nordvpn.com", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 23, + "hostname": "th23.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.85.171" + "122.155.174.105" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 43, - "hostname": "sk43.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 23, + "hostname": "th23.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "185.245.85.171" + "122.155.174.105" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 47, - "hostname": "sk47.nordvpn.com", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 24, + "hostname": "th24.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.37.255.235" + "27.131.134.20" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 47, - "hostname": "sk47.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 24, + "hostname": "th24.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "193.37.255.235" + "27.131.134.20" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 48, - "hostname": "sk48.nordvpn.com", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 25, + "hostname": "th25.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.85.179" + "27.131.134.67" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 48, - "hostname": "sk48.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 25, + "hostname": "th25.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "185.245.85.179" + "27.131.134.67" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 49, - "hostname": "sk49.nordvpn.com", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 26, + "hostname": "th26.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.221.147" + "27.131.170.99" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 49, - "hostname": "sk49.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 26, + "hostname": "th26.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "37.120.221.147" + "27.131.170.99" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 50, - "hostname": "sk50.nordvpn.com", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "th27.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.221.163" + "27.131.170.163" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 50, - "hostname": "sk50.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Thailand", + "region": "Asia Pacific", + "city": "Bangkok", + "categories": [ + "Standard VPN servers" + ], + "number": 27, + "hostname": "th27.nordvpn.com", + "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", "ips": [ - "37.120.221.163" + "27.131.170.163" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 51, - "hostname": "sk51.nordvpn.com", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "tt1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.221.187" + "82.149.78.1" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 51, - "hostname": "sk51.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "tt1.nordvpn.com", + "wgpubkey": "Jk19kGDgYoQ/64amD4flDDVKt1nqAGWAnxuhSQbdahI=", "ips": [ - "37.120.221.187" + "82.149.78.1" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 53, - "hostname": "sk53.nordvpn.com", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "tt2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.221.155" + "82.149.78.3" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 53, - "hostname": "sk53.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Trinidad and Tobago", + "region": "The Americas", + "city": "Port of Spain", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "tt2.nordvpn.com", + "wgpubkey": "Jk19kGDgYoQ/64amD4flDDVKt1nqAGWAnxuhSQbdahI=", "ips": [ - "37.120.221.155" + "82.149.78.3" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 55, - "hostname": "sk55.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "tr51.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.34.2" + "87.249.139.62" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 55, - "hostname": "sk55.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "tr51.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "138.199.34.2" + "87.249.139.62" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 56, - "hostname": "sk56.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "tr52.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.34.14" + "87.249.139.50" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 56, - "hostname": "sk56.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "tr52.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "138.199.34.14" + "87.249.139.50" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 57, - "hostname": "sk57.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "tr53.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.34.26" + "87.249.139.38" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 57, - "hostname": "sk57.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "tr53.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "138.199.34.26" + "87.249.139.38" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 58, - "hostname": "sk58.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "tr54.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.34.38" + "87.249.139.26" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 58, - "hostname": "sk58.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "tr54.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "138.199.34.38" + "87.249.139.26" ] }, { "vpn": "openvpn", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 59, - "hostname": "sk59.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "tr55.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.34.50" + "87.249.139.14" ] }, { "vpn": "wireguard", - "country": "Slovakia", - "region": "Europe", - "city": "Bratislava", - "number": 59, - "hostname": "sk59.nordvpn.com", - "wgpubkey": "o5Wv9LzIiVnyawZHRdd+9Qixaa/rVp9IP1agA4J4S10=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "tr55.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "138.199.34.50" + "87.249.139.14" ] }, { "vpn": "openvpn", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 15, - "hostname": "si15.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "tr57.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.249.170" + "87.249.139.2" ] }, { "vpn": "wireguard", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 15, - "hostname": "si15.nordvpn.com", - "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "tr57.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "195.158.249.170" + "87.249.139.2" ] }, { "vpn": "openvpn", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 16, - "hostname": "si16.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "tr58.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.249.172" + "87.249.139.74" ] }, { "vpn": "wireguard", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 16, - "hostname": "si16.nordvpn.com", - "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "tr58.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "195.158.249.172" + "87.249.139.74" ] }, { "vpn": "openvpn", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 17, - "hostname": "si17.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "tr59.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.249.174" + "87.249.139.86" ] }, { "vpn": "wireguard", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 17, - "hostname": "si17.nordvpn.com", - "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "tr59.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "195.158.249.174" + "87.249.139.86" ] }, { "vpn": "openvpn", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 18, - "hostname": "si18.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "tr60.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.249.176" + "87.249.139.98" ] }, { "vpn": "wireguard", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 18, - "hostname": "si18.nordvpn.com", - "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "tr60.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "195.158.249.176" + "87.249.139.98" ] }, { "vpn": "openvpn", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 19, - "hostname": "si19.nordvpn.com", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "tr61.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.158.249.178" + "87.249.139.110" ] }, { "vpn": "wireguard", - "country": "Slovenia", - "region": "Europe", - "city": "Ljubljana", - "number": 19, - "hostname": "si19.nordvpn.com", - "wgpubkey": "Q4l/vL7SqJzvzfpfLU/swr9J8kip+1qWNwaSbMGluw8=", + "country": "Turkey", + "region": "Africa, the Middle East and India", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "tr61.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "195.158.249.178" + "87.249.139.110" ] }, { "vpn": "openvpn", - "country": "South Africa", + "country": "Turkey", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 128, - "hostname": "za128.nordvpn.com", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "tr62.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.1" + "45.136.155.130" ] }, { "vpn": "wireguard", - "country": "South Africa", + "country": "Turkey", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 128, - "hostname": "za128.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "tr62.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "185.203.122.1" + "45.136.155.130" ] }, { "vpn": "openvpn", - "country": "South Africa", + "country": "Turkey", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 129, - "hostname": "za129.nordvpn.com", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "tr63.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.14" + "45.136.155.142" ] }, { "vpn": "wireguard", - "country": "South Africa", + "country": "Turkey", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 129, - "hostname": "za129.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "city": "Istanbul", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "tr63.nordvpn.com", + "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", "ips": [ - "185.203.122.14" + "45.136.155.142" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 130, - "hostname": "za130.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ua51.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.27" + "37.19.218.139" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 130, - "hostname": "za130.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 51, + "hostname": "ua51.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.27" + "37.19.218.139" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 131, - "hostname": "za131.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ua52.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.40" + "37.19.218.143" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 131, - "hostname": "za131.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 52, + "hostname": "ua52.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.40" + "37.19.218.143" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 132, - "hostname": "za132.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ua53.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.52" + "37.19.218.147" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 132, - "hostname": "za132.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 53, + "hostname": "ua53.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.52" + "37.19.218.147" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 133, - "hostname": "za133.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ua54.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.64" + "37.19.218.151" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 133, - "hostname": "za133.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ua54.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.64" + "37.19.218.151" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 134, - "hostname": "za134.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ua55.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.76" + "37.19.218.155" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 134, - "hostname": "za134.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ua55.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.76" + "37.19.218.155" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 135, - "hostname": "za135.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ua56.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.88" + "37.19.218.159" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 135, - "hostname": "za135.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ua56.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.88" + "37.19.218.159" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 136, - "hostname": "za136.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ua57.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.100" + "37.19.218.163" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 136, - "hostname": "za136.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ua57.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.100" + "37.19.218.163" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 137, - "hostname": "za137.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ua58.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.112" + "37.19.218.167" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 137, - "hostname": "za137.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ua58.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.112" + "37.19.218.167" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 138, - "hostname": "za138.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ua59.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.129" + "37.19.218.171" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 138, - "hostname": "za138.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ua59.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.129" + "37.19.218.171" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 139, - "hostname": "za139.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ua60.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.142" + "37.19.218.175" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 139, - "hostname": "za139.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ua60.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.142" + "37.19.218.175" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 140, - "hostname": "za140.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ua61.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.155" + "143.244.46.172" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 140, - "hostname": "za140.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ua61.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.155" + "143.244.46.172" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 141, - "hostname": "za141.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "ua62.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.168" + "143.244.46.166" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 141, - "hostname": "za141.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 62, + "hostname": "ua62.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.168" + "143.244.46.166" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 142, - "hostname": "za142.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "ua63.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.180" + "143.244.46.161" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 142, - "hostname": "za142.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 63, + "hostname": "ua63.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.180" + "143.244.46.161" ] }, { "vpn": "openvpn", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 143, - "hostname": "za143.nordvpn.com", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ua64.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.192" + "37.19.218.180" ] }, { "vpn": "wireguard", - "country": "South Africa", - "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 143, - "hostname": "za143.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "country": "Ukraine", + "region": "Europe", + "city": "Kyiv", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 64, + "hostname": "ua64.nordvpn.com", + "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", "ips": [ - "185.203.122.192" + "37.19.218.180" ] }, { "vpn": "openvpn", - "country": "South Africa", + "country": "United Arab Emirates", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 144, - "hostname": "za144.nordvpn.com", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ae54.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.204" + "146.70.238.3" ] }, { "vpn": "wireguard", - "country": "South Africa", + "country": "United Arab Emirates", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 144, - "hostname": "za144.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 54, + "hostname": "ae54.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", "ips": [ - "185.203.122.204" + "146.70.238.3" ] }, { "vpn": "openvpn", - "country": "South Africa", + "country": "United Arab Emirates", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 145, - "hostname": "za145.nordvpn.com", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ae55.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.216" + "146.70.238.19" ] }, { "vpn": "wireguard", - "country": "South Africa", + "country": "United Arab Emirates", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 145, - "hostname": "za145.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 55, + "hostname": "ae55.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", "ips": [ - "185.203.122.216" + "146.70.238.19" ] }, { "vpn": "openvpn", - "country": "South Africa", + "country": "United Arab Emirates", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 146, - "hostname": "za146.nordvpn.com", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ae56.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.228" + "146.70.238.35" ] }, { "vpn": "wireguard", - "country": "South Africa", + "country": "United Arab Emirates", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 146, - "hostname": "za146.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 56, + "hostname": "ae56.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", "ips": [ - "185.203.122.228" + "146.70.238.35" ] }, { "vpn": "openvpn", - "country": "South Africa", + "country": "United Arab Emirates", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 147, - "hostname": "za147.nordvpn.com", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ae57.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.122.240" + "146.70.238.51" ] }, { "vpn": "wireguard", - "country": "South Africa", + "country": "United Arab Emirates", "region": "Africa, the Middle East and India", - "city": "Johannesburg", - "number": 147, - "hostname": "za147.nordvpn.com", - "wgpubkey": "20QYJgKeUY0u3O/IOkq0D/2CZnIud5to9kwZwdxhHXA=", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 57, + "hostname": "ae57.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", "ips": [ - "185.203.122.240" + "146.70.238.51" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 31, - "hostname": "kr31.nordvpn.com", + "country": "United Arab Emirates", + "region": "Africa, the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ae58.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "210.217.18.72" + "146.70.238.147" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 31, - "hostname": "kr31.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Arab Emirates", + "region": "Africa, the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 58, + "hostname": "ae58.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", "ips": [ - "210.217.18.72" + "146.70.238.147" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 32, - "hostname": "kr32.nordvpn.com", + "country": "United Arab Emirates", + "region": "Africa, the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ae59.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "210.217.18.66" + "146.70.238.163" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 32, - "hostname": "kr32.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Arab Emirates", + "region": "Africa, the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 59, + "hostname": "ae59.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", "ips": [ - "210.217.18.66" + "146.70.238.163" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 34, - "hostname": "kr34.nordvpn.com", + "country": "United Arab Emirates", + "region": "Africa, the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ae60.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "211.197.11.5" + "146.70.238.179" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 34, - "hostname": "kr34.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Arab Emirates", + "region": "Africa, the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 60, + "hostname": "ae60.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", "ips": [ - "211.197.11.5" + "146.70.238.179" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 35, - "hostname": "kr35.nordvpn.com", + "country": "United Arab Emirates", + "region": "Africa, the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ae61.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "211.197.11.10" + "146.70.155.35" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 35, - "hostname": "kr35.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Arab Emirates", + "region": "Africa, the Middle East and India", + "city": "Dubai", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 61, + "hostname": "ae61.nordvpn.com", + "wgpubkey": "8YHJW3c2We+C3+Ym7NPVPa3rzuZgx825okEa7+fzHSE=", "ips": [ - "211.197.11.10" + "146.70.155.35" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 36, - "hostname": "kr36.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2432, + "hostname": "uk2432.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.107.194.187" + "188.212.154.38" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 36, - "hostname": "kr36.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2432, + "hostname": "uk2432.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "172.107.194.187" + "188.212.154.38" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 37, - "hostname": "kr37.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2433, + "hostname": "uk2433.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.107.194.147" + "188.212.154.51" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 37, - "hostname": "kr37.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2433, + "hostname": "uk2433.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "172.107.194.147" + "188.212.154.51" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 38, - "hostname": "kr38.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2434, + "hostname": "uk2434.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.107.194.155" + "188.212.154.64" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 38, - "hostname": "kr38.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2434, + "hostname": "uk2434.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "172.107.194.155" + "188.212.154.64" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 39, - "hostname": "kr39.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2435, + "hostname": "uk2435.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.107.194.163" + "188.212.154.77" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 39, - "hostname": "kr39.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2435, + "hostname": "uk2435.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "172.107.194.163" + "188.212.154.77" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 40, - "hostname": "kr40.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2436, + "hostname": "uk2436.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.107.194.171" + "188.212.154.90" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 40, - "hostname": "kr40.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2436, + "hostname": "uk2436.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "172.107.194.171" + "188.212.154.90" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 42, - "hostname": "kr42.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2437, + "hostname": "uk2437.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "211.197.11.14" + "188.212.154.103" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 42, - "hostname": "kr42.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2437, + "hostname": "uk2437.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "211.197.11.14" + "188.212.154.103" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 43, - "hostname": "kr43.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2438, + "hostname": "uk2438.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "210.217.18.75" + "188.212.154.116" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 43, - "hostname": "kr43.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2438, + "hostname": "uk2438.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "210.217.18.75" + "188.212.154.116" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 44, - "hostname": "kr44.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2440, + "hostname": "uk2440.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.107.248.227" + "188.212.154.142" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 44, - "hostname": "kr44.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2440, + "hostname": "uk2440.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "172.107.248.227" + "188.212.154.142" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 45, - "hostname": "kr45.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2441, + "hostname": "uk2441.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.107.248.187" - ] - }, - { - "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 45, - "hostname": "kr45.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "188.212.154.155" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2441, + "hostname": "uk2441.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "172.107.248.187" + "188.212.154.155" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 46, - "hostname": "kr46.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2442, + "hostname": "uk2442.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "39.115.246.44" + "188.212.154.168" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 46, - "hostname": "kr46.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2442, + "hostname": "uk2442.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "39.115.246.44" + "188.212.154.168" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 47, - "hostname": "kr47.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2443, + "hostname": "uk2443.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "39.115.246.49" + "188.212.154.181" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 47, - "hostname": "kr47.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2443, + "hostname": "uk2443.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "39.115.246.49" + "188.212.154.181" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 48, - "hostname": "kr48.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2444, + "hostname": "uk2444.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "39.115.246.54" + "188.212.154.194" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 48, - "hostname": "kr48.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2444, + "hostname": "uk2444.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "39.115.246.54" + "188.212.154.194" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 49, - "hostname": "kr49.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2445, + "hostname": "uk2445.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "39.115.246.59" + "188.212.154.207" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 49, - "hostname": "kr49.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2445, + "hostname": "uk2445.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "39.115.246.59" + "188.212.154.207" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 50, - "hostname": "kr50.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2446, + "hostname": "uk2446.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.35.182.83" + "188.212.154.220" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 50, - "hostname": "kr50.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2446, + "hostname": "uk2446.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "45.35.182.83" + "188.212.154.220" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 51, - "hostname": "kr51.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2447, + "hostname": "uk2447.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.35.182.51" + "188.212.154.233" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 51, - "hostname": "kr51.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2447, + "hostname": "uk2447.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "45.35.182.51" + "188.212.154.233" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 52, - "hostname": "kr52.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2448, + "hostname": "uk2448.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.35.182.67" + "188.212.154.246" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 52, - "hostname": "kr52.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2448, + "hostname": "uk2448.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "45.35.182.67" + "188.212.154.246" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 53, - "hostname": "kr53.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2449, + "hostname": "uk2449.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.35.182.35" + "188.240.56.6" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 53, - "hostname": "kr53.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2449, + "hostname": "uk2449.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "45.35.182.35" + "188.240.56.6" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 54, - "hostname": "kr54.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2450, + "hostname": "uk2450.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.35.182.211" + "188.240.56.19" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 54, - "hostname": "kr54.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2450, + "hostname": "uk2450.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "45.35.182.211" + "188.240.56.19" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 55, - "hostname": "kr55.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2451, + "hostname": "uk2451.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "39.115.246.104" + "188.240.56.32" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 55, - "hostname": "kr55.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2451, + "hostname": "uk2451.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "39.115.246.104" + "188.240.56.32" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 56, - "hostname": "kr56.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2452, + "hostname": "uk2452.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "39.115.246.99" + "188.240.56.45" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 56, - "hostname": "kr56.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2452, + "hostname": "uk2452.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "39.115.246.99" + "188.240.56.45" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 57, - "hostname": "kr57.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2453, + "hostname": "uk2453.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.0" + "188.240.56.58" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 57, - "hostname": "kr57.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2453, + "hostname": "uk2453.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.0" + "188.240.56.58" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 58, - "hostname": "kr58.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2454, + "hostname": "uk2454.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.26" + "188.240.56.71" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 58, - "hostname": "kr58.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2454, + "hostname": "uk2454.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.26" + "188.240.56.71" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 67, - "hostname": "kr67.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2455, + "hostname": "uk2455.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.32" + "188.240.56.84" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 67, - "hostname": "kr67.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2455, + "hostname": "uk2455.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.32" + "188.240.56.84" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 68, - "hostname": "kr68.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2456, + "hostname": "uk2456.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.48" + "188.240.56.97" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 68, - "hostname": "kr68.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2456, + "hostname": "uk2456.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.48" + "188.240.56.97" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 69, - "hostname": "kr69.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2457, + "hostname": "uk2457.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.64" + "188.240.56.110" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 69, - "hostname": "kr69.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2457, + "hostname": "uk2457.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.64" + "188.240.56.110" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 70, - "hostname": "kr70.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2458, + "hostname": "uk2458.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.80" + "188.240.56.123" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 70, - "hostname": "kr70.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2458, + "hostname": "uk2458.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.80" + "188.240.56.123" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 71, - "hostname": "kr71.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2459, + "hostname": "uk2459.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.96" + "188.240.56.136" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 71, - "hostname": "kr71.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2459, + "hostname": "uk2459.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.96" + "188.240.56.136" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 72, - "hostname": "kr72.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2460, + "hostname": "uk2460.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.112" + "188.240.56.149" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 72, - "hostname": "kr72.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2460, + "hostname": "uk2460.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.112" + "188.240.56.149" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 73, - "hostname": "kr73.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2461, + "hostname": "uk2461.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.128" + "188.240.56.162" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 73, - "hostname": "kr73.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2461, + "hostname": "uk2461.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.128" + "188.240.56.162" ] }, { "vpn": "openvpn", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 74, - "hostname": "kr74.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2462, + "hostname": "uk2462.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "160.238.37.144" + "188.240.56.175" ] }, { "vpn": "wireguard", - "country": "South Korea", - "region": "Asia Pacific", - "city": "Seoul", - "number": 74, - "hostname": "kr74.nordvpn.com", - "wgpubkey": "oHda+iKdBpSlsKzaxz8kiJ1SxXvD9YxzgxOtsNdLjUg=", + "country": "United Kingdom", + "region": "Europe", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2462, + "hostname": "uk2462.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "160.238.37.144" + "188.240.56.175" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 114, - "hostname": "es114.nordvpn.com", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2463, + "hostname": "uk2463.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.199.243" + "188.240.56.188" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 114, - "hostname": "es114.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2463, + "hostname": "uk2463.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "37.120.199.243" + "188.240.56.188" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 131, - "hostname": "es131.nordvpn.com", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2464, + "hostname": "uk2464.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.48.75" + "188.240.56.201" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 131, - "hostname": "es131.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2464, + "hostname": "uk2464.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "212.102.48.75" + "188.240.56.201" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 132, - "hostname": "es132.nordvpn.com", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2465, + "hostname": "uk2465.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.48.72" + "188.240.56.214" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 132, - "hostname": "es132.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2465, + "hostname": "uk2465.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "212.102.48.72" + "188.240.56.214" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 133, - "hostname": "es133.nordvpn.com", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2466, + "hostname": "uk2466.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.48.69" + "188.240.56.227" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 133, - "hostname": "es133.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2466, + "hostname": "uk2466.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "212.102.48.69" + "188.240.56.227" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 134, - "hostname": "es134.nordvpn.com", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2467, + "hostname": "uk2467.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.48.66" + "188.240.56.241" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 134, - "hostname": "es134.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2467, + "hostname": "uk2467.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "212.102.48.66" + "188.240.56.241" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 135, - "hostname": "es135.nordvpn.com", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2468, + "hostname": "uk2468.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.183.115" + "188.212.154.130" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 135, - "hostname": "es135.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Edinburgh", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2468, + "hostname": "uk2468.nordvpn.com", + "wgpubkey": "4e5JI3fA1RkKmsYfNsYyYw/RaK1DohsO26H2HwNUsR8=", "ips": [ - "45.152.183.115" + "188.212.154.130" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 136, - "hostname": "es136.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2470, + "hostname": "uk2470.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.188.99" + "188.241.157.38" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 136, - "hostname": "es136.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2470, + "hostname": "uk2470.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "31.13.188.99" + "188.241.157.38" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 137, - "hostname": "es137.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2471, + "hostname": "uk2471.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.218.179" + "188.241.157.40" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 137, - "hostname": "es137.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2471, + "hostname": "uk2471.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "217.138.218.179" + "188.241.157.40" ] }, { "vpn": "openvpn", - "country": "Spain", - "region": "Europe", - "city": "Madrid", - "number": 138, - "hostname": "es138.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2472, + "hostname": "uk2472.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.218.187" + "188.241.157.42" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 138, - "hostname": "es138.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2472, + "hostname": "uk2472.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "217.138.218.187" + "188.241.157.42" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 139, - "hostname": "es139.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2473, + "hostname": "uk2473.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.218.195" + "188.241.157.44" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 139, - "hostname": "es139.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2473, + "hostname": "uk2473.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "217.138.218.195" + "188.241.157.44" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 141, - "hostname": "es141.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2474, + "hostname": "uk2474.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.12.50.227" + "188.241.157.46" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 141, - "hostname": "es141.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2474, + "hostname": "uk2474.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "195.12.50.227" + "188.241.157.46" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 142, - "hostname": "es142.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2475, + "hostname": "uk2475.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.12.50.232" + "188.241.157.48" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 142, - "hostname": "es142.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2475, + "hostname": "uk2475.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "195.12.50.232" + "188.241.157.48" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 143, - "hostname": "es143.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2476, + "hostname": "uk2476.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.12.50.237" + "188.241.157.50" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 143, - "hostname": "es143.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2476, + "hostname": "uk2476.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "195.12.50.237" + "188.241.157.50" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 144, - "hostname": "es144.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2477, + "hostname": "uk2477.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.107.117" + "188.241.157.52" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 144, - "hostname": "es144.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2477, + "hostname": "uk2477.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "195.206.107.117" + "188.241.157.52" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 145, - "hostname": "es145.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2478, + "hostname": "uk2478.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.188.131" + "188.241.157.54" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 145, - "hostname": "es145.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2478, + "hostname": "uk2478.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "31.13.188.131" + "188.241.157.54" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 147, - "hostname": "es147.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2479, + "hostname": "uk2479.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.188.139" + "188.241.157.56" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 147, - "hostname": "es147.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2479, + "hostname": "uk2479.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "31.13.188.139" + "188.241.157.56" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 148, - "hostname": "es148.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2480, + "hostname": "uk2480.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.188.147" + "188.241.157.58" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 148, - "hostname": "es148.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2480, + "hostname": "uk2480.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "31.13.188.147" + "188.241.157.58" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 149, - "hostname": "es149.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2481, + "hostname": "uk2481.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.183.106.227" + "188.241.157.60" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 149, - "hostname": "es149.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2481, + "hostname": "uk2481.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "185.183.106.227" + "188.241.157.60" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 150, - "hostname": "es150.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2482, + "hostname": "uk2482.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.183.106.19" + "188.241.157.62" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 150, - "hostname": "es150.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2482, + "hostname": "uk2482.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "185.183.106.19" + "188.241.157.62" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 151, - "hostname": "es151.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2483, + "hostname": "uk2483.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.183.106.27" + "188.241.157.64" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 151, - "hostname": "es151.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2483, + "hostname": "uk2483.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "185.183.106.27" + "188.241.157.64" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 154, - "hostname": "es154.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2484, + "hostname": "uk2484.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.148.187" + "188.241.157.66" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 154, - "hostname": "es154.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2484, + "hostname": "uk2484.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "37.120.148.187" + "188.241.157.66" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 155, - "hostname": "es155.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2485, + "hostname": "uk2485.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.148.171" + "188.241.157.68" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 155, - "hostname": "es155.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2485, + "hostname": "uk2485.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "37.120.148.171" + "188.241.157.68" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 156, - "hostname": "es156.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2486, + "hostname": "uk2486.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.148.179" + "188.241.157.70" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 156, - "hostname": "es156.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2486, + "hostname": "uk2486.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "37.120.148.179" + "188.241.157.70" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 162, - "hostname": "es162.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2487, + "hostname": "uk2487.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.124.99" + "188.241.157.72" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 162, - "hostname": "es162.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2487, + "hostname": "uk2487.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "192.145.124.99" + "188.241.157.72" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 163, - "hostname": "es163.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2488, + "hostname": "uk2488.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.124.107" + "188.241.157.74" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 163, - "hostname": "es163.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2488, + "hostname": "uk2488.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "192.145.124.107" + "188.241.157.74" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 164, - "hostname": "es164.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2489, + "hostname": "uk2489.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.124.123" + "188.241.157.76" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 164, - "hostname": "es164.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2489, + "hostname": "uk2489.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "192.145.124.123" + "188.241.157.76" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 169, - "hostname": "es169.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2490, + "hostname": "uk2490.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.199.251" + "188.241.157.78" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 169, - "hostname": "es169.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2490, + "hostname": "uk2490.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "37.120.199.251" + "188.241.157.78" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 170, - "hostname": "es170.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2491, + "hostname": "uk2491.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.188.27" + "188.241.157.80" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 170, - "hostname": "es170.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2491, + "hostname": "uk2491.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "31.13.188.27" + "188.241.157.80" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 171, - "hostname": "es171.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2492, + "hostname": "uk2492.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.188.107" + "188.241.157.82" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 171, - "hostname": "es171.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2492, + "hostname": "uk2492.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "31.13.188.107" + "188.241.157.82" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 172, - "hostname": "es172.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2493, + "hostname": "uk2493.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.188.155" + "188.241.157.84" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 172, - "hostname": "es172.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2493, + "hostname": "uk2493.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "31.13.188.155" + "188.241.157.84" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 173, - "hostname": "es173.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2494, + "hostname": "uk2494.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.183.11" + "188.241.157.86" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 173, - "hostname": "es173.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2494, + "hostname": "uk2494.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "45.152.183.11" + "188.241.157.86" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 174, - "hostname": "es174.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2495, + "hostname": "uk2495.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.183.3" + "188.241.157.88" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 174, - "hostname": "es174.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2495, + "hostname": "uk2495.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "45.152.183.3" + "188.241.157.88" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 175, - "hostname": "es175.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2496, + "hostname": "uk2496.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.199.235" + "188.241.157.90" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 175, - "hostname": "es175.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2496, + "hostname": "uk2496.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "37.120.199.235" + "188.241.157.90" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 176, - "hostname": "es176.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2497, + "hostname": "uk2497.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.199.203" + "188.241.157.92" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 176, - "hostname": "es176.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2497, + "hostname": "uk2497.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "37.120.199.203" + "188.241.157.92" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 177, - "hostname": "es177.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2498, + "hostname": "uk2498.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.199.195" + "188.241.157.94" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 177, - "hostname": "es177.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2498, + "hostname": "uk2498.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "37.120.199.195" + "188.241.157.94" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 179, - "hostname": "es179.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2499, + "hostname": "uk2499.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.183.171" + "188.241.157.96" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 179, - "hostname": "es179.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2499, + "hostname": "uk2499.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "45.152.183.171" + "188.241.157.96" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 180, - "hostname": "es180.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2500, + "hostname": "uk2500.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.183.179" + "188.241.157.98" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 180, - "hostname": "es180.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2500, + "hostname": "uk2500.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "45.152.183.179" + "188.241.157.98" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 181, - "hostname": "es181.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2501, + "hostname": "uk2501.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.183.187" + "188.241.157.100" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 181, - "hostname": "es181.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2501, + "hostname": "uk2501.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "45.152.183.187" + "188.241.157.100" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 182, - "hostname": "es182.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2502, + "hostname": "uk2502.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.183.195" + "188.241.157.102" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 182, - "hostname": "es182.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2502, + "hostname": "uk2502.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "45.152.183.195" + "188.241.157.102" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 183, - "hostname": "es183.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2503, + "hostname": "uk2503.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.183.203" + "188.241.157.104" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 183, - "hostname": "es183.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2503, + "hostname": "uk2503.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "45.152.183.203" + "188.241.157.104" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 188, - "hostname": "es188.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2504, + "hostname": "uk2504.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.93.182.251" + "188.241.157.106" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 188, - "hostname": "es188.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2504, + "hostname": "uk2504.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "185.93.182.251" + "188.241.157.106" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 189, - "hostname": "es189.nordvpn.com", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2505, + "hostname": "uk2505.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.178.211" + "188.241.157.108" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 189, - "hostname": "es189.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "Glasgow", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2505, + "hostname": "uk2505.nordvpn.com", + "wgpubkey": "TZTNL4BRsTTCQYigUjLvfy6Vgx5lFxGGtSrM7RvWkEc=", "ips": [ - "89.238.178.211" + "188.241.157.108" ] }, { "vpn": "openvpn", - "country": "Spain", - "region": "Europe", - "city": "Madrid", - "number": 190, - "hostname": "es190.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "fr-uk10.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.1" + "138.199.47.180" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 190, - "hostname": "es190.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "fr-uk10.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.1" + "138.199.47.180" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 191, - "hostname": "es191.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-uk10.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.3" + "213.232.87.141" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 191, - "hostname": "es191.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 10, + "hostname": "nl-uk10.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.3" + "213.232.87.141" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 192, - "hostname": "es192.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "fr-uk11.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.5" + "138.199.47.181" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 192, - "hostname": "es192.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "fr-uk11.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.5" + "138.199.47.181" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 193, - "hostname": "es193.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-uk11.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.7" + "213.232.87.142" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 193, - "hostname": "es193.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 11, + "hostname": "nl-uk11.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.7" + "213.232.87.142" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 194, - "hostname": "es194.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-uk12.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.9" + "213.232.87.49" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 194, - "hostname": "es194.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 12, + "hostname": "nl-uk12.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.9" + "213.232.87.49" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 195, - "hostname": "es195.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-uk13.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.11" + "213.232.87.50" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 195, - "hostname": "es195.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 13, + "hostname": "nl-uk13.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.11" + "213.232.87.50" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 196, - "hostname": "es196.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "fr-uk16.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.13" + "37.19.217.39" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 196, - "hostname": "es196.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 16, + "hostname": "fr-uk16.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.13" + "37.19.217.39" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 197, - "hostname": "es197.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "fr-uk17.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.15" + "37.19.217.40" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 197, - "hostname": "es197.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 17, + "hostname": "fr-uk17.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.15" + "37.19.217.40" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 198, - "hostname": "es198.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 20, + "hostname": "fr-uk20.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.17" + "139.28.219.107" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 198, - "hostname": "es198.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 20, + "hostname": "fr-uk20.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.17" + "139.28.219.107" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 199, - "hostname": "es199.nordvpn.com", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 21, + "hostname": "fr-uk21.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.19" + "139.28.219.108" ] }, { "vpn": "wireguard", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 199, - "hostname": "es199.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Double VPN" + ], + "number": 21, + "hostname": "fr-uk21.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.199.100.19" + "139.28.219.108" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 200, - "hostname": "es200.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 765, + "hostname": "uk765.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.21" - ] - }, - { - "vpn": "wireguard", - "country": "Spain", - "region": "Europe", - "city": "Madrid", - "number": 200, - "hostname": "es200.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", - "ips": [ - "185.199.100.21" + "89.35.28.131" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 201, - "hostname": "es201.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 766, + "hostname": "uk766.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.23" + "89.35.28.132" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 201, - "hostname": "es201.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 812, + "hostname": "uk812.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.199.100.23" + "77.81.191.3" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 202, - "hostname": "es202.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 813, + "hostname": "uk813.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.25" + "89.34.98.195" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 202, - "hostname": "es202.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 814, + "hostname": "uk814.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.199.100.25" + "185.121.139.100" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 203, - "hostname": "es203.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 870, + "hostname": "uk870.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.27" + "77.81.191.4" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 203, - "hostname": "es203.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 871, + "hostname": "uk871.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.199.100.27" + "89.34.99.131" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 204, - "hostname": "es204.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 873, + "hostname": "uk873.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.29" + "195.206.180.3" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 204, - "hostname": "es204.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 874, + "hostname": "uk874.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.199.100.29" + "195.206.180.4" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 205, - "hostname": "es205.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 875, + "hostname": "uk875.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.31" + "195.206.180.131" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 205, - "hostname": "es205.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 876, + "hostname": "uk876.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.199.100.31" + "195.206.180.132" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 206, - "hostname": "es206.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 877, + "hostname": "uk877.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.33" + "81.19.217.3" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 206, - "hostname": "es206.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 878, + "hostname": "uk878.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.199.100.33" + "81.19.217.5" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 207, - "hostname": "es207.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 879, + "hostname": "uk879.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.199.100.35" + "81.19.223.3" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 207, - "hostname": "es207.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 880, + "hostname": "uk880.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.199.100.35" + "81.19.223.4" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 212, - "hostname": "es212.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 884, + "hostname": "uk884.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.22.99" + "178.239.169.3" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 212, - "hostname": "es212.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 885, + "hostname": "uk885.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "146.70.22.99" + "178.239.169.4" ] }, { "vpn": "openvpn", - "country": "Spain", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 213, - "hostname": "es213.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 886, + "hostname": "uk886.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.22.107" + "185.44.79.131" ] }, { - "vpn": "wireguard", - "country": "Spain", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Madrid", - "number": 213, - "hostname": "es213.nordvpn.com", - "wgpubkey": "IF1FGVSzrUznFVZ+dymIz+6bdlCgsuiT/d6cyapN8lw=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 887, + "hostname": "uk887.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "146.70.22.107" + "185.44.79.132" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 393, - "hostname": "se393.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 888, + "hostname": "uk888.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.163" + "185.16.205.3" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 393, - "hostname": "se393.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 889, + "hostname": "uk889.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.163" + "185.16.205.4" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 394, - "hostname": "se394.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 890, + "hostname": "uk890.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.171" + "185.16.205.131" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 394, - "hostname": "se394.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 891, + "hostname": "uk891.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.171" + "185.16.205.132" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 395, - "hostname": "se395.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 892, + "hostname": "uk892.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.179" + "195.206.170.3" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 395, - "hostname": "se395.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 893, + "hostname": "uk893.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.179" + "195.206.170.4" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 396, - "hostname": "se396.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 894, + "hostname": "uk894.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.187" + "195.206.170.131" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 396, - "hostname": "se396.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 895, + "hostname": "uk895.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.187" + "195.206.170.132" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 397, - "hostname": "se397.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 896, + "hostname": "uk896.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.195" + "178.239.164.3" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 397, - "hostname": "se397.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 897, + "hostname": "uk897.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.195" + "178.239.164.65" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 398, - "hostname": "se398.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 898, + "hostname": "uk898.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.203" + "178.239.164.131" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 398, - "hostname": "se398.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 899, + "hostname": "uk899.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.203" + "178.239.164.193" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 399, - "hostname": "se399.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1602, + "hostname": "uk1602.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.211" + "81.19.214.131" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 399, - "hostname": "se399.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1603, + "hostname": "uk1603.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.211" + "81.19.214.132" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 400, - "hostname": "se400.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1604, + "hostname": "uk1604.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.219" + "185.223.233.3" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 400, - "hostname": "se400.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1605, + "hostname": "uk1605.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.219" + "185.223.233.4" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 401, - "hostname": "se401.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1606, + "hostname": "uk1606.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.209.227" + "109.70.151.2" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 401, - "hostname": "se401.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1607, + "hostname": "uk1607.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.209.227" + "109.70.151.3" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 402, - "hostname": "se402.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1608, + "hostname": "uk1608.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.103.19" + "195.234.127.3" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 402, - "hostname": "se402.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1609, + "hostname": "uk1609.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "86.106.103.19" + "195.234.127.4" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 424, - "hostname": "se424.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1610, + "hostname": "uk1610.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.138.203" + "195.206.171.131" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 424, - "hostname": "se424.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1611, + "hostname": "uk1611.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.132.138.203" + "195.206.171.133" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 425, - "hostname": "se425.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1612, + "hostname": "uk1612.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.67" + "195.206.171.139" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 425, - "hostname": "se425.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1613, + "hostname": "uk1613.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.12.220.67" + "195.206.171.141" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 426, - "hostname": "se426.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1614, + "hostname": "uk1614.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.75" + "195.206.171.143" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 426, - "hostname": "se426.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1615, + "hostname": "uk1615.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.12.220.75" + "195.206.171.145" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 427, - "hostname": "se427.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1616, + "hostname": "uk1616.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.43" + "195.206.171.147" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 427, - "hostname": "se427.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1617, + "hostname": "uk1617.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.12.220.43" + "195.206.171.149" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 434, - "hostname": "se434.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1618, + "hostname": "uk1618.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.103.115" + "195.206.171.151" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 434, - "hostname": "se434.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1619, + "hostname": "uk1619.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "86.106.103.115" + "195.206.171.153" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 435, - "hostname": "se435.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1620, + "hostname": "uk1620.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.51" + "195.206.171.160" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 435, - "hostname": "se435.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1621, + "hostname": "uk1621.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.12.220.51" + "195.206.171.162" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 436, - "hostname": "se436.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1622, + "hostname": "uk1622.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.59" + "195.206.171.164" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 436, - "hostname": "se436.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1623, + "hostname": "uk1623.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.12.220.59" + "195.206.171.166" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 487, - "hostname": "se487.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1624, + "hostname": "uk1624.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.138.67" + "195.206.171.168" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 487, - "hostname": "se487.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1625, + "hostname": "uk1625.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.132.138.67" + "195.206.171.170" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 488, - "hostname": "se488.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1626, + "hostname": "uk1626.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.195" + "195.206.171.172" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 488, - "hostname": "se488.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1627, + "hostname": "uk1627.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.195" + "195.206.171.174" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 489, - "hostname": "se489.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1628, + "hostname": "uk1628.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.203" + "195.206.171.176" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 489, - "hostname": "se489.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1629, + "hostname": "uk1629.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.203" + "195.206.171.178" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 490, - "hostname": "se490.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1630, + "hostname": "uk1630.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.211" + "195.206.171.180" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 490, - "hostname": "se490.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1631, + "hostname": "uk1631.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.211" + "195.206.171.182" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 491, - "hostname": "se491.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1632, + "hostname": "uk1632.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.163" + "195.206.171.184" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 491, - "hostname": "se491.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1633, + "hostname": "uk1633.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.163" + "195.206.171.186" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 492, - "hostname": "se492.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1634, + "hostname": "uk1634.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.123" + "195.206.171.188" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 492, - "hostname": "se492.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1635, + "hostname": "uk1635.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.123" + "195.206.171.190" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 493, - "hostname": "se493.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1636, + "hostname": "uk1636.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.179" + "93.114.129.23" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 493, - "hostname": "se493.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1637, + "hostname": "uk1637.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.179" + "93.114.129.25" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 494, - "hostname": "se494.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1638, + "hostname": "uk1638.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.171" + "93.114.129.51" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 494, - "hostname": "se494.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1639, + "hostname": "uk1639.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.171" + "93.114.129.29" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 495, - "hostname": "se495.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1640, + "hostname": "uk1640.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.51" + "93.114.129.31" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 495, - "hostname": "se495.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1641, + "hostname": "uk1641.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.51" + "93.114.129.33" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 496, - "hostname": "se496.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1642, + "hostname": "uk1642.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.187" + "93.114.129.35" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 496, - "hostname": "se496.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1643, + "hostname": "uk1643.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.187" + "93.114.129.37" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 497, - "hostname": "se497.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1644, + "hostname": "uk1644.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.227" + "93.114.129.39" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 497, - "hostname": "se497.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1645, + "hostname": "uk1645.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.227" + "93.114.129.41" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 498, - "hostname": "se498.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1646, + "hostname": "uk1646.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.235" + "93.114.129.43" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 498, - "hostname": "se498.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1647, + "hostname": "uk1647.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.235" + "93.114.129.45" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 499, - "hostname": "se499.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1648, + "hostname": "uk1648.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.243" + "93.114.129.47" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 499, - "hostname": "se499.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1649, + "hostname": "uk1649.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.243" + "93.114.129.49" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 500, - "hostname": "se500.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1650, + "hostname": "uk1650.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.251" + "93.114.129.52" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 500, - "hostname": "se500.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1651, + "hostname": "uk1651.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.83.91.251" + "93.114.129.54" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 501, - "hostname": "se501.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1652, + "hostname": "uk1652.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.115" + "93.114.129.56" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 501, - "hostname": "se501.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1653, + "hostname": "uk1653.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.12.220.115" + "93.114.129.58" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 502, - "hostname": "se502.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1654, + "hostname": "uk1654.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.36.145" + "93.114.129.60" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 502, - "hostname": "se502.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1655, + "hostname": "uk1655.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "84.17.36.145" + "93.114.129.62" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 503, - "hostname": "se503.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1656, + "hostname": "uk1656.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.36.130" + "93.114.129.87" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 503, - "hostname": "se503.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1656, + "hostname": "uk1656.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "84.17.36.130" + "93.114.129.87" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 504, - "hostname": "se504.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1657, + "hostname": "uk1657.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.36.150" - ] - }, - { - "vpn": "wireguard", - "country": "Sweden", - "region": "Europe", - "city": "Stockholm", - "number": 504, - "hostname": "se504.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", - "ips": [ - "84.17.36.150" + "93.114.129.89" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 505, - "hostname": "se505.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1658, + "hostname": "uk1658.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.36.140" + "93.114.129.91" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 505, - "hostname": "se505.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1659, + "hostname": "uk1659.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "84.17.36.140" + "93.114.129.93" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 506, - "hostname": "se506.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1660, + "hostname": "uk1660.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.36.135" + "93.114.129.95" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 506, - "hostname": "se506.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1661, + "hostname": "uk1661.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "84.17.36.135" + "93.114.129.97" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 507, - "hostname": "se507.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1662, + "hostname": "uk1662.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.36.155" + "93.114.129.99" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 507, - "hostname": "se507.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1663, + "hostname": "uk1663.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "84.17.36.155" + "93.114.129.101" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 508, - "hostname": "se508.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1664, + "hostname": "uk1664.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.163" + "93.114.129.103" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 508, - "hostname": "se508.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1665, + "hostname": "uk1665.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.12.220.163" + "93.114.129.105" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 509, - "hostname": "se509.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "uk1668.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.179" + "155.133.17.2" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 509, - "hostname": "se509.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1668, + "hostname": "uk1668.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.179" + "155.133.17.2" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 510, - "hostname": "se510.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "uk1669.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.171" + "155.133.17.4" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 510, - "hostname": "se510.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1669, + "hostname": "uk1669.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.171" + "155.133.17.4" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 511, - "hostname": "se511.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "uk1670.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.187" + "155.133.17.6" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 511, - "hostname": "se511.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1670, + "hostname": "uk1670.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.187" + "155.133.17.6" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 512, - "hostname": "se512.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "uk1671.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.195" + "155.133.17.8" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 512, - "hostname": "se512.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1671, + "hostname": "uk1671.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.195" + "155.133.17.8" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 513, - "hostname": "se513.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "uk1672.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.203" + "155.133.17.10" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 513, - "hostname": "se513.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1672, + "hostname": "uk1672.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.203" + "155.133.17.10" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 514, - "hostname": "se514.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "uk1673.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.219" + "155.133.17.12" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 514, - "hostname": "se514.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1673, + "hostname": "uk1673.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.219" + "155.133.17.12" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 515, - "hostname": "se515.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "uk1674.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.227" + "155.133.17.14" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 515, - "hostname": "se515.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1674, + "hostname": "uk1674.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.227" + "155.133.17.14" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 516, - "hostname": "se516.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "uk1675.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.235" + "155.133.17.16" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 516, - "hostname": "se516.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1675, + "hostname": "uk1675.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.235" + "155.133.17.16" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 517, - "hostname": "se517.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "uk1676.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.243" + "155.133.17.18" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 517, - "hostname": "se517.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1676, + "hostname": "uk1676.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.243" + "155.133.17.18" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 518, - "hostname": "se518.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "uk1677.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.251" + "155.133.17.20" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 518, - "hostname": "se518.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1677, + "hostname": "uk1677.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.251" + "155.133.17.20" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 519, - "hostname": "se519.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "uk1678.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.19" + "155.133.17.22" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 519, - "hostname": "se519.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1678, + "hostname": "uk1678.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.83.91.19" + "155.133.17.22" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 520, - "hostname": "se520.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "uk1679.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.91.27" + "155.133.17.24" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 520, - "hostname": "se520.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1679, + "hostname": "uk1679.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.83.91.27" + "155.133.17.24" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 521, - "hostname": "se521.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "uk1680.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.103.195" + "155.133.17.26" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 521, - "hostname": "se521.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1680, + "hostname": "uk1680.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "86.106.103.195" + "155.133.17.26" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 522, - "hostname": "se522.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "uk1681.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.103.235" + "155.133.17.28" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 522, - "hostname": "se522.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1681, + "hostname": "uk1681.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "86.106.103.235" + "155.133.17.28" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 523, - "hostname": "se523.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "uk1682.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.103.243" + "155.133.17.30" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 523, - "hostname": "se523.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1682, + "hostname": "uk1682.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "86.106.103.243" + "155.133.17.30" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 524, - "hostname": "se524.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "uk1683.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.106.103.251" + "155.133.17.32" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 524, - "hostname": "se524.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1683, + "hostname": "uk1683.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "86.106.103.251" + "155.133.17.32" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 525, - "hostname": "se525.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "uk1684.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.138.155" + "155.133.17.34" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 525, - "hostname": "se525.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1684, + "hostname": "uk1684.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "91.132.138.155" + "155.133.17.34" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 526, - "hostname": "se526.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "uk1685.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.12.220.211" + "155.133.17.36" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 526, - "hostname": "se526.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1685, + "hostname": "uk1685.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.12.220.211" + "155.133.17.36" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 527, - "hostname": "se527.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "uk1686.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.138.163" + "155.133.17.38" ] }, { - "vpn": "wireguard", - "country": "Sweden", - "region": "Europe", - "city": "Stockholm", - "number": 527, - "hostname": "se527.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1686, + "hostname": "uk1686.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "91.132.138.163" + "155.133.17.38" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 528, - "hostname": "se528.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "uk1687.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.138.179" + "155.133.17.40" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 528, - "hostname": "se528.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1687, + "hostname": "uk1687.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "91.132.138.179" + "155.133.17.40" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 529, - "hostname": "se529.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "uk1688.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.138.187" + "89.35.30.149" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 529, - "hostname": "se529.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1688, + "hostname": "uk1688.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "91.132.138.187" + "89.35.30.149" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 530, - "hostname": "se530.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1708, + "hostname": "uk1708.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.71.11" + "138.199.63.212" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 530, - "hostname": "se530.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1709, + "hostname": "uk1709.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.247.71.11" + "138.199.63.214" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 531, - "hostname": "se531.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1710, + "hostname": "uk1710.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.71.19" + "138.199.63.207" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 531, - "hostname": "se531.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1711, + "hostname": "uk1711.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.247.71.19" + "138.199.63.209" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 532, - "hostname": "se532.nordvpn.com", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1713, + "hostname": "uk1713.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.71.27" + "93.114.129.112" ] }, { - "vpn": "wireguard", - "country": "Sweden", + "vpn": "openvpn", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 532, - "hostname": "se532.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Dedicated IP" + ], + "number": 1714, + "hostname": "uk1714.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.247.71.27" + "93.114.129.114" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 533, - "hostname": "se533.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1784, + "hostname": "uk1784.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.71.35" + "81.92.202.11" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 533, - "hostname": "se533.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1784, + "hostname": "uk1784.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.247.71.35" + "81.92.202.11" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 534, - "hostname": "se534.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1785, + "hostname": "uk1785.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.71.43" + "194.35.233.75" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 534, - "hostname": "se534.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1785, + "hostname": "uk1785.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.247.71.43" + "194.35.233.75" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 535, - "hostname": "se535.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1789, + "hostname": "uk1789.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.71.51" + "194.35.233.202" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 535, - "hostname": "se535.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1789, + "hostname": "uk1789.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.247.71.51" + "194.35.233.202" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 536, - "hostname": "se536.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1790, + "hostname": "uk1790.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.71.59" + "194.35.233.205" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 536, - "hostname": "se536.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1790, + "hostname": "uk1790.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.247.71.59" + "194.35.233.205" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 537, - "hostname": "se537.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1791, + "hostname": "uk1791.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.71.67" + "194.35.233.208" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 537, - "hostname": "se537.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1791, + "hostname": "uk1791.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.247.71.67" + "194.35.233.208" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 542, - "hostname": "se542.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1792, + "hostname": "uk1792.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.1" + "194.35.233.211" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 542, - "hostname": "se542.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1792, + "hostname": "uk1792.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.1" + "194.35.233.211" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 543, - "hostname": "se543.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1806, + "hostname": "uk1806.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.3" + "193.9.113.134" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 543, - "hostname": "se543.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1806, + "hostname": "uk1806.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.3" + "193.9.113.134" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 544, - "hostname": "se544.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1807, + "hostname": "uk1807.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.5" + "194.35.233.214" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 544, - "hostname": "se544.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1807, + "hostname": "uk1807.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.5" + "194.35.233.214" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 545, - "hostname": "se545.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1808, + "hostname": "uk1808.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.7" + "194.35.233.217" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 545, - "hostname": "se545.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1808, + "hostname": "uk1808.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.7" + "194.35.233.217" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 546, - "hostname": "se546.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1809, + "hostname": "uk1809.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.9" + "194.35.233.220" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 546, - "hostname": "se546.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1809, + "hostname": "uk1809.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.9" + "194.35.233.220" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 547, - "hostname": "se547.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1810, + "hostname": "uk1810.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.11" + "194.35.233.223" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 547, - "hostname": "se547.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1810, + "hostname": "uk1810.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.11" + "194.35.233.223" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 548, - "hostname": "se548.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1811, + "hostname": "uk1811.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.13" + "194.35.233.226" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 548, - "hostname": "se548.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1811, + "hostname": "uk1811.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.13" + "194.35.233.226" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 549, - "hostname": "se549.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1812, + "hostname": "uk1812.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.15" + "194.35.233.229" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 549, - "hostname": "se549.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1812, + "hostname": "uk1812.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.15" + "194.35.233.229" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 550, - "hostname": "se550.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1813, + "hostname": "uk1813.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.17" + "194.35.233.232" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 550, - "hostname": "se550.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1813, + "hostname": "uk1813.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.17" + "194.35.233.232" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 551, - "hostname": "se551.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1814, + "hostname": "uk1814.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.19" + "194.35.233.235" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 551, - "hostname": "se551.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1814, + "hostname": "uk1814.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.19" + "194.35.233.235" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 552, - "hostname": "se552.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1815, + "hostname": "uk1815.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.21" + "194.35.233.238" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 552, - "hostname": "se552.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1815, + "hostname": "uk1815.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.21" + "194.35.233.238" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 553, - "hostname": "se553.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1816, + "hostname": "uk1816.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.23" + "194.35.233.241" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 553, - "hostname": "se553.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1816, + "hostname": "uk1816.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.23" + "194.35.233.241" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 554, - "hostname": "se554.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1821, + "hostname": "uk1821.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.25" + "194.35.233.244" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 554, - "hostname": "se554.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1821, + "hostname": "uk1821.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.25" + "194.35.233.244" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 555, - "hostname": "se555.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1822, + "hostname": "uk1822.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.27" + "194.35.233.247" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 555, - "hostname": "se555.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1822, + "hostname": "uk1822.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.27" + "194.35.233.247" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 556, - "hostname": "se556.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1823, + "hostname": "uk1823.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.29" + "194.35.233.250" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 556, - "hostname": "se556.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1823, + "hostname": "uk1823.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.29" + "194.35.233.250" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 557, - "hostname": "se557.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1824, + "hostname": "uk1824.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.31" + "194.35.233.253" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 557, - "hostname": "se557.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1824, + "hostname": "uk1824.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.31" + "194.35.233.253" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 558, - "hostname": "se558.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1825, + "hostname": "uk1825.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.33" + "185.169.255.3" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 558, - "hostname": "se558.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1825, + "hostname": "uk1825.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.33" + "185.169.255.3" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 559, - "hostname": "se559.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1826, + "hostname": "uk1826.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.35" + "185.169.255.6" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 559, - "hostname": "se559.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1826, + "hostname": "uk1826.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.35" + "185.169.255.6" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 560, - "hostname": "se560.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1827, + "hostname": "uk1827.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.37" + "185.169.255.9" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 560, - "hostname": "se560.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1827, + "hostname": "uk1827.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.37" + "185.169.255.9" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 561, - "hostname": "se561.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1828, + "hostname": "uk1828.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.39" + "185.169.255.12" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 561, - "hostname": "se561.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1828, + "hostname": "uk1828.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.39" + "185.169.255.12" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 562, - "hostname": "se562.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1829, + "hostname": "uk1829.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.41" + "185.169.255.15" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 562, - "hostname": "se562.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1829, + "hostname": "uk1829.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.41" + "185.169.255.15" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 563, - "hostname": "se563.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1830, + "hostname": "uk1830.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.43" + "185.169.255.18" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 563, - "hostname": "se563.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1830, + "hostname": "uk1830.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.43" + "185.169.255.18" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 564, - "hostname": "se564.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1835, + "hostname": "uk1835.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.45" + "185.59.221.248" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 564, - "hostname": "se564.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1835, + "hostname": "uk1835.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.45" + "185.59.221.248" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 565, - "hostname": "se565.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1836, + "hostname": "uk1836.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.47" + "185.59.221.245" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 565, - "hostname": "se565.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1836, + "hostname": "uk1836.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.47" + "185.59.221.245" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 566, - "hostname": "se566.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1837, + "hostname": "uk1837.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.49" + "185.59.221.242" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 566, - "hostname": "se566.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1837, + "hostname": "uk1837.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.49" + "185.59.221.242" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 567, - "hostname": "se567.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1838, + "hostname": "uk1838.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.51" + "185.169.255.21" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 567, - "hostname": "se567.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1838, + "hostname": "uk1838.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.51" + "185.169.255.21" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 568, - "hostname": "se568.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1839, + "hostname": "uk1839.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.219.140.53" + "185.169.255.24" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 568, - "hostname": "se568.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1839, + "hostname": "uk1839.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.219.140.53" + "185.169.255.24" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 569, - "hostname": "se569.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1840, + "hostname": "uk1840.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.11" + "185.169.255.27" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 569, - "hostname": "se569.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1840, + "hostname": "uk1840.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.11" + "185.169.255.27" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 570, - "hostname": "se570.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1841, + "hostname": "uk1841.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.19" + "185.169.255.30" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 570, - "hostname": "se570.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1841, + "hostname": "uk1841.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.19" + "185.169.255.30" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 571, - "hostname": "se571.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1842, + "hostname": "uk1842.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.27" + "185.169.255.33" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 571, - "hostname": "se571.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1842, + "hostname": "uk1842.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.27" + "185.169.255.33" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 572, - "hostname": "se572.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1843, + "hostname": "uk1843.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.35" + "185.169.255.36" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 572, - "hostname": "se572.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1843, + "hostname": "uk1843.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.35" + "185.169.255.36" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 573, - "hostname": "se573.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1844, + "hostname": "uk1844.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.43" + "185.169.255.39" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 573, - "hostname": "se573.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1844, + "hostname": "uk1844.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.43" + "185.169.255.39" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 574, - "hostname": "se574.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1845, + "hostname": "uk1845.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.51" + "185.169.255.42" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 574, - "hostname": "se574.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1845, + "hostname": "uk1845.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.51" + "185.169.255.42" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 575, - "hostname": "se575.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1846, + "hostname": "uk1846.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.59" + "185.169.255.45" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 575, - "hostname": "se575.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1846, + "hostname": "uk1846.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.59" + "185.169.255.45" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 576, - "hostname": "se576.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1847, + "hostname": "uk1847.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.67" + "185.169.255.48" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 576, - "hostname": "se576.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1847, + "hostname": "uk1847.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.67" + "185.169.255.48" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 581, - "hostname": "se581.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1848, + "hostname": "uk1848.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.115" + "194.36.110.181" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 581, - "hostname": "se581.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1848, + "hostname": "uk1848.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.115" + "194.36.110.181" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 582, - "hostname": "se582.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1849, + "hostname": "uk1849.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.191.131" + "194.36.110.197" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 582, - "hostname": "se582.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1849, + "hostname": "uk1849.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "31.13.191.131" + "194.36.110.197" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 583, - "hostname": "se583.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1850, + "hostname": "uk1850.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.191.139" + "194.36.110.229" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 583, - "hostname": "se583.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1850, + "hostname": "uk1850.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "31.13.191.139" + "194.36.110.229" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 584, - "hostname": "se584.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1851, + "hostname": "uk1851.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.191.147" + "194.36.110.245" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 584, - "hostname": "se584.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1851, + "hostname": "uk1851.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "31.13.191.147" + "194.36.110.245" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 585, - "hostname": "se585.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1866, + "hostname": "uk1866.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.191.155" + "81.92.203.57" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 585, - "hostname": "se585.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1866, + "hostname": "uk1866.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "31.13.191.155" + "81.92.203.57" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 586, - "hostname": "se586.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1867, + "hostname": "uk1867.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.21.107" + "81.92.202.15" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 586, - "hostname": "se586.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1867, + "hostname": "uk1867.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.21.107" + "81.92.202.15" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 588, - "hostname": "se588.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1873, + "hostname": "uk1873.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.240" + "89.238.176.213" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 588, - "hostname": "se588.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1873, + "hostname": "uk1873.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.240" + "89.238.176.213" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 589, - "hostname": "se589.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1877, + "hostname": "uk1877.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.96" + "89.238.191.212" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 589, - "hostname": "se589.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1877, + "hostname": "uk1877.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.96" + "89.238.191.212" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 590, - "hostname": "se590.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1878, + "hostname": "uk1878.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.112" + "185.253.98.101" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 590, - "hostname": "se590.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1878, + "hostname": "uk1878.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.112" + "185.253.98.101" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 591, - "hostname": "se591.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1879, + "hostname": "uk1879.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.128" + "185.253.98.106" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 591, - "hostname": "se591.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1879, + "hostname": "uk1879.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.128" + "185.253.98.106" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 592, - "hostname": "se592.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1882, + "hostname": "uk1882.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.144" + "81.92.202.25" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 592, - "hostname": "se592.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1882, + "hostname": "uk1882.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.144" + "81.92.202.25" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 593, - "hostname": "se593.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1883, + "hostname": "uk1883.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.160" + "81.92.203.101" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 593, - "hostname": "se593.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1883, + "hostname": "uk1883.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.160" + "81.92.203.101" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 594, - "hostname": "se594.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1884, + "hostname": "uk1884.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.176" + "81.92.203.106" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 594, - "hostname": "se594.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1884, + "hostname": "uk1884.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.176" + "81.92.203.106" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 595, - "hostname": "se595.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1885, + "hostname": "uk1885.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.192" + "81.92.203.111" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 595, - "hostname": "se595.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1885, + "hostname": "uk1885.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.192" + "81.92.203.111" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 596, - "hostname": "se596.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1886, + "hostname": "uk1886.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.208" + "81.92.203.116" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 596, - "hostname": "se596.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1886, + "hostname": "uk1886.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.208" + "81.92.203.116" ] }, { "vpn": "openvpn", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 597, - "hostname": "se597.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1887, + "hostname": "uk1887.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.77.224" + "81.92.203.121" ] }, { "vpn": "wireguard", - "country": "Sweden", + "country": "United Kingdom", "region": "Europe", - "city": "Stockholm", - "number": 597, - "hostname": "se597.nordvpn.com", - "wgpubkey": "EdKGlWFPgosHt/9vGBfcIv39umAsMrvbOxw9c3CZMw4=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1887, + "hostname": "uk1887.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.77.224" + "81.92.203.121" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 198, - "hostname": "ch198.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1889, + "hostname": "uk1889.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.131" + "93.177.74.170" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 198, - "hostname": "ch198.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1889, + "hostname": "uk1889.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.131" + "93.177.74.170" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 217, - "hostname": "ch217.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1890, + "hostname": "uk1890.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.156.175.132" + "93.177.74.165" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 217, - "hostname": "ch217.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1890, + "hostname": "uk1890.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.156.175.132" + "93.177.74.165" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 218, - "hostname": "ch218.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1891, + "hostname": "uk1891.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.39.112.20" + "93.177.74.179" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 218, - "hostname": "ch218.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1891, + "hostname": "uk1891.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "84.39.112.20" + "93.177.74.179" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 219, - "hostname": "ch219.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1893, + "hostname": "uk1893.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.9.18.84" + "37.120.133.67" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 219, - "hostname": "ch219.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1893, + "hostname": "uk1893.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.9.18.84" + "37.120.133.67" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 221, - "hostname": "ch221.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1894, + "hostname": "uk1894.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.136.235" + "37.120.133.72" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 221, - "hostname": "ch221.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1894, + "hostname": "uk1894.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "91.132.136.235" + "37.120.133.72" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 222, - "hostname": "ch222.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1895, + "hostname": "uk1895.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.156.175.115" + "37.120.133.83" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 222, - "hostname": "ch222.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1895, + "hostname": "uk1895.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.156.175.115" + "37.120.133.83" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 223, - "hostname": "ch223.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1896, + "hostname": "uk1896.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.156.175.123" + "37.120.133.85" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 223, - "hostname": "ch223.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1896, + "hostname": "uk1896.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.156.175.123" + "37.120.133.85" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 224, - "hostname": "ch224.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1897, + "hostname": "uk1897.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.9.18.163" + "37.120.133.90" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 224, - "hostname": "ch224.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1897, + "hostname": "uk1897.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.9.18.163" + "37.120.133.90" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 225, - "hostname": "ch225.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1898, + "hostname": "uk1898.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.36.150" + "94.229.73.187" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 225, - "hostname": "ch225.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1898, + "hostname": "uk1898.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "212.102.36.150" + "94.229.73.187" ] }, { "vpn": "openvpn", - "country": "Switzerland", - "region": "Europe", - "city": "Zurich", - "number": 226, - "hostname": "ch226.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1899, + "hostname": "uk1899.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.36.145" + "94.229.75.83" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 226, - "hostname": "ch226.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1899, + "hostname": "uk1899.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "212.102.36.145" + "94.229.75.83" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 227, - "hostname": "ch227.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1900, + "hostname": "uk1900.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.36.140" + "178.159.9.211" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 227, - "hostname": "ch227.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1900, + "hostname": "uk1900.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "212.102.36.140" + "178.159.9.211" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 228, - "hostname": "ch228.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1901, + "hostname": "uk1901.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.36.135" + "185.109.168.131" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 228, - "hostname": "ch228.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1901, + "hostname": "uk1901.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "212.102.36.135" + "185.109.168.131" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 229, - "hostname": "ch229.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1902, + "hostname": "uk1902.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.36.130" + "185.109.170.243" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 229, - "hostname": "ch229.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1902, + "hostname": "uk1902.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "212.102.36.130" + "185.109.170.243" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 243, - "hostname": "ch243.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1903, + "hostname": "uk1903.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.201.139" + "185.99.252.211" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 243, - "hostname": "ch243.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1903, + "hostname": "uk1903.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.236.201.139" + "185.99.252.211" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 252, - "hostname": "ch252.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1904, + "hostname": "uk1904.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.156.175.139" + "31.132.5.19" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 252, - "hostname": "ch252.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1904, + "hostname": "uk1904.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.156.175.139" + "31.132.5.19" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 286, - "hostname": "ch286.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1905, + "hostname": "uk1905.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.201.147" + "31.132.6.3" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 286, - "hostname": "ch286.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1905, + "hostname": "uk1905.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.236.201.147" + "31.132.6.3" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 293, - "hostname": "ch293.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1906, + "hostname": "uk1906.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.43" + "31.132.7.3" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 293, - "hostname": "ch293.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1906, + "hostname": "uk1906.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.43" + "31.132.7.3" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 294, - "hostname": "ch294.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1907, + "hostname": "uk1907.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.67" + "5.101.136.147" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 294, - "hostname": "ch294.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1907, + "hostname": "uk1907.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.67" + "5.101.136.147" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 295, - "hostname": "ch295.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1908, + "hostname": "uk1908.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.75" + "5.101.137.195" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 295, - "hostname": "ch295.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1908, + "hostname": "uk1908.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.75" + "5.101.137.195" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 296, - "hostname": "ch296.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1909, + "hostname": "uk1909.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.83" + "5.101.138.227" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 296, - "hostname": "ch296.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1909, + "hostname": "uk1909.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.83" + "5.101.138.227" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 297, - "hostname": "ch297.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1910, + "hostname": "uk1910.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.91" + "5.101.174.195" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 297, - "hostname": "ch297.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1910, + "hostname": "uk1910.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.91" + "5.101.174.195" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 298, - "hostname": "ch298.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1911, + "hostname": "uk1911.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.99" + "77.75.120.131" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 298, - "hostname": "ch298.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1911, + "hostname": "uk1911.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.99" + "77.75.120.131" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 299, - "hostname": "ch299.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1912, + "hostname": "uk1912.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.107" + "78.157.193.51" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 299, - "hostname": "ch299.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1912, + "hostname": "uk1912.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.107" + "78.157.193.51" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 300, - "hostname": "ch300.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1913, + "hostname": "uk1913.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.115" + "78.157.216.3" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 300, - "hostname": "ch300.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1913, + "hostname": "uk1913.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.115" + "78.157.216.3" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 301, - "hostname": "ch301.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1914, + "hostname": "uk1914.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.213.123" + "94.229.69.243" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 301, - "hostname": "ch301.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1914, + "hostname": "uk1914.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.213.123" + "94.229.69.243" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 319, - "hostname": "ch319.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1915, + "hostname": "uk1915.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.121" + "31.132.6.11" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 319, - "hostname": "ch319.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1915, + "hostname": "uk1915.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.121" + "31.132.6.11" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 320, - "hostname": "ch320.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1916, + "hostname": "uk1916.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.129" + "94.46.223.19" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 320, - "hostname": "ch320.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1916, + "hostname": "uk1916.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.129" + "94.46.223.19" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 321, - "hostname": "ch321.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1917, + "hostname": "uk1917.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.131" + "185.99.252.35" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 321, - "hostname": "ch321.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1917, + "hostname": "uk1917.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.131" + "185.99.252.35" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 322, - "hostname": "ch322.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1918, + "hostname": "uk1918.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.133" + "37.9.58.227" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 322, - "hostname": "ch322.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1918, + "hostname": "uk1918.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.133" + "37.9.58.227" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 323, - "hostname": "ch323.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1919, + "hostname": "uk1919.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.135" + "37.9.59.131" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 323, - "hostname": "ch323.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1919, + "hostname": "uk1919.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.135" + "37.9.59.131" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 324, - "hostname": "ch324.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1920, + "hostname": "uk1920.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.137" + "5.101.171.227" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 324, - "hostname": "ch324.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1920, + "hostname": "uk1920.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.137" + "5.101.171.227" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 325, - "hostname": "ch325.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1921, + "hostname": "uk1921.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.139" + "77.74.197.195" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 325, - "hostname": "ch325.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1921, + "hostname": "uk1921.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.139" + "77.74.197.195" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 326, - "hostname": "ch326.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1924, + "hostname": "uk1924.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.141" + "81.92.203.37" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 326, - "hostname": "ch326.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1924, + "hostname": "uk1924.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.141" + "81.92.203.37" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 327, - "hostname": "ch327.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1925, + "hostname": "uk1925.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.143" + "81.92.203.42" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 327, - "hostname": "ch327.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1925, + "hostname": "uk1925.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.143" + "81.92.203.42" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 328, - "hostname": "ch328.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1926, + "hostname": "uk1926.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.145" + "81.92.203.52" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 328, - "hostname": "ch328.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1926, + "hostname": "uk1926.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.145" + "81.92.203.52" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 329, - "hostname": "ch329.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1927, + "hostname": "uk1927.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.147" + "81.92.203.213" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 329, - "hostname": "ch329.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1927, + "hostname": "uk1927.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.147" + "81.92.203.213" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 330, - "hostname": "ch330.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1933, + "hostname": "uk1933.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.149" + "81.92.203.218" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 330, - "hostname": "ch330.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1933, + "hostname": "uk1933.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.149" + "81.92.203.218" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 331, - "hostname": "ch331.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1934, + "hostname": "uk1934.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.151" + "81.92.202.29" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 331, - "hostname": "ch331.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1934, + "hostname": "uk1934.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.151" + "81.92.202.29" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 332, - "hostname": "ch332.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1935, + "hostname": "uk1935.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.153" + "81.92.203.197" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 332, - "hostname": "ch332.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1935, + "hostname": "uk1935.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.153" + "81.92.203.197" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 333, - "hostname": "ch333.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1944, + "hostname": "uk1944.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.216.219.155" + "141.98.100.123" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 333, - "hostname": "ch333.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1944, + "hostname": "uk1944.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.216.219.155" + "141.98.100.123" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 334, - "hostname": "ch334.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1945, + "hostname": "uk1945.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.14" + "141.98.100.171" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 334, - "hostname": "ch334.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1945, + "hostname": "uk1945.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.14" + "141.98.100.171" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 335, - "hostname": "ch335.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1946, + "hostname": "uk1946.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.16" + "141.98.100.179" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 335, - "hostname": "ch335.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1946, + "hostname": "uk1946.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.16" + "141.98.100.179" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 336, - "hostname": "ch336.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1999, + "hostname": "uk1999.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.18" + "195.206.183.250" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 336, - "hostname": "ch336.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1999, + "hostname": "uk1999.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.18" + "195.206.183.250" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 337, - "hostname": "ch337.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2000, + "hostname": "uk2000.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.20" + "195.206.183.245" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 337, - "hostname": "ch337.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2000, + "hostname": "uk2000.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.20" + "195.206.183.245" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 338, - "hostname": "ch338.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2001, + "hostname": "uk2001.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.22" + "195.206.183.240" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 338, - "hostname": "ch338.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2001, + "hostname": "uk2001.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.22" + "195.206.183.240" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 339, - "hostname": "ch339.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2002, + "hostname": "uk2002.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.24" + "195.206.183.235" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 339, - "hostname": "ch339.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2002, + "hostname": "uk2002.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.24" + "195.206.183.235" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 340, - "hostname": "ch340.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2003, + "hostname": "uk2003.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.26" + "195.206.183.231" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 340, - "hostname": "ch340.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2003, + "hostname": "uk2003.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.26" + "195.206.183.231" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 341, - "hostname": "ch341.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2004, + "hostname": "uk2004.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.28" + "195.206.183.225" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 341, - "hostname": "ch341.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2004, + "hostname": "uk2004.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.28" + "195.206.183.225" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 342, - "hostname": "ch342.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2005, + "hostname": "uk2005.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.30" + "195.206.183.220" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 342, - "hostname": "ch342.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2005, + "hostname": "uk2005.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.30" + "195.206.183.220" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 343, - "hostname": "ch343.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2006, + "hostname": "uk2006.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.32" + "195.206.183.215" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 343, - "hostname": "ch343.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2006, + "hostname": "uk2006.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.32" + "195.206.183.215" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 344, - "hostname": "ch344.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2007, + "hostname": "uk2007.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.34" + "195.206.183.211" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 344, - "hostname": "ch344.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2007, + "hostname": "uk2007.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.34" + "195.206.183.211" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 345, - "hostname": "ch345.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2008, + "hostname": "uk2008.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.36" + "195.206.183.206" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 345, - "hostname": "ch345.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2008, + "hostname": "uk2008.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.36" + "195.206.183.206" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 346, - "hostname": "ch346.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2009, + "hostname": "uk2009.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.142" + "195.206.183.201" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 346, - "hostname": "ch346.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2009, + "hostname": "uk2009.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.142" + "195.206.183.201" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 347, - "hostname": "ch347.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2010, + "hostname": "uk2010.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.151" + "195.206.183.196" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 347, - "hostname": "ch347.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2010, + "hostname": "uk2010.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.151" + "195.206.183.196" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 348, - "hostname": "ch348.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2011, + "hostname": "uk2011.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.161" + "195.206.183.186" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 348, - "hostname": "ch348.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2011, + "hostname": "uk2011.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.161" + "195.206.183.186" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 349, - "hostname": "ch349.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2012, + "hostname": "uk2012.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.171" + "195.206.183.181" ] }, { "vpn": "wireguard", - "country": "Switzerland", - "region": "Europe", - "city": "Zurich", - "number": 349, - "hostname": "ch349.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2012, + "hostname": "uk2012.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.171" + "195.206.183.181" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 350, - "hostname": "ch350.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2013, + "hostname": "uk2013.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.181" + "195.206.183.176" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 350, - "hostname": "ch350.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2013, + "hostname": "uk2013.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.181" + "195.206.183.176" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 351, - "hostname": "ch351.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2014, + "hostname": "uk2014.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.190" + "195.206.183.171" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 351, - "hostname": "ch351.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2014, + "hostname": "uk2014.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.190" + "195.206.183.171" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 352, - "hostname": "ch352.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2015, + "hostname": "uk2015.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.199" + "195.206.183.166" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 352, - "hostname": "ch352.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2015, + "hostname": "uk2015.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.199" + "195.206.183.166" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 353, - "hostname": "ch353.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2016, + "hostname": "uk2016.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.208" + "195.206.183.161" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 353, - "hostname": "ch353.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2016, + "hostname": "uk2016.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.208" + "195.206.183.161" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 354, - "hostname": "ch354.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2017, + "hostname": "uk2017.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.226" + "195.206.183.156" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 354, - "hostname": "ch354.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2017, + "hostname": "uk2017.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.226" + "195.206.183.156" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 355, - "hostname": "ch355.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2018, + "hostname": "uk2018.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.235" + "195.206.183.146" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 355, - "hostname": "ch355.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2018, + "hostname": "uk2018.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.235" + "195.206.183.146" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 356, - "hostname": "ch356.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2019, + "hostname": "uk2019.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.245" + "195.206.183.141" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 356, - "hostname": "ch356.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2019, + "hostname": "uk2019.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.245" + "195.206.183.141" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 357, - "hostname": "ch357.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2020, + "hostname": "uk2020.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.165.217" + "195.206.183.136" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 357, - "hostname": "ch357.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2020, + "hostname": "uk2020.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.165.217" + "195.206.183.136" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 358, - "hostname": "ch358.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2021, + "hostname": "uk2021.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.203.219" + "195.206.183.131" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 358, - "hostname": "ch358.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2021, + "hostname": "uk2021.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "217.138.203.219" + "195.206.183.131" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 359, - "hostname": "ch359.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2022, + "hostname": "uk2022.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.9.18.171" + "195.206.183.126" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 359, - "hostname": "ch359.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2022, + "hostname": "uk2022.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.9.18.171" + "195.206.183.126" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 360, - "hostname": "ch360.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2023, + "hostname": "uk2023.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.26.75" + "195.206.183.121" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 360, - "hostname": "ch360.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2023, + "hostname": "uk2023.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.26.75" + "195.206.183.121" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 361, - "hostname": "ch361.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2024, + "hostname": "uk2024.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.26.83" + "195.206.183.111" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 361, - "hostname": "ch361.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2024, + "hostname": "uk2024.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.26.83" + "195.206.183.111" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 362, - "hostname": "ch362.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2025, + "hostname": "uk2025.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.26.91" + "195.206.183.106" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 362, - "hostname": "ch362.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2025, + "hostname": "uk2025.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.26.91" + "195.206.183.106" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 363, - "hostname": "ch363.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2026, + "hostname": "uk2026.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.105.115" + "195.206.183.101" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 363, - "hostname": "ch363.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2026, + "hostname": "uk2026.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.105.115" + "195.206.183.101" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 364, - "hostname": "ch364.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2027, + "hostname": "uk2027.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.105.123" + "195.206.183.96" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 364, - "hostname": "ch364.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2027, + "hostname": "uk2027.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.105.123" + "195.206.183.96" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 365, - "hostname": "ch365.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2028, + "hostname": "uk2028.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.212.170.195" + "195.206.183.91" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 365, - "hostname": "ch365.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2028, + "hostname": "uk2028.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.212.170.195" + "195.206.183.91" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 366, - "hostname": "ch366.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2029, + "hostname": "uk2029.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.71.35" + "195.206.183.86" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 366, - "hostname": "ch366.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2029, + "hostname": "uk2029.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.71.35" + "195.206.183.86" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 367, - "hostname": "ch367.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2030, + "hostname": "uk2030.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.71.43" + "195.206.183.81" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 367, - "hostname": "ch367.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2030, + "hostname": "uk2030.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.71.43" + "195.206.183.81" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 368, - "hostname": "ch368.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2031, + "hostname": "uk2031.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.71.51" + "195.206.183.76" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 368, - "hostname": "ch368.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2031, + "hostname": "uk2031.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.71.51" + "195.206.183.76" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 369, - "hostname": "ch369.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2032, + "hostname": "uk2032.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.71.59" + "195.206.183.71" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 369, - "hostname": "ch369.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2032, + "hostname": "uk2032.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.71.59" + "195.206.183.71" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 370, - "hostname": "ch370.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2033, + "hostname": "uk2033.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.26.43" + "195.206.183.66" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 370, - "hostname": "ch370.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2033, + "hostname": "uk2033.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.26.43" + "195.206.183.66" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 371, - "hostname": "ch371.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2034, + "hostname": "uk2034.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.26.51" + "195.206.183.61" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 371, - "hostname": "ch371.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2034, + "hostname": "uk2034.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.26.51" + "195.206.183.61" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 372, - "hostname": "ch372.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2035, + "hostname": "uk2035.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.26.59" + "195.206.183.56" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 372, - "hostname": "ch372.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2035, + "hostname": "uk2035.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.26.59" + "195.206.183.56" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 373, - "hostname": "ch373.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2036, + "hostname": "uk2036.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.26.67" + "109.70.144.26" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 373, - "hostname": "ch373.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2036, + "hostname": "uk2036.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "146.70.26.67" + "109.70.144.26" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 374, - "hostname": "ch374.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2037, + "hostname": "uk2037.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.142" + "109.70.144.21" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 374, - "hostname": "ch374.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2037, + "hostname": "uk2037.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.142" + "109.70.144.21" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 375, - "hostname": "ch375.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2038, + "hostname": "uk2038.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.152" + "109.70.144.154" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 375, - "hostname": "ch375.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2038, + "hostname": "uk2038.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.152" + "109.70.144.154" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 376, - "hostname": "ch376.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2039, + "hostname": "uk2039.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.162" + "109.70.144.149" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 376, - "hostname": "ch376.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2039, + "hostname": "uk2039.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.162" + "109.70.144.149" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 377, - "hostname": "ch377.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2040, + "hostname": "uk2040.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.172" + "185.16.207.58" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 377, - "hostname": "ch377.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2040, + "hostname": "uk2040.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.172" + "185.16.207.58" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 378, - "hostname": "ch378.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2041, + "hostname": "uk2041.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.182" + "185.16.207.53" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 378, - "hostname": "ch378.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2041, + "hostname": "uk2041.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.182" + "185.16.207.53" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 379, - "hostname": "ch379.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2042, + "hostname": "uk2042.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.192" + "185.16.207.48" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 379, - "hostname": "ch379.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2042, + "hostname": "uk2042.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.192" + "185.16.207.48" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 380, - "hostname": "ch380.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2043, + "hostname": "uk2043.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.201" + "195.206.183.51" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 380, - "hostname": "ch380.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2043, + "hostname": "uk2043.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.201" + "195.206.183.51" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 381, - "hostname": "ch381.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2044, + "hostname": "uk2044.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.210" + "195.140.215.186" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 381, - "hostname": "ch381.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2044, + "hostname": "uk2044.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.210" + "195.140.215.186" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 382, - "hostname": "ch382.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2045, + "hostname": "uk2045.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.219" + "195.140.215.176" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 382, - "hostname": "ch382.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2045, + "hostname": "uk2045.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.219" + "195.140.215.176" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 383, - "hostname": "ch383.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2046, + "hostname": "uk2046.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.228" + "195.140.215.171" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 383, - "hostname": "ch383.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2046, + "hostname": "uk2046.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.228" + "195.140.215.171" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 384, - "hostname": "ch384.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2047, + "hostname": "uk2047.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.237" + "195.140.215.167" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 384, - "hostname": "ch384.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2047, + "hostname": "uk2047.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.237" + "195.140.215.167" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 385, - "hostname": "ch385.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2048, + "hostname": "uk2048.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.37.173.246" + "178.239.160.202" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 385, - "hostname": "ch385.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2048, + "hostname": "uk2048.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.37.173.246" + "178.239.160.202" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 386, - "hostname": "ch386.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2049, + "hostname": "uk2049.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.148.245" + "178.239.160.197" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 386, - "hostname": "ch386.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2049, + "hostname": "uk2049.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "82.180.148.245" + "178.239.160.197" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 387, - "hostname": "ch387.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2050, + "hostname": "uk2050.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.148.247" + "178.239.161.218" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 387, - "hostname": "ch387.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2050, + "hostname": "uk2050.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "82.180.148.247" + "178.239.161.218" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 388, - "hostname": "ch388.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2051, + "hostname": "uk2051.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.148.249" + "178.239.161.213" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 388, - "hostname": "ch388.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2051, + "hostname": "uk2051.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "82.180.148.249" + "178.239.161.213" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 389, - "hostname": "ch389.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2052, + "hostname": "uk2052.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "82.180.148.251" + "185.16.207.39" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 389, - "hostname": "ch389.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2052, + "hostname": "uk2052.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "82.180.148.251" + "185.16.207.39" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 400, - "hostname": "ch400.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2053, + "hostname": "uk2053.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.69.230" + "81.92.203.202" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 400, - "hostname": "ch400.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2053, + "hostname": "uk2053.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.69.230" + "81.92.203.202" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 401, - "hostname": "ch401.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2054, + "hostname": "uk2054.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.69.214" + "194.36.110.101" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 401, - "hostname": "ch401.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2054, + "hostname": "uk2054.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.69.214" + "194.36.110.101" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 402, - "hostname": "ch402.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2065, + "hostname": "uk2065.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "79.142.69.198" + "81.92.202.20" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 402, - "hostname": "ch402.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2065, + "hostname": "uk2065.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "79.142.69.198" + "81.92.202.20" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 403, - "hostname": "ch403.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2066, + "hostname": "uk2066.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.7.34.240" + "194.36.110.213" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 403, - "hostname": "ch403.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2066, + "hostname": "uk2066.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.7.34.240" + "194.36.110.213" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 404, - "hostname": "ch404.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2067, + "hostname": "uk2067.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.7.34.224" + "81.92.200.117" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 404, - "hostname": "ch404.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2067, + "hostname": "uk2067.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.7.34.224" + "81.92.200.117" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 405, - "hostname": "ch405.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2069, + "hostname": "uk2069.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.7.34.208" + "195.206.183.191" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 405, - "hostname": "ch405.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2069, + "hostname": "uk2069.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.7.34.208" + "195.206.183.191" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 406, - "hostname": "ch406.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2070, + "hostname": "uk2070.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.7.34.192" + "195.206.183.151" ] }, { "vpn": "wireguard", - "country": "Switzerland", - "region": "Europe", - "city": "Zurich", - "number": 406, - "hostname": "ch406.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2070, + "hostname": "uk2070.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.7.34.192" + "195.206.183.151" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 407, - "hostname": "ch407.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2071, + "hostname": "uk2071.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.7.34.176" + "195.206.183.116" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 407, - "hostname": "ch407.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2071, + "hostname": "uk2071.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.7.34.176" + "195.206.183.116" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 408, - "hostname": "ch408.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2072, + "hostname": "uk2072.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.7.34.160" + "185.16.207.43" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 408, - "hostname": "ch408.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2072, + "hostname": "uk2072.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.7.34.160" + "185.16.207.43" ] }, { "vpn": "openvpn", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 409, - "hostname": "ch409.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2073, + "hostname": "uk2073.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.7.34.144" + "195.206.183.46" ] }, { "vpn": "wireguard", - "country": "Switzerland", + "country": "United Kingdom", "region": "Europe", - "city": "Zurich", - "number": 409, - "hostname": "ch409.nordvpn.com", - "wgpubkey": "SqAWBSVdnUJ859Bz2Nyt82rlSebMwPgvwQxIb1DzyF8=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2073, + "hostname": "uk2073.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.7.34.144" + "195.206.183.46" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 164, - "hostname": "tw164.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2074, + "hostname": "uk2074.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.100" + "195.140.215.181" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 164, - "hostname": "tw164.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2074, + "hostname": "uk2074.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.100" + "195.140.215.181" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 165, - "hostname": "tw165.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2075, + "hostname": "uk2075.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.102" + "194.35.233.3" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 165, - "hostname": "tw165.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2075, + "hostname": "uk2075.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.102" + "194.35.233.3" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 166, - "hostname": "tw166.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2076, + "hostname": "uk2076.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.104" + "194.35.233.6" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 166, - "hostname": "tw166.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2076, + "hostname": "uk2076.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.104" + "194.35.233.6" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 167, - "hostname": "tw167.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2077, + "hostname": "uk2077.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.106" + "194.35.233.9" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 167, - "hostname": "tw167.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2077, + "hostname": "uk2077.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.106" + "194.35.233.9" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 168, - "hostname": "tw168.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2078, + "hostname": "uk2078.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.108" + "194.35.233.12" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 168, - "hostname": "tw168.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2078, + "hostname": "uk2078.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.108" + "194.35.233.12" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 169, - "hostname": "tw169.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2079, + "hostname": "uk2079.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.110" + "194.35.233.15" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 169, - "hostname": "tw169.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2079, + "hostname": "uk2079.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.110" + "194.35.233.15" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 170, - "hostname": "tw170.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2080, + "hostname": "uk2080.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.112" + "194.35.233.18" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 170, - "hostname": "tw170.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2080, + "hostname": "uk2080.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.112" + "194.35.233.18" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 172, - "hostname": "tw172.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2081, + "hostname": "uk2081.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.116" + "194.35.233.21" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 172, - "hostname": "tw172.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2081, + "hostname": "uk2081.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.116" + "194.35.233.21" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 173, - "hostname": "tw173.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2082, + "hostname": "uk2082.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.118" + "194.35.233.24" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 173, - "hostname": "tw173.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2082, + "hostname": "uk2082.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.118" + "194.35.233.24" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 174, - "hostname": "tw174.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2083, + "hostname": "uk2083.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.120" + "194.35.233.27" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 174, - "hostname": "tw174.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2083, + "hostname": "uk2083.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.120" + "194.35.233.27" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 175, - "hostname": "tw175.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2084, + "hostname": "uk2084.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.122" + "194.35.233.30" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 175, - "hostname": "tw175.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2084, + "hostname": "uk2084.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.122" + "194.35.233.30" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 176, - "hostname": "tw176.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2085, + "hostname": "uk2085.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.124" + "194.35.233.33" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 176, - "hostname": "tw176.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2085, + "hostname": "uk2085.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.124" + "194.35.233.33" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 177, - "hostname": "tw177.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2086, + "hostname": "uk2086.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.126" + "194.35.233.36" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 177, - "hostname": "tw177.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2086, + "hostname": "uk2086.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.126" + "194.35.233.36" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 178, - "hostname": "tw178.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2087, + "hostname": "uk2087.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.128" + "194.35.233.39" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 178, - "hostname": "tw178.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2087, + "hostname": "uk2087.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.128" + "194.35.233.39" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 179, - "hostname": "tw179.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2088, + "hostname": "uk2088.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.130" + "194.35.233.42" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 179, - "hostname": "tw179.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2088, + "hostname": "uk2088.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.130" + "194.35.233.42" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 180, - "hostname": "tw180.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2089, + "hostname": "uk2089.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.132" + "194.35.233.45" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 180, - "hostname": "tw180.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2089, + "hostname": "uk2089.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.132" + "194.35.233.45" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 181, - "hostname": "tw181.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2090, + "hostname": "uk2090.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.134" - ] - }, - { - "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 181, - "hostname": "tw181.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "194.35.233.48" + ] + }, + { + "vpn": "wireguard", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2090, + "hostname": "uk2090.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.134" + "194.35.233.48" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 182, - "hostname": "tw182.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2091, + "hostname": "uk2091.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.136" + "194.35.233.51" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 182, - "hostname": "tw182.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2091, + "hostname": "uk2091.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.136" + "194.35.233.51" ] }, { "vpn": "openvpn", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 183, - "hostname": "tw183.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2092, + "hostname": "uk2092.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.213.82.138" + "194.35.233.54" ] }, { "vpn": "wireguard", - "country": "Taiwan", - "region": "Asia Pacific", - "city": "Taipei", - "number": 183, - "hostname": "tw183.nordvpn.com", - "wgpubkey": "iW991L6XyB8LWqsmRDDazPv9abbgrKKtR3Y2SGhg/T0=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2092, + "hostname": "uk2092.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.213.82.138" + "194.35.233.54" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 14, - "hostname": "th14.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2093, + "hostname": "uk2093.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.64" + "194.35.233.57" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 14, - "hostname": "th14.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2093, + "hostname": "uk2093.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.64" + "194.35.233.57" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 15, - "hostname": "th15.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2094, + "hostname": "uk2094.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.66" + "194.35.233.60" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 15, - "hostname": "th15.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2094, + "hostname": "uk2094.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.66" + "194.35.233.60" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 16, - "hostname": "th16.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2095, + "hostname": "uk2095.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.68" + "194.35.233.63" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 16, - "hostname": "th16.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2095, + "hostname": "uk2095.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.68" + "194.35.233.63" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 17, - "hostname": "th17.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2096, + "hostname": "uk2096.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.70" + "194.35.233.66" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 17, - "hostname": "th17.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2096, + "hostname": "uk2096.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.70" + "194.35.233.66" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 18, - "hostname": "th18.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2097, + "hostname": "uk2097.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.72" + "194.35.233.69" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 18, - "hostname": "th18.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2097, + "hostname": "uk2097.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.72" + "194.35.233.69" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 19, - "hostname": "th19.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2098, + "hostname": "uk2098.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.96" + "194.35.233.72" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 19, - "hostname": "th19.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2098, + "hostname": "uk2098.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.96" + "194.35.233.72" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 20, - "hostname": "th20.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2102, + "hostname": "uk2102.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.99" + "89.34.98.110" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 20, - "hostname": "th20.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2102, + "hostname": "uk2102.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.99" + "89.34.98.110" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 21, - "hostname": "th21.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2103, + "hostname": "uk2103.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.47" + "89.34.98.106" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 21, - "hostname": "th21.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2103, + "hostname": "uk2103.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.47" + "89.34.98.106" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 22, - "hostname": "th22.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2104, + "hostname": "uk2104.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.102" + "89.34.98.102" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 22, - "hostname": "th22.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2104, + "hostname": "uk2104.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.102" + "89.34.98.102" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 23, - "hostname": "th23.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2105, + "hostname": "uk2105.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "122.155.174.105" + "89.34.98.98" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 23, - "hostname": "th23.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2105, + "hostname": "uk2105.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "122.155.174.105" + "89.34.98.98" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 24, - "hostname": "th24.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2106, + "hostname": "uk2106.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "27.131.134.20" + "89.34.98.94" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 24, - "hostname": "th24.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2106, + "hostname": "uk2106.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "27.131.134.20" + "89.34.98.94" ] }, { "vpn": "openvpn", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 25, - "hostname": "th25.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2107, + "hostname": "uk2107.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "27.131.134.67" + "89.34.98.90" ] }, { "vpn": "wireguard", - "country": "Thailand", - "region": "Asia Pacific", - "city": "Bangkok", - "number": 25, - "hostname": "th25.nordvpn.com", - "wgpubkey": "r7tcaBsLyZv0lLt22fkiKBVMX5q6dWx9jomjdhQnlR8=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2107, + "hostname": "uk2107.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "27.131.134.67" + "89.34.98.90" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 51, - "hostname": "tr51.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2108, + "hostname": "uk2108.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.62" + "89.34.98.86" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 51, - "hostname": "tr51.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2108, + "hostname": "uk2108.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.62" + "89.34.98.86" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 52, - "hostname": "tr52.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2109, + "hostname": "uk2109.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.50" + "89.34.98.82" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 52, - "hostname": "tr52.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2109, + "hostname": "uk2109.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.50" + "89.34.98.82" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 53, - "hostname": "tr53.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2110, + "hostname": "uk2110.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.38" + "89.34.98.78" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 53, - "hostname": "tr53.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2110, + "hostname": "uk2110.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.38" + "89.34.98.78" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 54, - "hostname": "tr54.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2111, + "hostname": "uk2111.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.26" + "194.35.233.104" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 54, - "hostname": "tr54.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2111, + "hostname": "uk2111.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.26" + "194.35.233.104" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 55, - "hostname": "tr55.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2112, + "hostname": "uk2112.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.14" + "194.35.233.107" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 55, - "hostname": "tr55.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2112, + "hostname": "uk2112.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.14" + "194.35.233.107" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 57, - "hostname": "tr57.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2113, + "hostname": "uk2113.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.2" + "194.35.233.110" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 57, - "hostname": "tr57.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2113, + "hostname": "uk2113.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.2" + "194.35.233.110" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 58, - "hostname": "tr58.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2114, + "hostname": "uk2114.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.74" + "194.35.233.113" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 58, - "hostname": "tr58.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2114, + "hostname": "uk2114.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.74" + "194.35.233.113" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 59, - "hostname": "tr59.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2115, + "hostname": "uk2115.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.86" + "194.35.233.116" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 59, - "hostname": "tr59.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2115, + "hostname": "uk2115.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.86" + "194.35.233.116" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 60, - "hostname": "tr60.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2116, + "hostname": "uk2116.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.98" + "194.35.233.119" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 60, - "hostname": "tr60.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2116, + "hostname": "uk2116.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.98" + "194.35.233.119" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 61, - "hostname": "tr61.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2117, + "hostname": "uk2117.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "87.249.139.110" + "194.35.233.122" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 61, - "hostname": "tr61.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2117, + "hostname": "uk2117.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "87.249.139.110" + "194.35.233.122" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 62, - "hostname": "tr62.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2118, + "hostname": "uk2118.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.136.155.130" + "194.35.233.125" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 62, - "hostname": "tr62.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2118, + "hostname": "uk2118.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.136.155.130" + "194.35.233.125" ] }, { "vpn": "openvpn", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 63, - "hostname": "tr63.nordvpn.com", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2119, + "hostname": "uk2119.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.136.155.142" + "194.35.233.128" ] }, { "vpn": "wireguard", - "country": "Turkey", - "region": "Africa, the Middle East and India", - "city": "Istanbul", - "number": 63, - "hostname": "tr63.nordvpn.com", - "wgpubkey": "mlY5bcC+NtXxHYpDSANkiQABeYwAAB4lMwgNhAbE4BI=", + "country": "United Kingdom", + "region": "Europe", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2119, + "hostname": "uk2119.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "45.136.155.142" + "194.35.233.128" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 51, - "hostname": "ua51.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2120, + "hostname": "uk2120.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.139" + "194.35.233.131" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 51, - "hostname": "ua51.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2120, + "hostname": "uk2120.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.139" + "194.35.233.131" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 52, - "hostname": "ua52.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2121, + "hostname": "uk2121.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.143" + "194.35.233.134" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 52, - "hostname": "ua52.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2121, + "hostname": "uk2121.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.143" + "194.35.233.134" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 53, - "hostname": "ua53.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2122, + "hostname": "uk2122.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.147" + "194.35.233.137" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 53, - "hostname": "ua53.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2122, + "hostname": "uk2122.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.147" + "194.35.233.137" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 54, - "hostname": "ua54.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2123, + "hostname": "uk2123.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.151" + "194.35.233.140" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 54, - "hostname": "ua54.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2123, + "hostname": "uk2123.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.151" + "194.35.233.140" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 55, - "hostname": "ua55.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2124, + "hostname": "uk2124.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.155" + "194.35.233.143" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 55, - "hostname": "ua55.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2124, + "hostname": "uk2124.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.155" + "194.35.233.143" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 56, - "hostname": "ua56.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2142, + "hostname": "uk2142.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.159" + "194.35.233.148" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 56, - "hostname": "ua56.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2142, + "hostname": "uk2142.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.159" + "194.35.233.148" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 57, - "hostname": "ua57.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2143, + "hostname": "uk2143.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.163" + "194.35.233.151" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 57, - "hostname": "ua57.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2143, + "hostname": "uk2143.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.163" + "194.35.233.151" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 58, - "hostname": "ua58.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2144, + "hostname": "uk2144.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.167" + "194.35.233.154" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 58, - "hostname": "ua58.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2144, + "hostname": "uk2144.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.167" + "194.35.233.154" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 59, - "hostname": "ua59.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2145, + "hostname": "uk2145.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.171" + "194.35.233.157" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 59, - "hostname": "ua59.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2145, + "hostname": "uk2145.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.171" + "194.35.233.157" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 60, - "hostname": "ua60.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2146, + "hostname": "uk2146.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.175" + "194.35.233.160" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 60, - "hostname": "ua60.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2146, + "hostname": "uk2146.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.175" + "194.35.233.160" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 61, - "hostname": "ua61.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2147, + "hostname": "uk2147.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.46.172" + "194.35.233.163" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 61, - "hostname": "ua61.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2147, + "hostname": "uk2147.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "143.244.46.172" + "194.35.233.163" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 62, - "hostname": "ua62.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2148, + "hostname": "uk2148.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.46.166" + "194.35.233.166" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 62, - "hostname": "ua62.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2148, + "hostname": "uk2148.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "143.244.46.166" + "194.35.233.166" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 63, - "hostname": "ua63.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2149, + "hostname": "uk2149.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.46.161" + "194.35.233.169" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 63, - "hostname": "ua63.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2149, + "hostname": "uk2149.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "143.244.46.161" + "194.35.233.169" ] }, { "vpn": "openvpn", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 64, - "hostname": "ua64.nordvpn.com", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2150, + "hostname": "uk2150.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.218.180" + "178.239.161.91" ] }, { "vpn": "wireguard", - "country": "Ukraine", + "country": "United Kingdom", "region": "Europe", - "city": "Kyiv", - "number": 64, - "hostname": "ua64.nordvpn.com", - "wgpubkey": "WcmFq6/1vuZR8/4fzHyrveWbE5ipydTjq0HGwFUMjUM=", + "city": "London", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2150, + "hostname": "uk2150.nordvpn.com", + "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.19.218.180" + "178.239.161.91" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2217, - "hostname": "uk2217.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2151, + "hostname": "uk2151.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.191.173" + "178.239.161.87" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2217, - "hostname": "uk2217.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2151, + "hostname": "uk2151.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.238.191.173" + "178.239.161.87" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2308, - "hostname": "uk2308.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2152, + "hostname": "uk2152.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.142" + "178.239.161.83" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2308, - "hostname": "uk2308.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2152, + "hostname": "uk2152.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.142" + "178.239.161.83" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2309, - "hostname": "uk2309.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2153, + "hostname": "uk2153.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.163" + "178.239.161.75" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2309, - "hostname": "uk2309.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2153, + "hostname": "uk2153.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.163" + "178.239.161.75" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2310, - "hostname": "uk2310.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2154, + "hostname": "uk2154.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.167" + "178.239.161.79" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2310, - "hostname": "uk2310.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2154, + "hostname": "uk2154.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.167" + "178.239.161.79" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2311, - "hostname": "uk2311.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2160, + "hostname": "uk2160.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.171" + "194.35.233.172" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2311, - "hostname": "uk2311.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2160, + "hostname": "uk2160.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.171" + "194.35.233.172" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2312, - "hostname": "uk2312.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2161, + "hostname": "uk2161.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.175" + "194.35.233.175" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2312, - "hostname": "uk2312.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2161, + "hostname": "uk2161.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.175" + "194.35.233.175" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2313, - "hostname": "uk2313.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2162, + "hostname": "uk2162.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.179" + "194.35.233.178" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2313, - "hostname": "uk2313.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2162, + "hostname": "uk2162.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.179" + "194.35.233.178" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2314, - "hostname": "uk2314.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2163, + "hostname": "uk2163.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.183" + "194.35.233.181" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2314, - "hostname": "uk2314.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2163, + "hostname": "uk2163.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.183" + "194.35.233.181" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2315, - "hostname": "uk2315.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2164, + "hostname": "uk2164.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.187" + "194.35.233.184" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2315, - "hostname": "uk2315.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2164, + "hostname": "uk2164.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.187" + "194.35.233.184" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2316, - "hostname": "uk2316.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2165, + "hostname": "uk2165.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.134" + "194.35.233.187" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2316, - "hostname": "uk2316.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2165, + "hostname": "uk2165.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.134" + "194.35.233.187" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2317, - "hostname": "uk2317.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2166, + "hostname": "uk2166.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.130" + "194.35.233.190" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2317, - "hostname": "uk2317.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2166, + "hostname": "uk2166.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.130" + "194.35.233.190" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2318, - "hostname": "uk2318.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2167, + "hostname": "uk2167.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.125" + "194.35.233.193" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2318, - "hostname": "uk2318.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2167, + "hostname": "uk2167.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.125" + "194.35.233.193" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2319, - "hostname": "uk2319.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2168, + "hostname": "uk2168.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.121" + "194.35.233.196" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2319, - "hostname": "uk2319.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2168, + "hostname": "uk2168.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.121" + "194.35.233.196" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2320, - "hostname": "uk2320.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2169, + "hostname": "uk2169.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.117" + "81.92.203.47" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2320, - "hostname": "uk2320.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2169, + "hostname": "uk2169.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.117" + "81.92.203.47" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2321, - "hostname": "uk2321.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2183, + "hostname": "uk2183.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.113" + "77.243.177.37" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2321, - "hostname": "uk2321.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2183, + "hostname": "uk2183.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.113" + "77.243.177.37" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2322, - "hostname": "uk2322.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2184, + "hostname": "uk2184.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.109" + "77.243.177.53" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2322, - "hostname": "uk2322.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2184, + "hostname": "uk2184.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.109" + "77.243.177.53" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2323, - "hostname": "uk2323.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2185, + "hostname": "uk2185.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.101" + "77.243.177.117" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2323, - "hostname": "uk2323.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2185, + "hostname": "uk2185.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.101" + "77.243.177.117" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2324, - "hostname": "uk2324.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2186, + "hostname": "uk2186.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.105" + "89.238.150.149" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2324, - "hostname": "uk2324.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2186, + "hostname": "uk2186.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.105" + "89.238.150.149" ] }, { "vpn": "openvpn", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2325, - "hostname": "uk2325.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2193, + "hostname": "uk2193.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.251" + "178.159.3.162" ] }, { "vpn": "wireguard", "country": "United Kingdom", + "region": "Europe", "city": "London", - "number": 2325, - "hostname": "uk2325.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2193, + "hostname": "uk2193.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.150.251" + "178.159.3.162" ] }, { @@ -124846,12 +173193,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1784, - "hostname": "uk1784.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2194, + "hostname": "uk2194.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.202.11" + "178.159.3.164" ] }, { @@ -124859,11 +173210,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1784, - "hostname": "uk1784.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2194, + "hostname": "uk2194.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.202.11" + "178.159.3.164" ] }, { @@ -124871,12 +173226,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1785, - "hostname": "uk1785.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2195, + "hostname": "uk2195.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.75" + "178.159.3.166" ] }, { @@ -124884,11 +173243,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1785, - "hostname": "uk1785.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2195, + "hostname": "uk2195.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.75" + "178.159.3.166" ] }, { @@ -124896,12 +173259,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1789, - "hostname": "uk1789.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2197, + "hostname": "uk2197.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.202" + "178.159.3.170" ] }, { @@ -124909,11 +173276,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1789, - "hostname": "uk1789.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2197, + "hostname": "uk2197.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.202" + "178.159.3.170" ] }, { @@ -124921,12 +173292,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1790, - "hostname": "uk1790.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2198, + "hostname": "uk2198.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.205" + "178.159.3.172" ] }, { @@ -124934,11 +173309,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1790, - "hostname": "uk1790.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2198, + "hostname": "uk2198.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.205" + "178.159.3.172" ] }, { @@ -124946,12 +173325,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1791, - "hostname": "uk1791.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2199, + "hostname": "uk2199.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.208" + "178.159.3.174" ] }, { @@ -124959,11 +173342,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1791, - "hostname": "uk1791.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2199, + "hostname": "uk2199.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.208" + "178.159.3.174" ] }, { @@ -124971,12 +173358,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1792, - "hostname": "uk1792.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2200, + "hostname": "uk2200.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.211" + "178.159.3.176" ] }, { @@ -124984,11 +173375,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1792, - "hostname": "uk1792.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2200, + "hostname": "uk2200.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.211" + "178.159.3.176" ] }, { @@ -124996,12 +173391,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1806, - "hostname": "uk1806.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2201, + "hostname": "uk2201.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.9.113.134" + "178.159.3.178" ] }, { @@ -125009,11 +173408,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1806, - "hostname": "uk1806.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2201, + "hostname": "uk2201.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "193.9.113.134" + "178.159.3.178" ] }, { @@ -125021,12 +173424,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1807, - "hostname": "uk1807.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2202, + "hostname": "uk2202.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.214" + "178.159.3.180" ] }, { @@ -125034,11 +173441,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1807, - "hostname": "uk1807.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2202, + "hostname": "uk2202.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.214" + "178.159.3.180" ] }, { @@ -125046,12 +173457,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1808, - "hostname": "uk1808.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2203, + "hostname": "uk2203.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.217" + "178.159.3.182" ] }, { @@ -125059,11 +173474,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1808, - "hostname": "uk1808.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2203, + "hostname": "uk2203.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.217" + "178.159.3.182" ] }, { @@ -125071,12 +173490,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1809, - "hostname": "uk1809.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2204, + "hostname": "uk2204.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.220" + "178.159.3.184" ] }, { @@ -125084,11 +173507,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1809, - "hostname": "uk1809.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2204, + "hostname": "uk2204.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.220" + "178.159.3.184" ] }, { @@ -125096,12 +173523,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1810, - "hostname": "uk1810.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2205, + "hostname": "uk2205.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.223" + "185.17.27.98" ] }, { @@ -125109,11 +173540,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1810, - "hostname": "uk1810.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2205, + "hostname": "uk2205.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.223" + "185.17.27.98" ] }, { @@ -125121,12 +173556,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1811, - "hostname": "uk1811.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2206, + "hostname": "uk2206.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.226" + "185.17.27.100" ] }, { @@ -125134,11 +173573,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1811, - "hostname": "uk1811.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2206, + "hostname": "uk2206.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.226" + "185.17.27.100" ] }, { @@ -125146,12 +173589,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1812, - "hostname": "uk1812.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2207, + "hostname": "uk2207.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.229" + "185.17.27.102" ] }, { @@ -125159,11 +173606,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1812, - "hostname": "uk1812.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2207, + "hostname": "uk2207.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.229" + "185.17.27.102" ] }, { @@ -125171,12 +173622,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1813, - "hostname": "uk1813.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2208, + "hostname": "uk2208.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.232" + "185.17.27.104" ] }, { @@ -125184,11 +173639,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1813, - "hostname": "uk1813.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2208, + "hostname": "uk2208.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.232" + "185.17.27.104" ] }, { @@ -125196,12 +173655,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1814, - "hostname": "uk1814.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2209, + "hostname": "uk2209.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.235" + "185.17.27.106" ] }, { @@ -125209,11 +173672,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1814, - "hostname": "uk1814.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2209, + "hostname": "uk2209.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.235" + "185.17.27.106" ] }, { @@ -125221,12 +173688,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1815, - "hostname": "uk1815.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2210, + "hostname": "uk2210.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.238" + "185.17.27.108" ] }, { @@ -125234,11 +173705,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1815, - "hostname": "uk1815.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2210, + "hostname": "uk2210.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.238" + "185.17.27.108" ] }, { @@ -125246,12 +173721,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1816, - "hostname": "uk1816.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2211, + "hostname": "uk2211.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.241" + "185.17.27.110" ] }, { @@ -125259,11 +173738,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1816, - "hostname": "uk1816.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2211, + "hostname": "uk2211.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.241" + "185.17.27.110" ] }, { @@ -125271,12 +173754,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1821, - "hostname": "uk1821.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2212, + "hostname": "uk2212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.244" + "185.17.27.112" ] }, { @@ -125284,11 +173771,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1821, - "hostname": "uk1821.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2212, + "hostname": "uk2212.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.244" + "185.17.27.112" ] }, { @@ -125296,12 +173787,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1822, - "hostname": "uk1822.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2213, + "hostname": "uk2213.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.247" + "185.17.27.114" ] }, { @@ -125309,11 +173804,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1822, - "hostname": "uk1822.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2213, + "hostname": "uk2213.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.247" + "185.17.27.114" ] }, { @@ -125321,12 +173820,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1823, - "hostname": "uk1823.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2214, + "hostname": "uk2214.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.250" + "185.17.27.116" ] }, { @@ -125334,11 +173837,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1823, - "hostname": "uk1823.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2214, + "hostname": "uk2214.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.250" + "185.17.27.116" ] }, { @@ -125346,12 +173853,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1824, - "hostname": "uk1824.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2216, + "hostname": "uk2216.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.253" + "185.17.27.120" ] }, { @@ -125359,11 +173870,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1824, - "hostname": "uk1824.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2216, + "hostname": "uk2216.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.253" + "185.17.27.120" ] }, { @@ -125371,12 +173886,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1825, - "hostname": "uk1825.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2218, + "hostname": "uk2218.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.3" + "178.239.162.251" ] }, { @@ -125384,11 +173903,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1825, - "hostname": "uk1825.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2218, + "hostname": "uk2218.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.3" + "178.239.162.251" ] }, { @@ -125396,12 +173919,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1826, - "hostname": "uk1826.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2219, + "hostname": "uk2219.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.6" + "178.239.162.247" ] }, { @@ -125409,11 +173936,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1826, - "hostname": "uk1826.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2219, + "hostname": "uk2219.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.6" + "178.239.162.247" ] }, { @@ -125421,12 +173952,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1827, - "hostname": "uk1827.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2220, + "hostname": "uk2220.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.9" + "178.239.162.243" ] }, { @@ -125434,11 +173969,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1827, - "hostname": "uk1827.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2220, + "hostname": "uk2220.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.9" + "178.239.162.243" ] }, { @@ -125446,12 +173985,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1828, - "hostname": "uk1828.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2221, + "hostname": "uk2221.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.12" + "178.239.162.239" ] }, { @@ -125459,11 +174002,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1828, - "hostname": "uk1828.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2221, + "hostname": "uk2221.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.12" + "178.239.162.239" ] }, { @@ -125471,12 +174018,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1829, - "hostname": "uk1829.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2222, + "hostname": "uk2222.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.15" + "178.239.162.235" ] }, { @@ -125484,11 +174035,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1829, - "hostname": "uk1829.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2222, + "hostname": "uk2222.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.15" + "178.239.162.235" ] }, { @@ -125496,12 +174051,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1830, - "hostname": "uk1830.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2223, + "hostname": "uk2223.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.18" + "178.239.162.231" ] }, { @@ -125509,11 +174068,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1830, - "hostname": "uk1830.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2223, + "hostname": "uk2223.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.18" + "178.239.162.231" ] }, { @@ -125521,12 +174084,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1835, - "hostname": "uk1835.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2224, + "hostname": "uk2224.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.59.221.248" + "178.239.162.227" ] }, { @@ -125534,11 +174101,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1835, - "hostname": "uk1835.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2224, + "hostname": "uk2224.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.59.221.248" + "178.239.162.227" ] }, { @@ -125546,12 +174117,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1836, - "hostname": "uk1836.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2225, + "hostname": "uk2225.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.59.221.245" + "178.239.162.223" ] }, { @@ -125559,11 +174134,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1836, - "hostname": "uk1836.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2225, + "hostname": "uk2225.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.59.221.245" + "178.239.162.223" ] }, { @@ -125571,12 +174150,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1837, - "hostname": "uk1837.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2226, + "hostname": "uk2226.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.59.221.242" + "178.239.162.219" ] }, { @@ -125584,11 +174167,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1837, - "hostname": "uk1837.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2226, + "hostname": "uk2226.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.59.221.242" + "178.239.162.219" ] }, { @@ -125596,12 +174183,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1838, - "hostname": "uk1838.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2227, + "hostname": "uk2227.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.21" + "178.239.162.215" ] }, { @@ -125609,11 +174200,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1838, - "hostname": "uk1838.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2227, + "hostname": "uk2227.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.21" + "178.239.162.215" ] }, { @@ -125621,12 +174216,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1839, - "hostname": "uk1839.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2228, + "hostname": "uk2228.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.24" + "178.239.162.211" ] }, { @@ -125634,11 +174233,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1839, - "hostname": "uk1839.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2228, + "hostname": "uk2228.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.24" + "178.239.162.211" ] }, { @@ -125646,12 +174249,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1840, - "hostname": "uk1840.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2229, + "hostname": "uk2229.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.27" + "178.239.162.207" ] }, { @@ -125659,11 +174266,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1840, - "hostname": "uk1840.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2229, + "hostname": "uk2229.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.27" + "178.239.162.207" ] }, { @@ -125671,12 +174282,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1841, - "hostname": "uk1841.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2230, + "hostname": "uk2230.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.30" + "178.239.162.203" ] }, { @@ -125684,11 +174299,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1841, - "hostname": "uk1841.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2230, + "hostname": "uk2230.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.30" + "178.239.162.203" ] }, { @@ -125696,12 +174315,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1842, - "hostname": "uk1842.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2231, + "hostname": "uk2231.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.33" + "178.239.162.199" ] }, { @@ -125709,11 +174332,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1842, - "hostname": "uk1842.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2231, + "hostname": "uk2231.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.33" + "178.239.162.199" ] }, { @@ -125721,12 +174348,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1843, - "hostname": "uk1843.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2232, + "hostname": "uk2232.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.36" + "178.239.162.195" ] }, { @@ -125734,11 +174365,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1843, - "hostname": "uk1843.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2232, + "hostname": "uk2232.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.36" + "178.239.162.195" ] }, { @@ -125746,12 +174381,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1844, - "hostname": "uk1844.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2233, + "hostname": "uk2233.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.39" + "178.239.162.191" ] }, { @@ -125759,11 +174398,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1844, - "hostname": "uk1844.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2233, + "hostname": "uk2233.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.39" + "178.239.162.191" ] }, { @@ -125771,12 +174414,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1845, - "hostname": "uk1845.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2234, + "hostname": "uk2234.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.42" + "178.239.162.187" ] }, { @@ -125784,11 +174431,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1845, - "hostname": "uk1845.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2234, + "hostname": "uk2234.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.42" + "178.239.162.187" ] }, { @@ -125796,12 +174447,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1846, - "hostname": "uk1846.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2235, + "hostname": "uk2235.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.45" + "178.239.162.183" ] }, { @@ -125809,11 +174464,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1846, - "hostname": "uk1846.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2235, + "hostname": "uk2235.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.45" + "178.239.162.183" ] }, { @@ -125821,12 +174480,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1847, - "hostname": "uk1847.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2236, + "hostname": "uk2236.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.255.48" + "178.239.162.179" ] }, { @@ -125834,11 +174497,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1847, - "hostname": "uk1847.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2236, + "hostname": "uk2236.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.169.255.48" + "178.239.162.179" ] }, { @@ -125846,12 +174513,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1848, - "hostname": "uk1848.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2237, + "hostname": "uk2237.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.36.110.181" + "178.239.162.175" ] }, { @@ -125859,11 +174530,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1848, - "hostname": "uk1848.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2237, + "hostname": "uk2237.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.36.110.181" + "178.239.162.175" ] }, { @@ -125871,12 +174546,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1849, - "hostname": "uk1849.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2238, + "hostname": "uk2238.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.36.110.197" + "178.239.162.171" ] }, { @@ -125884,11 +174563,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1849, - "hostname": "uk1849.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2238, + "hostname": "uk2238.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.36.110.197" + "178.239.162.171" ] }, { @@ -125896,12 +174579,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1850, - "hostname": "uk1850.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2239, + "hostname": "uk2239.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.36.110.229" + "178.239.162.167" ] }, { @@ -125909,11 +174596,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1850, - "hostname": "uk1850.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2239, + "hostname": "uk2239.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.36.110.229" + "178.239.162.167" ] }, { @@ -125921,12 +174612,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1851, - "hostname": "uk1851.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2240, + "hostname": "uk2240.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.36.110.245" + "178.239.162.163" ] }, { @@ -125934,11 +174629,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1851, - "hostname": "uk1851.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2240, + "hostname": "uk2240.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.36.110.245" + "178.239.162.163" ] }, { @@ -125946,12 +174645,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1866, - "hostname": "uk1866.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2241, + "hostname": "uk2241.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.57" + "178.239.162.160" ] }, { @@ -125959,11 +174662,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1866, - "hostname": "uk1866.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2241, + "hostname": "uk2241.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.57" + "178.239.162.160" ] }, { @@ -125971,12 +174678,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1867, - "hostname": "uk1867.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2242, + "hostname": "uk2242.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.202.15" + "217.146.92.231" ] }, { @@ -125984,11 +174695,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1867, - "hostname": "uk1867.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2242, + "hostname": "uk2242.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.202.15" + "217.146.92.231" ] }, { @@ -125996,12 +174711,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1873, - "hostname": "uk1873.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2243, + "hostname": "uk2243.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.176.213" + "217.146.92.251" ] }, { @@ -126009,11 +174728,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1873, - "hostname": "uk1873.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2243, + "hostname": "uk2243.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.238.176.213" + "217.146.92.251" ] }, { @@ -126021,13 +174744,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1875, - "hostname": "uk1875.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2244, + "hostname": "uk2244.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.191.202", - "2001:ac8:31:42::3" + "217.146.92.247" ] }, { @@ -126035,12 +174761,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1875, - "hostname": "uk1875.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2244, + "hostname": "uk2244.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.238.191.202", - "2001:ac8:31:42::3" + "217.146.92.247" ] }, { @@ -126048,13 +174777,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1876, - "hostname": "uk1876.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2245, + "hostname": "uk2245.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.191.207", - "2001:ac8:31:43::3" + "217.146.92.243" ] }, { @@ -126062,12 +174794,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1876, - "hostname": "uk1876.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2245, + "hostname": "uk2245.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.238.191.207", - "2001:ac8:31:43::3" + "217.146.92.243" ] }, { @@ -126075,12 +174810,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1877, - "hostname": "uk1877.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2246, + "hostname": "uk2246.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.191.212" + "217.146.92.239" ] }, { @@ -126088,11 +174827,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1877, - "hostname": "uk1877.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2246, + "hostname": "uk2246.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.238.191.212" + "217.146.92.239" ] }, { @@ -126100,12 +174843,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1878, - "hostname": "uk1878.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2247, + "hostname": "uk2247.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.253.98.101" + "217.146.92.235" ] }, { @@ -126113,11 +174860,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1878, - "hostname": "uk1878.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2247, + "hostname": "uk2247.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.253.98.101" + "217.146.92.235" ] }, { @@ -126125,12 +174876,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1879, - "hostname": "uk1879.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2248, + "hostname": "uk2248.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.253.98.106" + "217.146.92.222" ] }, { @@ -126138,11 +174893,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1879, - "hostname": "uk1879.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2248, + "hostname": "uk2248.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.253.98.106" + "217.146.92.222" ] }, { @@ -126150,12 +174909,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1882, - "hostname": "uk1882.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2249, + "hostname": "uk2249.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.202.25" + "217.146.92.214" ] }, { @@ -126163,11 +174926,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1882, - "hostname": "uk1882.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2249, + "hostname": "uk2249.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.202.25" + "217.146.92.214" ] }, { @@ -126175,12 +174942,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1883, - "hostname": "uk1883.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2250, + "hostname": "uk2250.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.101" + "217.146.92.218" ] }, { @@ -126188,11 +174959,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1883, - "hostname": "uk1883.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2250, + "hostname": "uk2250.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.101" + "217.146.92.218" ] }, { @@ -126200,12 +174975,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1884, - "hostname": "uk1884.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2251, + "hostname": "uk2251.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.106" + "217.146.92.226" ] }, { @@ -126213,11 +174992,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1884, - "hostname": "uk1884.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2251, + "hostname": "uk2251.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.106" + "217.146.92.226" ] }, { @@ -126225,12 +175008,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1885, - "hostname": "uk1885.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2252, + "hostname": "uk2252.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.111" + "217.146.92.210" ] }, { @@ -126238,11 +175025,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1885, - "hostname": "uk1885.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2252, + "hostname": "uk2252.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.111" + "217.146.92.210" ] }, { @@ -126250,12 +175041,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1886, - "hostname": "uk1886.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2253, + "hostname": "uk2253.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.116" + "217.146.92.206" ] }, { @@ -126263,11 +175058,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1886, - "hostname": "uk1886.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2253, + "hostname": "uk2253.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.116" + "217.146.92.206" ] }, { @@ -126275,12 +175074,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1887, - "hostname": "uk1887.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2254, + "hostname": "uk2254.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.121" + "217.146.92.202" ] }, { @@ -126288,11 +175091,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1887, - "hostname": "uk1887.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2254, + "hostname": "uk2254.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.121" + "217.146.92.202" ] }, { @@ -126300,12 +175107,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1889, - "hostname": "uk1889.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2255, + "hostname": "uk2255.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "93.177.74.170" + "217.146.92.198" ] }, { @@ -126313,11 +175124,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1889, - "hostname": "uk1889.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2255, + "hostname": "uk2255.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "93.177.74.170" + "217.146.92.198" ] }, { @@ -126325,12 +175140,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1890, - "hostname": "uk1890.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2256, + "hostname": "uk2256.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "93.177.74.165" + "217.146.92.194" ] }, { @@ -126338,11 +175157,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1890, - "hostname": "uk1890.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2256, + "hostname": "uk2256.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "93.177.74.165" + "217.146.92.194" ] }, { @@ -126350,12 +175173,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1891, - "hostname": "uk1891.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2257, + "hostname": "uk2257.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "93.177.74.179" + "217.146.92.190" ] }, { @@ -126363,11 +175190,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1891, - "hostname": "uk1891.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2257, + "hostname": "uk2257.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "93.177.74.179" + "217.146.92.190" ] }, { @@ -126375,12 +175206,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1893, - "hostname": "uk1893.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2258, + "hostname": "uk2258.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.133.67" + "217.146.92.186" ] }, { @@ -126388,11 +175223,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1893, - "hostname": "uk1893.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2258, + "hostname": "uk2258.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.133.67" + "217.146.92.186" ] }, { @@ -126400,12 +175239,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1894, - "hostname": "uk1894.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2259, + "hostname": "uk2259.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.133.72" + "217.146.92.182" ] }, { @@ -126413,11 +175256,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1894, - "hostname": "uk1894.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2259, + "hostname": "uk2259.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.133.72" + "217.146.92.182" ] }, { @@ -126425,12 +175272,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1895, - "hostname": "uk1895.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2260, + "hostname": "uk2260.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.133.83" + "217.146.92.178" ] }, { @@ -126438,11 +175289,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1895, - "hostname": "uk1895.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2260, + "hostname": "uk2260.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.133.83" + "217.146.92.178" ] }, { @@ -126450,12 +175305,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1896, - "hostname": "uk1896.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2261, + "hostname": "uk2261.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.133.85" + "217.146.92.174" ] }, { @@ -126463,11 +175322,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1896, - "hostname": "uk1896.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2261, + "hostname": "uk2261.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.133.85" + "217.146.92.174" ] }, { @@ -126475,12 +175338,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1897, - "hostname": "uk1897.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2262, + "hostname": "uk2262.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.133.90" + "217.146.92.170" ] }, { @@ -126488,11 +175355,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1897, - "hostname": "uk1897.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2262, + "hostname": "uk2262.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.120.133.90" + "217.146.92.170" ] }, { @@ -126500,12 +175371,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1898, - "hostname": "uk1898.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2263, + "hostname": "uk2263.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.229.73.187" + "217.146.92.166" ] }, { @@ -126513,11 +175388,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1898, - "hostname": "uk1898.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2263, + "hostname": "uk2263.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "94.229.73.187" + "217.146.92.166" ] }, { @@ -126525,12 +175404,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1899, - "hostname": "uk1899.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2264, + "hostname": "uk2264.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.229.75.83" + "217.146.92.162" ] }, { @@ -126538,11 +175421,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1899, - "hostname": "uk1899.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2264, + "hostname": "uk2264.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "94.229.75.83" + "217.146.92.162" ] }, { @@ -126550,12 +175437,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1900, - "hostname": "uk1900.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2265, + "hostname": "uk2265.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.9.211" + "217.146.92.158" ] }, { @@ -126563,11 +175454,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1900, - "hostname": "uk1900.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2265, + "hostname": "uk2265.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.159.9.211" + "217.146.92.158" ] }, { @@ -126575,12 +175470,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1901, - "hostname": "uk1901.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2266, + "hostname": "uk2266.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.109.168.131" + "217.146.92.154" ] }, { @@ -126588,11 +175487,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1901, - "hostname": "uk1901.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2266, + "hostname": "uk2266.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.109.168.131" + "217.146.92.154" ] }, { @@ -126600,12 +175503,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1902, - "hostname": "uk1902.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2267, + "hostname": "uk2267.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.109.170.243" + "217.146.92.150" ] }, { @@ -126613,11 +175520,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1902, - "hostname": "uk1902.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2267, + "hostname": "uk2267.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.109.170.243" + "217.146.92.150" ] }, { @@ -126625,12 +175536,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1903, - "hostname": "uk1903.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2268, + "hostname": "uk2268.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.99.252.211" + "5.226.142.3" ] }, { @@ -126638,11 +175553,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1903, - "hostname": "uk1903.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2268, + "hostname": "uk2268.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.99.252.211" + "5.226.142.3" ] }, { @@ -126650,12 +175569,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1904, - "hostname": "uk1904.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2269, + "hostname": "uk2269.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.132.5.19" + "89.35.30.251" ] }, { @@ -126663,11 +175586,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1904, - "hostname": "uk1904.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2269, + "hostname": "uk2269.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "31.132.5.19" + "89.35.30.251" ] }, { @@ -126675,12 +175602,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1905, - "hostname": "uk1905.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2270, + "hostname": "uk2270.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.132.6.3" + "89.35.30.247" ] }, { @@ -126688,11 +175619,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1905, - "hostname": "uk1905.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2270, + "hostname": "uk2270.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "31.132.6.3" + "89.35.30.247" ] }, { @@ -126700,12 +175635,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1906, - "hostname": "uk1906.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2271, + "hostname": "uk2271.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.132.7.3" + "89.35.30.243" ] }, { @@ -126713,11 +175652,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1906, - "hostname": "uk1906.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2271, + "hostname": "uk2271.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "31.132.7.3" + "89.35.30.243" ] }, { @@ -126725,12 +175668,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1907, - "hostname": "uk1907.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2272, + "hostname": "uk2272.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.136.147" + "89.35.30.239" ] }, { @@ -126738,11 +175685,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1907, - "hostname": "uk1907.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2272, + "hostname": "uk2272.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "5.101.136.147" + "89.35.30.239" ] }, { @@ -126750,12 +175701,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1908, - "hostname": "uk1908.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2273, + "hostname": "uk2273.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.137.195" + "89.35.30.235" ] }, { @@ -126763,11 +175718,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1908, - "hostname": "uk1908.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2273, + "hostname": "uk2273.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "5.101.137.195" + "89.35.30.235" ] }, { @@ -126775,12 +175734,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1909, - "hostname": "uk1909.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2274, + "hostname": "uk2274.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.138.227" + "89.35.30.231" ] }, { @@ -126788,11 +175751,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1909, - "hostname": "uk1909.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2274, + "hostname": "uk2274.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "5.101.138.227" + "89.35.30.231" ] }, { @@ -126800,12 +175767,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1910, - "hostname": "uk1910.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2275, + "hostname": "uk2275.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.174.195" + "89.35.30.227" ] }, { @@ -126813,11 +175784,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1910, - "hostname": "uk1910.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2275, + "hostname": "uk2275.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "5.101.174.195" + "89.35.30.227" ] }, { @@ -126825,12 +175800,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1911, - "hostname": "uk1911.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2276, + "hostname": "uk2276.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.75.120.131" + "89.35.30.223" ] }, { @@ -126838,11 +175817,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1911, - "hostname": "uk1911.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2276, + "hostname": "uk2276.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "77.75.120.131" + "89.35.30.223" ] }, { @@ -126850,12 +175833,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1912, - "hostname": "uk1912.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2277, + "hostname": "uk2277.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.193.51" + "89.35.30.219" ] }, { @@ -126863,11 +175850,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1912, - "hostname": "uk1912.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2277, + "hostname": "uk2277.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "78.157.193.51" + "89.35.30.219" ] }, { @@ -126875,12 +175866,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1913, - "hostname": "uk1913.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2278, + "hostname": "uk2278.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.216.3" + "89.35.30.215" ] }, { @@ -126888,11 +175883,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1913, - "hostname": "uk1913.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2278, + "hostname": "uk2278.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "78.157.216.3" + "89.35.30.215" ] }, { @@ -126900,12 +175899,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1914, - "hostname": "uk1914.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2279, + "hostname": "uk2279.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.229.69.243" + "89.35.30.211" ] }, { @@ -126913,11 +175916,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1914, - "hostname": "uk1914.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2279, + "hostname": "uk2279.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "94.229.69.243" + "89.35.30.211" ] }, { @@ -126925,12 +175932,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1915, - "hostname": "uk1915.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2280, + "hostname": "uk2280.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.132.6.11" + "89.35.30.207" ] }, { @@ -126938,11 +175949,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1915, - "hostname": "uk1915.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2280, + "hostname": "uk2280.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "31.132.6.11" + "89.35.30.207" ] }, { @@ -126950,12 +175965,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1916, - "hostname": "uk1916.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 2281, + "hostname": "uk2281.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.223.19" + "89.35.30.203" ] }, { @@ -126963,11 +175981,14 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1916, - "hostname": "uk1916.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 2281, + "hostname": "uk2281.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "94.46.223.19" + "89.35.30.203" ] }, { @@ -126975,12 +175996,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1917, - "hostname": "uk1917.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2282, + "hostname": "uk2282.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.99.252.35" + "89.35.30.199" ] }, { @@ -126988,11 +176013,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1917, - "hostname": "uk1917.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2282, + "hostname": "uk2282.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.99.252.35" + "89.35.30.199" ] }, { @@ -127000,12 +176029,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1918, - "hostname": "uk1918.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2283, + "hostname": "uk2283.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.9.58.227" + "89.35.30.195" ] }, { @@ -127013,11 +176046,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1918, - "hostname": "uk1918.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2283, + "hostname": "uk2283.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.9.58.227" + "89.35.30.195" ] }, { @@ -127025,12 +176062,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1919, - "hostname": "uk1919.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2284, + "hostname": "uk2284.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.9.59.131" + "89.35.30.191" ] }, { @@ -127038,11 +176079,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1919, - "hostname": "uk1919.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2284, + "hostname": "uk2284.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "37.9.59.131" + "89.35.30.191" ] }, { @@ -127050,12 +176095,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1920, - "hostname": "uk1920.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2285, + "hostname": "uk2285.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.171.227" + "89.35.30.187" ] }, { @@ -127063,11 +176112,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1920, - "hostname": "uk1920.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2285, + "hostname": "uk2285.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "5.101.171.227" + "89.35.30.187" ] }, { @@ -127075,12 +176128,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1921, - "hostname": "uk1921.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2286, + "hostname": "uk2286.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.74.197.195" + "89.35.30.183" ] }, { @@ -127088,11 +176145,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1921, - "hostname": "uk1921.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2286, + "hostname": "uk2286.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "77.74.197.195" + "89.35.30.183" ] }, { @@ -127100,12 +176161,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1924, - "hostname": "uk1924.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2287, + "hostname": "uk2287.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.37" + "89.35.30.179" ] }, { @@ -127113,11 +176178,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1924, - "hostname": "uk1924.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2287, + "hostname": "uk2287.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.37" + "89.35.30.179" ] }, { @@ -127125,12 +176194,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1925, - "hostname": "uk1925.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2288, + "hostname": "uk2288.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.42" + "109.70.150.247" ] }, { @@ -127138,11 +176211,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1925, - "hostname": "uk1925.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2288, + "hostname": "uk2288.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.42" + "109.70.150.247" ] }, { @@ -127150,12 +176227,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1926, - "hostname": "uk1926.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2289, + "hostname": "uk2289.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.52" + "109.70.150.243" ] }, { @@ -127163,11 +176244,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1926, - "hostname": "uk1926.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2289, + "hostname": "uk2289.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.52" + "109.70.150.243" ] }, { @@ -127175,12 +176260,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1927, - "hostname": "uk1927.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2290, + "hostname": "uk2290.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.213" + "109.70.150.239" ] }, { @@ -127188,11 +176277,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1927, - "hostname": "uk1927.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2290, + "hostname": "uk2290.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.213" + "109.70.150.239" ] }, { @@ -127200,12 +176293,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1933, - "hostname": "uk1933.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2291, + "hostname": "uk2291.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.218" + "109.70.150.235" ] }, { @@ -127213,11 +176310,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1933, - "hostname": "uk1933.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2291, + "hostname": "uk2291.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.218" + "109.70.150.235" ] }, { @@ -127225,12 +176326,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1934, - "hostname": "uk1934.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2292, + "hostname": "uk2292.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.202.29" + "109.70.150.231" ] }, { @@ -127238,11 +176343,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1934, - "hostname": "uk1934.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2292, + "hostname": "uk2292.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.202.29" + "109.70.150.231" ] }, { @@ -127250,12 +176359,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1935, - "hostname": "uk1935.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2293, + "hostname": "uk2293.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.197" + "109.70.150.227" ] }, { @@ -127263,11 +176376,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1935, - "hostname": "uk1935.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2293, + "hostname": "uk2293.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.197" + "109.70.150.227" ] }, { @@ -127275,12 +176392,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1944, - "hostname": "uk1944.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2294, + "hostname": "uk2294.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.100.123" + "109.70.150.223" ] }, { @@ -127288,11 +176409,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1944, - "hostname": "uk1944.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2294, + "hostname": "uk2294.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "141.98.100.123" + "109.70.150.223" ] }, { @@ -127300,12 +176425,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1945, - "hostname": "uk1945.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2295, + "hostname": "uk2295.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.100.171" + "109.70.150.219" ] }, { @@ -127313,11 +176442,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1945, - "hostname": "uk1945.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2295, + "hostname": "uk2295.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "141.98.100.171" + "109.70.150.219" ] }, { @@ -127325,12 +176458,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1946, - "hostname": "uk1946.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2296, + "hostname": "uk2296.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "141.98.100.179" + "109.70.150.195" ] }, { @@ -127338,11 +176475,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1946, - "hostname": "uk1946.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2296, + "hostname": "uk2296.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "141.98.100.179" + "109.70.150.195" ] }, { @@ -127350,12 +176491,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1977, - "hostname": "uk1977.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2297, + "hostname": "uk2297.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.59.221.71" + "109.70.150.215" ] }, { @@ -127363,11 +176508,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1977, - "hostname": "uk1977.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2297, + "hostname": "uk2297.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.59.221.71" + "109.70.150.215" ] }, { @@ -127375,12 +176524,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1978, - "hostname": "uk1978.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2298, + "hostname": "uk2298.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.59.221.87" + "109.70.150.211" ] }, { @@ -127388,11 +176541,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1978, - "hostname": "uk1978.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2298, + "hostname": "uk2298.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.59.221.87" + "109.70.150.211" ] }, { @@ -127400,12 +176557,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1999, - "hostname": "uk1999.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2299, + "hostname": "uk2299.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.250" + "109.70.150.207" ] }, { @@ -127413,11 +176574,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 1999, - "hostname": "uk1999.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2299, + "hostname": "uk2299.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.250" + "109.70.150.207" ] }, { @@ -127425,12 +176590,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2000, - "hostname": "uk2000.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2300, + "hostname": "uk2300.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.245" + "109.70.150.203" ] }, { @@ -127438,11 +176607,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2000, - "hostname": "uk2000.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2300, + "hostname": "uk2300.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.245" + "109.70.150.203" ] }, { @@ -127450,12 +176623,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2001, - "hostname": "uk2001.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2301, + "hostname": "uk2301.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.240" + "109.70.150.199" ] }, { @@ -127463,11 +176640,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2001, - "hostname": "uk2001.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2301, + "hostname": "uk2301.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.240" + "109.70.150.199" ] }, { @@ -127475,12 +176656,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2002, - "hostname": "uk2002.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2302, + "hostname": "uk2302.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.235" + "109.70.150.191" ] }, { @@ -127488,11 +176673,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2002, - "hostname": "uk2002.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2302, + "hostname": "uk2302.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.235" + "109.70.150.191" ] }, { @@ -127500,12 +176689,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2003, - "hostname": "uk2003.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2303, + "hostname": "uk2303.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.231" + "109.70.150.159" ] }, { @@ -127513,11 +176706,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2003, - "hostname": "uk2003.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2303, + "hostname": "uk2303.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.231" + "109.70.150.159" ] }, { @@ -127525,12 +176722,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2004, - "hostname": "uk2004.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2304, + "hostname": "uk2304.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.225" + "109.70.150.155" ] }, { @@ -127538,11 +176739,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2004, - "hostname": "uk2004.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2304, + "hostname": "uk2304.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.225" + "109.70.150.155" ] }, { @@ -127550,12 +176755,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2005, - "hostname": "uk2005.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2305, + "hostname": "uk2305.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.220" + "109.70.150.151" ] }, { @@ -127563,11 +176772,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2005, - "hostname": "uk2005.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2305, + "hostname": "uk2305.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.220" + "109.70.150.151" ] }, { @@ -127575,12 +176788,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2006, - "hostname": "uk2006.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2306, + "hostname": "uk2306.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.215" + "109.70.150.146" ] }, { @@ -127588,11 +176805,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2006, - "hostname": "uk2006.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2306, + "hostname": "uk2306.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.215" + "109.70.150.146" ] }, { @@ -127600,12 +176821,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2007, - "hostname": "uk2007.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2307, + "hostname": "uk2307.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.211" + "109.70.150.138" ] }, { @@ -127613,11 +176838,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2007, - "hostname": "uk2007.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2307, + "hostname": "uk2307.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.211" + "109.70.150.138" ] }, { @@ -127625,12 +176854,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2008, - "hostname": "uk2008.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2328, + "hostname": "uk2328.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.206" + "109.70.150.89" ] }, { @@ -127638,11 +176871,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2008, - "hostname": "uk2008.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2328, + "hostname": "uk2328.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.206" + "109.70.150.89" ] }, { @@ -127650,12 +176887,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2009, - "hostname": "uk2009.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2329, + "hostname": "uk2329.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.201" + "109.70.150.81" ] }, { @@ -127663,11 +176904,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2009, - "hostname": "uk2009.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2329, + "hostname": "uk2329.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.201" + "109.70.150.81" ] }, { @@ -127675,12 +176920,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2010, - "hostname": "uk2010.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2330, + "hostname": "uk2330.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.196" + "109.70.150.85" ] }, { @@ -127688,11 +176937,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2010, - "hostname": "uk2010.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2330, + "hostname": "uk2330.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.196" + "109.70.150.85" ] }, { @@ -127700,12 +176953,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2011, - "hostname": "uk2011.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2331, + "hostname": "uk2331.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.186" + "109.70.150.77" ] }, { @@ -127713,11 +176970,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2011, - "hostname": "uk2011.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2331, + "hostname": "uk2331.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.186" + "109.70.150.77" ] }, { @@ -127725,12 +176986,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2012, - "hostname": "uk2012.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2332, + "hostname": "uk2332.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.181" + "185.59.221.251" ] }, { @@ -127738,11 +177003,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2012, - "hostname": "uk2012.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2332, + "hostname": "uk2332.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.181" + "185.59.221.251" ] }, { @@ -127750,12 +177019,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2013, - "hostname": "uk2013.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2333, + "hostname": "uk2333.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.176" + "138.199.63.162" ] }, { @@ -127763,11 +177036,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2013, - "hostname": "uk2013.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2333, + "hostname": "uk2333.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.176" + "138.199.63.162" ] }, { @@ -127775,12 +177052,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2014, - "hostname": "uk2014.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2334, + "hostname": "uk2334.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.171" + "194.35.232.2" ] }, { @@ -127788,11 +177069,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2014, - "hostname": "uk2014.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2334, + "hostname": "uk2334.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.171" + "194.35.232.2" ] }, { @@ -127800,12 +177085,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2015, - "hostname": "uk2015.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2335, + "hostname": "uk2335.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.166" + "194.35.232.13" ] }, { @@ -127813,11 +177102,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2015, - "hostname": "uk2015.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2335, + "hostname": "uk2335.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.166" + "194.35.232.13" ] }, { @@ -127825,12 +177118,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2016, - "hostname": "uk2016.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2336, + "hostname": "uk2336.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.161" + "194.35.232.24" ] }, { @@ -127838,11 +177135,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2016, - "hostname": "uk2016.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2336, + "hostname": "uk2336.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.161" + "194.35.232.24" ] }, { @@ -127850,12 +177151,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2017, - "hostname": "uk2017.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2337, + "hostname": "uk2337.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.156" + "194.35.232.35" ] }, { @@ -127863,11 +177168,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2017, - "hostname": "uk2017.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2337, + "hostname": "uk2337.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.156" + "194.35.232.35" ] }, { @@ -127875,12 +177184,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2018, - "hostname": "uk2018.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2338, + "hostname": "uk2338.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.146" + "194.35.232.46" ] }, { @@ -127888,11 +177201,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2018, - "hostname": "uk2018.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2338, + "hostname": "uk2338.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.146" + "194.35.232.46" ] }, { @@ -127900,12 +177217,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2019, - "hostname": "uk2019.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2339, + "hostname": "uk2339.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.141" + "194.35.232.57" ] }, { @@ -127913,11 +177234,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2019, - "hostname": "uk2019.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2339, + "hostname": "uk2339.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.141" + "194.35.232.57" ] }, { @@ -127925,12 +177250,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2020, - "hostname": "uk2020.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2340, + "hostname": "uk2340.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.136" + "194.35.232.68" ] }, { @@ -127938,11 +177267,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2020, - "hostname": "uk2020.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2340, + "hostname": "uk2340.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.136" + "194.35.232.68" ] }, { @@ -127950,12 +177283,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2021, - "hostname": "uk2021.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2341, + "hostname": "uk2341.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.131" + "194.35.232.79" ] }, { @@ -127963,11 +177300,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2021, - "hostname": "uk2021.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2341, + "hostname": "uk2341.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.131" + "194.35.232.79" ] }, { @@ -127975,12 +177316,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2022, - "hostname": "uk2022.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2342, + "hostname": "uk2342.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.126" + "194.35.232.90" ] }, { @@ -127988,11 +177333,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2022, - "hostname": "uk2022.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2342, + "hostname": "uk2342.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.126" + "194.35.232.90" ] }, { @@ -128000,12 +177349,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2023, - "hostname": "uk2023.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2343, + "hostname": "uk2343.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.121" + "194.35.232.101" ] }, { @@ -128013,11 +177366,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2023, - "hostname": "uk2023.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2343, + "hostname": "uk2343.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.121" + "194.35.232.101" ] }, { @@ -128025,12 +177382,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2024, - "hostname": "uk2024.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2344, + "hostname": "uk2344.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.111" + "194.35.232.112" ] }, { @@ -128038,11 +177399,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2024, - "hostname": "uk2024.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2344, + "hostname": "uk2344.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.111" + "194.35.232.112" ] }, { @@ -128050,12 +177415,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2025, - "hostname": "uk2025.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2345, + "hostname": "uk2345.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.106" + "194.35.232.123" ] }, { @@ -128063,11 +177432,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2025, - "hostname": "uk2025.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2345, + "hostname": "uk2345.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.106" + "194.35.232.123" ] }, { @@ -128075,12 +177448,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2026, - "hostname": "uk2026.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2346, + "hostname": "uk2346.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.101" + "194.35.232.134" ] }, { @@ -128088,11 +177465,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2026, - "hostname": "uk2026.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2346, + "hostname": "uk2346.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.101" + "194.35.232.134" ] }, { @@ -128100,12 +177481,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2027, - "hostname": "uk2027.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2347, + "hostname": "uk2347.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.96" + "194.35.232.145" ] }, { @@ -128113,11 +177498,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2027, - "hostname": "uk2027.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2347, + "hostname": "uk2347.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.96" + "194.35.232.145" ] }, { @@ -128125,12 +177514,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2028, - "hostname": "uk2028.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2348, + "hostname": "uk2348.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.91" + "194.35.232.155" ] }, { @@ -128138,11 +177531,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2028, - "hostname": "uk2028.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2348, + "hostname": "uk2348.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.91" + "194.35.232.155" ] }, { @@ -128150,12 +177547,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2029, - "hostname": "uk2029.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2349, + "hostname": "uk2349.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.86" + "194.35.232.165" ] }, { @@ -128163,11 +177564,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2029, - "hostname": "uk2029.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2349, + "hostname": "uk2349.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.86" + "194.35.232.165" ] }, { @@ -128175,12 +177580,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2030, - "hostname": "uk2030.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2350, + "hostname": "uk2350.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.81" + "194.35.232.175" ] }, { @@ -128188,11 +177597,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2030, - "hostname": "uk2030.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2350, + "hostname": "uk2350.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.81" + "194.35.232.175" ] }, { @@ -128200,12 +177613,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2031, - "hostname": "uk2031.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2351, + "hostname": "uk2351.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.76" + "194.35.232.185" ] }, { @@ -128213,11 +177630,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2031, - "hostname": "uk2031.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2351, + "hostname": "uk2351.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.76" + "194.35.232.185" ] }, { @@ -128225,12 +177646,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2032, - "hostname": "uk2032.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2352, + "hostname": "uk2352.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.71" + "194.35.232.195" ] }, { @@ -128238,11 +177663,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2032, - "hostname": "uk2032.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2352, + "hostname": "uk2352.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.71" + "194.35.232.195" ] }, { @@ -128250,12 +177679,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2033, - "hostname": "uk2033.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2353, + "hostname": "uk2353.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.66" + "194.35.232.205" ] }, { @@ -128263,11 +177696,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2033, - "hostname": "uk2033.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2353, + "hostname": "uk2353.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.66" + "194.35.232.205" ] }, { @@ -128275,12 +177712,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2034, - "hostname": "uk2034.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2354, + "hostname": "uk2354.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.61" + "194.35.232.215" ] }, { @@ -128288,11 +177729,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2034, - "hostname": "uk2034.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2354, + "hostname": "uk2354.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.61" + "194.35.232.215" ] }, { @@ -128300,12 +177745,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2035, - "hostname": "uk2035.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2355, + "hostname": "uk2355.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.56" + "194.35.232.225" ] }, { @@ -128313,11 +177762,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2035, - "hostname": "uk2035.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2355, + "hostname": "uk2355.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.56" + "194.35.232.225" ] }, { @@ -128325,12 +177778,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2036, - "hostname": "uk2036.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2356, + "hostname": "uk2356.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.144.26" + "194.35.232.235" ] }, { @@ -128338,11 +177795,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2036, - "hostname": "uk2036.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2356, + "hostname": "uk2356.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.144.26" + "194.35.232.235" ] }, { @@ -128350,12 +177811,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2037, - "hostname": "uk2037.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2357, + "hostname": "uk2357.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.144.21" + "194.35.232.245" ] }, { @@ -128363,11 +177828,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2037, - "hostname": "uk2037.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2357, + "hostname": "uk2357.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.144.21" + "194.35.232.245" ] }, { @@ -128375,12 +177844,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2038, - "hostname": "uk2038.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2359, + "hostname": "uk2359.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.144.154" + "5.101.171.195" ] }, { @@ -128388,11 +177861,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2038, - "hostname": "uk2038.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2359, + "hostname": "uk2359.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.144.154" + "5.101.171.195" ] }, { @@ -128400,12 +177877,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2039, - "hostname": "uk2039.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2360, + "hostname": "uk2360.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.144.149" + "185.17.27.51" ] }, { @@ -128413,11 +177894,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2039, - "hostname": "uk2039.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2360, + "hostname": "uk2360.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "109.70.144.149" + "185.17.27.51" ] }, { @@ -128425,12 +177910,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2040, - "hostname": "uk2040.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2361, + "hostname": "uk2361.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.16.207.58" + "178.159.9.83" ] }, { @@ -128438,11 +177927,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2040, - "hostname": "uk2040.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2361, + "hostname": "uk2361.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.16.207.58" + "178.159.9.83" ] }, { @@ -128450,12 +177943,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2041, - "hostname": "uk2041.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2363, + "hostname": "uk2363.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.16.207.53" + "37.9.58.51" ] }, { @@ -128463,11 +177960,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2041, - "hostname": "uk2041.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2363, + "hostname": "uk2363.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.16.207.53" + "37.9.58.51" ] }, { @@ -128475,12 +177976,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2042, - "hostname": "uk2042.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2364, + "hostname": "uk2364.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.16.207.48" + "5.101.138.115" ] }, { @@ -128488,11 +177993,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2042, - "hostname": "uk2042.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2364, + "hostname": "uk2364.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.16.207.48" + "5.101.138.115" ] }, { @@ -128500,12 +178009,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2043, - "hostname": "uk2043.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2365, + "hostname": "uk2365.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.51" + "5.101.143.115" ] }, { @@ -128513,11 +178026,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2043, - "hostname": "uk2043.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2365, + "hostname": "uk2365.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.51" + "5.101.143.115" ] }, { @@ -128525,12 +178042,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2044, - "hostname": "uk2044.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2367, + "hostname": "uk2367.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.140.215.186" + "5.101.171.163" ] }, { @@ -128538,11 +178059,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2044, - "hostname": "uk2044.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2367, + "hostname": "uk2367.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.140.215.186" + "5.101.171.163" ] }, { @@ -128550,12 +178075,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2045, - "hostname": "uk2045.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2368, + "hostname": "uk2368.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.140.215.176" + "94.46.185.115" ] }, { @@ -128563,11 +178092,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2045, - "hostname": "uk2045.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2368, + "hostname": "uk2368.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.140.215.176" + "94.46.185.115" ] }, { @@ -128575,12 +178108,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2046, - "hostname": "uk2046.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2369, + "hostname": "uk2369.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.140.215.171" + "94.46.195.147" ] }, { @@ -128588,11 +178125,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2046, - "hostname": "uk2046.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2369, + "hostname": "uk2369.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.140.215.171" + "94.46.195.147" ] }, { @@ -128600,12 +178141,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2047, - "hostname": "uk2047.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2370, + "hostname": "uk2370.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.140.215.167" + "94.46.195.243" ] }, { @@ -128613,11 +178158,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2047, - "hostname": "uk2047.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2370, + "hostname": "uk2370.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.140.215.167" + "94.46.195.243" ] }, { @@ -128625,12 +178174,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2048, - "hostname": "uk2048.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2371, + "hostname": "uk2371.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.160.202" + "94.46.192.99" ] }, { @@ -128638,11 +178191,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2048, - "hostname": "uk2048.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2371, + "hostname": "uk2371.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.160.202" + "94.46.192.99" ] }, { @@ -128650,12 +178207,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2049, - "hostname": "uk2049.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2372, + "hostname": "uk2372.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.160.197" + "94.46.187.179" ] }, { @@ -128663,11 +178224,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2049, - "hostname": "uk2049.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2372, + "hostname": "uk2372.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.160.197" + "94.46.187.179" ] }, { @@ -128675,12 +178240,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2050, - "hostname": "uk2050.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2373, + "hostname": "uk2373.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.161.218" + "94.46.222.147" ] }, { @@ -128688,11 +178257,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2050, - "hostname": "uk2050.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2373, + "hostname": "uk2373.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.161.218" + "94.46.222.147" ] }, { @@ -128700,12 +178273,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2051, - "hostname": "uk2051.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2374, + "hostname": "uk2374.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.161.213" + "94.46.185.163" ] }, { @@ -128713,11 +178290,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2051, - "hostname": "uk2051.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2374, + "hostname": "uk2374.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "178.239.161.213" + "94.46.185.163" ] }, { @@ -128725,12 +178306,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2052, - "hostname": "uk2052.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2375, + "hostname": "uk2375.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.16.207.39" + "94.46.185.147" ] }, { @@ -128738,11 +178323,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2052, - "hostname": "uk2052.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2375, + "hostname": "uk2375.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.16.207.39" + "94.46.185.147" ] }, { @@ -128750,12 +178339,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2053, - "hostname": "uk2053.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2376, + "hostname": "uk2376.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.202" + "94.46.194.211" ] }, { @@ -128763,11 +178356,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2053, - "hostname": "uk2053.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2376, + "hostname": "uk2376.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.203.202" + "94.46.194.211" ] }, { @@ -128775,12 +178372,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2054, - "hostname": "uk2054.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2377, + "hostname": "uk2377.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.36.110.101" + "94.46.222.35" ] }, { @@ -128788,11 +178389,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2054, - "hostname": "uk2054.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2377, + "hostname": "uk2377.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.36.110.101" + "94.46.222.35" ] }, { @@ -128800,12 +178405,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2065, - "hostname": "uk2065.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2378, + "hostname": "uk2378.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.202.20" + "94.46.245.211" ] }, { @@ -128813,11 +178422,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2065, - "hostname": "uk2065.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2378, + "hostname": "uk2378.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.202.20" + "94.46.245.211" ] }, { @@ -128825,12 +178438,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2066, - "hostname": "uk2066.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2379, + "hostname": "uk2379.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.36.110.213" + "94.229.73.147" ] }, { @@ -128838,11 +178455,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2066, - "hostname": "uk2066.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2379, + "hostname": "uk2379.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.36.110.213" + "94.229.73.147" ] }, { @@ -128850,12 +178471,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2067, - "hostname": "uk2067.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2380, + "hostname": "uk2380.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.200.117" + "94.229.76.195" ] }, { @@ -128863,11 +178488,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2067, - "hostname": "uk2067.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2380, + "hostname": "uk2380.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "81.92.200.117" + "94.229.76.195" ] }, { @@ -128875,12 +178504,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2069, - "hostname": "uk2069.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2381, + "hostname": "uk2381.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.191" + "89.35.25.231" ] }, { @@ -128888,11 +178521,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2069, - "hostname": "uk2069.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2381, + "hostname": "uk2381.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.191" + "89.35.25.231" ] }, { @@ -128900,12 +178537,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2070, - "hostname": "uk2070.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2382, + "hostname": "uk2382.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.151" + "138.199.63.216" ] }, { @@ -128913,11 +178554,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2070, - "hostname": "uk2070.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2382, + "hostname": "uk2382.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.151" + "138.199.63.216" ] }, { @@ -128925,12 +178570,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2071, - "hostname": "uk2071.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2383, + "hostname": "uk2383.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.116" + "138.199.63.228" ] }, { @@ -128938,11 +178587,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2071, - "hostname": "uk2071.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2383, + "hostname": "uk2383.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.116" + "138.199.63.228" ] }, { @@ -128950,12 +178603,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2072, - "hostname": "uk2072.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2513, + "hostname": "uk2513.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.16.207.43" + "78.110.161.147" ] }, { @@ -128963,11 +178620,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2072, - "hostname": "uk2072.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2513, + "hostname": "uk2513.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.16.207.43" + "78.110.161.147" ] }, { @@ -128975,12 +178636,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2073, - "hostname": "uk2073.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2514, + "hostname": "uk2514.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.183.46" + "78.110.163.243" ] }, { @@ -128988,11 +178653,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2073, - "hostname": "uk2073.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2514, + "hostname": "uk2514.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.206.183.46" + "78.110.163.243" ] }, { @@ -129000,12 +178669,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2074, - "hostname": "uk2074.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2515, + "hostname": "uk2515.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.140.215.181" + "78.110.164.67" ] }, { @@ -129013,11 +178686,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2074, - "hostname": "uk2074.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2515, + "hostname": "uk2515.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "195.140.215.181" + "78.110.164.67" ] }, { @@ -129025,12 +178702,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2075, - "hostname": "uk2075.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2516, + "hostname": "uk2516.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.3" + "78.110.165.243" ] }, { @@ -129038,11 +178719,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2075, - "hostname": "uk2075.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2516, + "hostname": "uk2516.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.3" + "78.110.165.243" ] }, { @@ -129050,12 +178735,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2076, - "hostname": "uk2076.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2517, + "hostname": "uk2517.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.6" + "78.110.165.115" ] }, { @@ -129063,11 +178752,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2076, - "hostname": "uk2076.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2517, + "hostname": "uk2517.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.6" + "78.110.165.115" ] }, { @@ -129075,12 +178768,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2077, - "hostname": "uk2077.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2518, + "hostname": "uk2518.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.9" + "78.110.169.131" ] }, { @@ -129088,11 +178785,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2077, - "hostname": "uk2077.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2518, + "hostname": "uk2518.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.9" + "78.110.169.131" ] }, { @@ -129100,12 +178801,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2078, - "hostname": "uk2078.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2519, + "hostname": "uk2519.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.12" + "78.110.170.35" ] }, { @@ -129113,11 +178818,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2078, - "hostname": "uk2078.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2519, + "hostname": "uk2519.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.12" + "78.110.170.35" ] }, { @@ -129125,12 +178834,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2079, - "hostname": "uk2079.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2520, + "hostname": "uk2520.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.15" + "78.110.172.67" ] }, { @@ -129138,11 +178851,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2079, - "hostname": "uk2079.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2520, + "hostname": "uk2520.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.15" + "78.110.172.67" ] }, { @@ -129150,12 +178867,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2080, - "hostname": "uk2080.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2521, + "hostname": "uk2521.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.18" + "78.110.175.211" ] }, { @@ -129163,11 +178884,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2080, - "hostname": "uk2080.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2521, + "hostname": "uk2521.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.18" + "78.110.175.211" ] }, { @@ -129175,12 +178900,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2081, - "hostname": "uk2081.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2522, + "hostname": "uk2522.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.21" + "78.110.175.99" ] }, { @@ -129188,11 +178917,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2081, - "hostname": "uk2081.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2522, + "hostname": "uk2522.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.21" + "78.110.175.99" ] }, { @@ -129200,12 +178933,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2082, - "hostname": "uk2082.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2523, + "hostname": "uk2523.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.24" + "78.157.194.147" ] }, { @@ -129213,11 +178950,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2082, - "hostname": "uk2082.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2523, + "hostname": "uk2523.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.24" + "78.157.194.147" ] }, { @@ -129225,12 +178966,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2083, - "hostname": "uk2083.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2524, + "hostname": "uk2524.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.27" + "78.157.194.227" ] }, { @@ -129238,11 +178983,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2083, - "hostname": "uk2083.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2524, + "hostname": "uk2524.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.27" + "78.157.194.227" ] }, { @@ -129250,12 +178999,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2084, - "hostname": "uk2084.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2525, + "hostname": "uk2525.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.30" + "78.157.200.195" ] }, { @@ -129263,11 +179016,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2084, - "hostname": "uk2084.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2525, + "hostname": "uk2525.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.30" + "78.157.200.195" ] }, { @@ -129275,12 +179032,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2085, - "hostname": "uk2085.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2526, + "hostname": "uk2526.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.33" + "78.157.200.83" ] }, { @@ -129288,11 +179049,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2085, - "hostname": "uk2085.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2526, + "hostname": "uk2526.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.33" + "78.157.200.83" ] }, { @@ -129300,12 +179065,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2086, - "hostname": "uk2086.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2527, + "hostname": "uk2527.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.36" + "78.157.209.147" ] }, { @@ -129313,11 +179082,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2086, - "hostname": "uk2086.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2527, + "hostname": "uk2527.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.36" + "78.157.209.147" ] }, { @@ -129325,12 +179098,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2087, - "hostname": "uk2087.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2528, + "hostname": "uk2528.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.39" + "77.75.121.99" ] }, { @@ -129338,11 +179115,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2087, - "hostname": "uk2087.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2528, + "hostname": "uk2528.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.39" + "77.75.121.99" ] }, { @@ -129350,12 +179131,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2088, - "hostname": "uk2088.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2529, + "hostname": "uk2529.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.42" + "94.46.222.67" ] }, { @@ -129363,11 +179148,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2088, - "hostname": "uk2088.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2529, + "hostname": "uk2529.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.42" + "94.46.222.67" ] }, { @@ -129375,12 +179164,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2089, - "hostname": "uk2089.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2531, + "hostname": "uk2531.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.45" + "185.17.27.131" ] }, { @@ -129388,11 +179181,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2089, - "hostname": "uk2089.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2531, + "hostname": "uk2531.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.45" + "185.17.27.131" ] }, { @@ -129400,12 +179197,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2090, - "hostname": "uk2090.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2532, + "hostname": "uk2532.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.48" + "37.9.56.115" ] }, { @@ -129413,11 +179214,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2090, - "hostname": "uk2090.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2532, + "hostname": "uk2532.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.48" + "37.9.56.115" ] }, { @@ -129425,12 +179230,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2091, - "hostname": "uk2091.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2533, + "hostname": "uk2533.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.51" + "37.9.56.131" ] }, { @@ -129438,11 +179247,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2091, - "hostname": "uk2091.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2533, + "hostname": "uk2533.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.51" + "37.9.56.131" ] }, { @@ -129450,12 +179263,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2092, - "hostname": "uk2092.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2535, + "hostname": "uk2535.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.54" + "78.157.209.83" ] }, { @@ -129463,11 +179280,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2092, - "hostname": "uk2092.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2535, + "hostname": "uk2535.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.54" + "78.157.209.83" ] }, { @@ -129475,12 +179296,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2093, - "hostname": "uk2093.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2536, + "hostname": "uk2536.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.57" + "78.157.209.99" ] }, { @@ -129488,11 +179313,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2093, - "hostname": "uk2093.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2536, + "hostname": "uk2536.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.57" + "78.157.209.99" ] }, { @@ -129500,12 +179329,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2094, - "hostname": "uk2094.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2537, + "hostname": "uk2537.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.60" + "77.75.121.147" ] }, { @@ -129513,11 +179346,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2094, - "hostname": "uk2094.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2537, + "hostname": "uk2537.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.60" + "77.75.121.147" ] }, { @@ -129525,12 +179362,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2095, - "hostname": "uk2095.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2538, + "hostname": "uk2538.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.63" + "78.157.221.51" ] }, { @@ -129538,11 +179379,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2095, - "hostname": "uk2095.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2538, + "hostname": "uk2538.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.63" + "78.157.221.51" ] }, { @@ -129550,12 +179395,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2096, - "hostname": "uk2096.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2540, + "hostname": "uk2540.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.66" + "78.110.166.162" ] }, { @@ -129563,11 +179412,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2096, - "hostname": "uk2096.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2540, + "hostname": "uk2540.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.66" + "78.110.166.162" ] }, { @@ -129575,12 +179428,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2097, - "hostname": "uk2097.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2541, + "hostname": "uk2541.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.69" + "185.169.235.7" ] }, { @@ -129588,11 +179445,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2097, - "hostname": "uk2097.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2541, + "hostname": "uk2541.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.69" + "185.169.235.7" ] }, { @@ -129600,12 +179461,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2098, - "hostname": "uk2098.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2542, + "hostname": "uk2542.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.72" + "185.169.235.20" ] }, { @@ -129613,11 +179478,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2098, - "hostname": "uk2098.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2542, + "hostname": "uk2542.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.72" + "185.169.235.20" ] }, { @@ -129625,12 +179494,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2100, - "hostname": "uk2100.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2543, + "hostname": "uk2543.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.59.221.110" + "185.169.235.33" ] }, { @@ -129638,11 +179511,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2100, - "hostname": "uk2100.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2543, + "hostname": "uk2543.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.59.221.110" + "185.169.235.33" ] }, { @@ -129650,12 +179527,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2101, - "hostname": "uk2101.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2544, + "hostname": "uk2544.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.59.221.81" + "185.169.235.46" ] }, { @@ -129663,11 +179544,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2101, - "hostname": "uk2101.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2544, + "hostname": "uk2544.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "185.59.221.81" + "185.169.235.46" ] }, { @@ -129675,12 +179560,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2102, - "hostname": "uk2102.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2545, + "hostname": "uk2545.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.110" + "185.169.235.59" ] }, { @@ -129688,11 +179577,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2102, - "hostname": "uk2102.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2545, + "hostname": "uk2545.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.110" + "185.169.235.59" ] }, { @@ -129700,12 +179593,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2103, - "hostname": "uk2103.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2546, + "hostname": "uk2546.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.106" + "185.169.235.72" ] }, { @@ -129713,11 +179610,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2103, - "hostname": "uk2103.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2546, + "hostname": "uk2546.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.106" + "185.169.235.72" ] }, { @@ -129725,12 +179626,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2104, - "hostname": "uk2104.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2547, + "hostname": "uk2547.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.102" + "185.169.235.85" ] }, { @@ -129738,11 +179643,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2104, - "hostname": "uk2104.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2547, + "hostname": "uk2547.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.102" + "185.169.235.85" ] }, { @@ -129750,12 +179659,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2105, - "hostname": "uk2105.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2548, + "hostname": "uk2548.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.98" + "185.169.235.98" ] }, { @@ -129763,11 +179676,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2105, - "hostname": "uk2105.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2548, + "hostname": "uk2548.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.98" + "185.169.235.98" ] }, { @@ -129775,12 +179692,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2106, - "hostname": "uk2106.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2549, + "hostname": "uk2549.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.94" + "185.169.235.111" ] }, { @@ -129788,11 +179709,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2106, - "hostname": "uk2106.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2549, + "hostname": "uk2549.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.94" + "185.169.235.111" ] }, { @@ -129800,12 +179725,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2107, - "hostname": "uk2107.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2551, + "hostname": "uk2551.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.90" + "77.74.192.227" ] }, { @@ -129813,11 +179742,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2107, - "hostname": "uk2107.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2551, + "hostname": "uk2551.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.90" + "77.74.192.227" ] }, { @@ -129825,12 +179758,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2108, - "hostname": "uk2108.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2552, + "hostname": "uk2552.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.86" + "138.199.63.230" ] }, { @@ -129838,11 +179775,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2108, - "hostname": "uk2108.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2552, + "hostname": "uk2552.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.86" + "138.199.63.230" ] }, { @@ -129850,12 +179791,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2109, - "hostname": "uk2109.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2553, + "hostname": "uk2553.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.82" + "138.199.63.232" ] }, { @@ -129863,11 +179808,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2109, - "hostname": "uk2109.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2553, + "hostname": "uk2553.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.82" + "138.199.63.232" ] }, { @@ -129875,12 +179824,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2110, - "hostname": "uk2110.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2554, + "hostname": "uk2554.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.34.98.78" + "138.199.63.234" ] }, { @@ -129888,11 +179841,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2110, - "hostname": "uk2110.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2554, + "hostname": "uk2554.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "89.34.98.78" + "138.199.63.234" ] }, { @@ -129900,12 +179857,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2111, - "hostname": "uk2111.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2555, + "hostname": "uk2555.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.104" + "138.199.63.236" ] }, { @@ -129913,11 +179874,15 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2111, - "hostname": "uk2111.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2555, + "hostname": "uk2555.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.104" + "138.199.63.236" ] }, { @@ -129925,12 +179890,16 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2112, - "hostname": "uk2112.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2556, + "hostname": "uk2556.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.107" + "195.140.213.47" ] }, { @@ -129938,11505 +179907,15192 @@ "country": "United Kingdom", "region": "Europe", "city": "London", - "number": 2112, - "hostname": "uk2112.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2556, + "hostname": "uk2556.nordvpn.com", "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", "ips": [ - "194.35.233.107" + "195.140.213.47" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2113, - "hostname": "uk2113.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "uk1689.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.110" + "152.89.207.2" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2113, - "hostname": "uk2113.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1689, + "hostname": "uk1689.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.110" + "152.89.207.2" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2114, - "hostname": "uk2114.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1690, + "hostname": "uk1690.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.113" + "152.89.207.4" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2114, - "hostname": "uk2114.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1690, + "hostname": "uk1690.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.113" + "152.89.207.4" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2115, - "hostname": "uk2115.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1691, + "hostname": "uk1691.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.116" + "152.89.207.6" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2115, - "hostname": "uk2115.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1691, + "hostname": "uk1691.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.116" + "152.89.207.6" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2116, - "hostname": "uk2116.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1692, + "hostname": "uk1692.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.119" + "152.89.207.8" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2116, - "hostname": "uk2116.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1692, + "hostname": "uk1692.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.119" + "152.89.207.8" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2117, - "hostname": "uk2117.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1693, + "hostname": "uk1693.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.122" + "152.89.207.10" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2117, - "hostname": "uk2117.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1693, + "hostname": "uk1693.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.122" + "152.89.207.10" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2118, - "hostname": "uk2118.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1694, + "hostname": "uk1694.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.125" + "152.89.207.12" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2118, - "hostname": "uk2118.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1694, + "hostname": "uk1694.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.125" + "152.89.207.12" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2119, - "hostname": "uk2119.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1695, + "hostname": "uk1695.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.128" + "152.89.207.14" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2119, - "hostname": "uk2119.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1695, + "hostname": "uk1695.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.128" + "152.89.207.14" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2120, - "hostname": "uk2120.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1696, + "hostname": "uk1696.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.131" + "152.89.207.16" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2120, - "hostname": "uk2120.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1696, + "hostname": "uk1696.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.131" + "152.89.207.16" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2121, - "hostname": "uk2121.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1697, + "hostname": "uk1697.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.134" + "152.89.207.18" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2121, - "hostname": "uk2121.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1697, + "hostname": "uk1697.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.134" + "152.89.207.18" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2122, - "hostname": "uk2122.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1698, + "hostname": "uk1698.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.137" + "152.89.207.20" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2122, - "hostname": "uk2122.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1698, + "hostname": "uk1698.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.137" + "152.89.207.20" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2123, - "hostname": "uk2123.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1699, + "hostname": "uk1699.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.140" + "152.89.207.22" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2123, - "hostname": "uk2123.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1699, + "hostname": "uk1699.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.140" + "152.89.207.22" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2124, - "hostname": "uk2124.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1700, + "hostname": "uk1700.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.143" + "152.89.207.24" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2124, - "hostname": "uk2124.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1700, + "hostname": "uk1700.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.143" + "152.89.207.24" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2142, - "hostname": "uk2142.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1701, + "hostname": "uk1701.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.148" + "152.89.207.26" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2142, - "hostname": "uk2142.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1701, + "hostname": "uk1701.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.148" + "152.89.207.26" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2143, - "hostname": "uk2143.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1702, + "hostname": "uk1702.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.151" + "152.89.207.28" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2143, - "hostname": "uk2143.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1702, + "hostname": "uk1702.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.151" + "152.89.207.28" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2144, - "hostname": "uk2144.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1703, + "hostname": "uk1703.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.154" + "152.89.207.30" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2144, - "hostname": "uk2144.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1703, + "hostname": "uk1703.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.154" + "152.89.207.30" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2145, - "hostname": "uk2145.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1704, + "hostname": "uk1704.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.157" + "152.89.207.32" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2145, - "hostname": "uk2145.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1704, + "hostname": "uk1704.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.157" + "152.89.207.32" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2146, - "hostname": "uk2146.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1705, + "hostname": "uk1705.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.160" + "152.89.207.34" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2146, - "hostname": "uk2146.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1705, + "hostname": "uk1705.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.160" + "152.89.207.34" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2147, - "hostname": "uk2147.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1706, + "hostname": "uk1706.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.163" + "152.89.207.36" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2147, - "hostname": "uk2147.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1706, + "hostname": "uk1706.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.163" + "152.89.207.36" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2148, - "hostname": "uk2148.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1707, + "hostname": "uk1707.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.166" + "152.89.207.38" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2148, - "hostname": "uk2148.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1707, + "hostname": "uk1707.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.166" + "152.89.207.38" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2149, - "hostname": "uk2149.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1716, + "hostname": "uk1716.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.169" + "152.89.207.40" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2149, - "hostname": "uk2149.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1716, + "hostname": "uk1716.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.169" + "152.89.207.40" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2150, - "hostname": "uk2150.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2384, + "hostname": "uk2384.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.161.91" + "103.214.45.2" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2150, - "hostname": "uk2150.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2384, + "hostname": "uk2384.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.161.91" + "103.214.45.2" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2151, - "hostname": "uk2151.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2385, + "hostname": "uk2385.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.161.87" + "103.214.45.12" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2151, - "hostname": "uk2151.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2385, + "hostname": "uk2385.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.161.87" + "103.214.45.12" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2152, - "hostname": "uk2152.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2386, + "hostname": "uk2386.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.161.83" + "103.214.45.22" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2152, - "hostname": "uk2152.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2386, + "hostname": "uk2386.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.161.83" + "103.214.45.22" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2153, - "hostname": "uk2153.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2387, + "hostname": "uk2387.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.161.75" + "103.214.45.32" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2153, - "hostname": "uk2153.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2387, + "hostname": "uk2387.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.161.75" + "103.214.45.32" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2154, - "hostname": "uk2154.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2388, + "hostname": "uk2388.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.161.79" + "103.214.45.42" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2154, - "hostname": "uk2154.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2388, + "hostname": "uk2388.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.161.79" + "103.214.45.42" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2160, - "hostname": "uk2160.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2389, + "hostname": "uk2389.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.172" + "103.214.45.52" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2160, - "hostname": "uk2160.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2389, + "hostname": "uk2389.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.172" + "103.214.45.52" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2161, - "hostname": "uk2161.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2390, + "hostname": "uk2390.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.175" + "103.214.45.62" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2161, - "hostname": "uk2161.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2390, + "hostname": "uk2390.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.175" + "103.214.45.62" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2162, - "hostname": "uk2162.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2391, + "hostname": "uk2391.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.178" + "103.214.45.72" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2162, - "hostname": "uk2162.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2391, + "hostname": "uk2391.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.178" + "103.214.45.72" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2163, - "hostname": "uk2163.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2392, + "hostname": "uk2392.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.181" + "103.214.45.82" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2163, - "hostname": "uk2163.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2392, + "hostname": "uk2392.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.181" + "103.214.45.82" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2164, - "hostname": "uk2164.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2393, + "hostname": "uk2393.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.184" + "103.214.45.92" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2164, - "hostname": "uk2164.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2393, + "hostname": "uk2393.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.184" + "103.214.45.92" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2165, - "hostname": "uk2165.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2394, + "hostname": "uk2394.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.187" + "103.214.45.102" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2165, - "hostname": "uk2165.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2394, + "hostname": "uk2394.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.187" + "103.214.45.102" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2166, - "hostname": "uk2166.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2395, + "hostname": "uk2395.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.190" + "103.214.45.112" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2166, - "hostname": "uk2166.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2395, + "hostname": "uk2395.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.190" + "103.214.45.112" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2167, - "hostname": "uk2167.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2396, + "hostname": "uk2396.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.193" + "103.214.45.122" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2167, - "hostname": "uk2167.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2396, + "hostname": "uk2396.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.193" + "103.214.45.122" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2168, - "hostname": "uk2168.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2397, + "hostname": "uk2397.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.233.196" + "103.214.45.132" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2168, - "hostname": "uk2168.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2397, + "hostname": "uk2397.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "194.35.233.196" + "103.214.45.132" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2169, - "hostname": "uk2169.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2398, + "hostname": "uk2398.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "81.92.203.47" + "103.214.45.142" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2169, - "hostname": "uk2169.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2398, + "hostname": "uk2398.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "81.92.203.47" + "103.214.45.142" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2183, - "hostname": "uk2183.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2399, + "hostname": "uk2399.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.243.177.37" + "103.214.45.152" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2183, - "hostname": "uk2183.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2399, + "hostname": "uk2399.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "77.243.177.37" + "103.214.45.152" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2184, - "hostname": "uk2184.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2400, + "hostname": "uk2400.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.243.177.53" + "103.214.45.162" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2184, - "hostname": "uk2184.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2400, + "hostname": "uk2400.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "77.243.177.53" + "103.214.45.162" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2185, - "hostname": "uk2185.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2401, + "hostname": "uk2401.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.243.177.117" + "103.214.45.172" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2185, - "hostname": "uk2185.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2401, + "hostname": "uk2401.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "77.243.177.117" + "103.214.45.172" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2186, - "hostname": "uk2186.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2402, + "hostname": "uk2402.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.238.150.149" + "103.214.45.182" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2186, - "hostname": "uk2186.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2402, + "hostname": "uk2402.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "89.238.150.149" + "103.214.45.182" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2193, - "hostname": "uk2193.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2403, + "hostname": "uk2403.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.162" + "103.214.45.192" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2193, - "hostname": "uk2193.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2403, + "hostname": "uk2403.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.162" + "103.214.45.192" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2194, - "hostname": "uk2194.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2404, + "hostname": "uk2404.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.164" + "103.214.45.202" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2194, - "hostname": "uk2194.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2404, + "hostname": "uk2404.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.164" + "103.214.45.202" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2195, - "hostname": "uk2195.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2405, + "hostname": "uk2405.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.166" + "103.214.45.212" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2195, - "hostname": "uk2195.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2405, + "hostname": "uk2405.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.166" + "103.214.45.212" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2196, - "hostname": "uk2196.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2406, + "hostname": "uk2406.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.168" + "103.214.45.222" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2196, - "hostname": "uk2196.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2406, + "hostname": "uk2406.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.168" + "103.214.45.222" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2197, - "hostname": "uk2197.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2407, + "hostname": "uk2407.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.170" + "103.214.45.233" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2197, - "hostname": "uk2197.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2407, + "hostname": "uk2407.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.170" + "103.214.45.233" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2198, - "hostname": "uk2198.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2408, + "hostname": "uk2408.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.172" + "103.214.45.244" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2198, - "hostname": "uk2198.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2408, + "hostname": "uk2408.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.172" + "103.214.45.244" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2199, - "hostname": "uk2199.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2409, + "hostname": "uk2409.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.174" + "103.219.20.2" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2199, - "hostname": "uk2199.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2409, + "hostname": "uk2409.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.174" + "103.219.20.2" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2200, - "hostname": "uk2200.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2410, + "hostname": "uk2410.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.176" + "103.219.20.13" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2200, - "hostname": "uk2200.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2410, + "hostname": "uk2410.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.176" + "103.219.20.13" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2201, - "hostname": "uk2201.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2411, + "hostname": "uk2411.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.178" + "103.219.20.24" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2201, - "hostname": "uk2201.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2411, + "hostname": "uk2411.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.178" + "103.219.20.24" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2202, - "hostname": "uk2202.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2412, + "hostname": "uk2412.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.180" + "103.219.20.35" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2202, - "hostname": "uk2202.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2412, + "hostname": "uk2412.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.180" + "103.219.20.35" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2203, - "hostname": "uk2203.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2413, + "hostname": "uk2413.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.182" + "103.219.20.46" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2203, - "hostname": "uk2203.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2413, + "hostname": "uk2413.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.182" + "103.219.20.46" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2204, - "hostname": "uk2204.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2414, + "hostname": "uk2414.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.3.184" + "103.219.20.57" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2204, - "hostname": "uk2204.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2414, + "hostname": "uk2414.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.159.3.184" + "103.219.20.57" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2205, - "hostname": "uk2205.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2415, + "hostname": "uk2415.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.98" + "103.219.20.68" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2205, - "hostname": "uk2205.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2415, + "hostname": "uk2415.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.98" + "103.219.20.68" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2206, - "hostname": "uk2206.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2416, + "hostname": "uk2416.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.100" + "103.219.20.79" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2206, - "hostname": "uk2206.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2416, + "hostname": "uk2416.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.100" + "103.219.20.79" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2207, - "hostname": "uk2207.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2417, + "hostname": "uk2417.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.102" + "103.219.20.90" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2207, - "hostname": "uk2207.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2417, + "hostname": "uk2417.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.102" + "103.219.20.90" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2208, - "hostname": "uk2208.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2418, + "hostname": "uk2418.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.104" + "103.219.20.101" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2208, - "hostname": "uk2208.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2418, + "hostname": "uk2418.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.104" + "103.219.20.101" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2209, - "hostname": "uk2209.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2419, + "hostname": "uk2419.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.106" + "103.219.20.112" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2209, - "hostname": "uk2209.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2419, + "hostname": "uk2419.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.106" + "103.219.20.112" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2210, - "hostname": "uk2210.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2420, + "hostname": "uk2420.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.108" + "103.219.20.123" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2210, - "hostname": "uk2210.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2420, + "hostname": "uk2420.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.108" + "103.219.20.123" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2211, - "hostname": "uk2211.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2421, + "hostname": "uk2421.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.110" + "103.219.20.134" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2211, - "hostname": "uk2211.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2421, + "hostname": "uk2421.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.110" + "103.219.20.134" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2212, - "hostname": "uk2212.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2422, + "hostname": "uk2422.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.112" + "103.219.20.145" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2212, - "hostname": "uk2212.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2422, + "hostname": "uk2422.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.112" + "103.219.20.145" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2213, - "hostname": "uk2213.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2423, + "hostname": "uk2423.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.114" + "103.219.20.156" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2213, - "hostname": "uk2213.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2423, + "hostname": "uk2423.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.114" + "103.219.20.156" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2214, - "hostname": "uk2214.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2424, + "hostname": "uk2424.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.116" + "103.219.20.167" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2214, - "hostname": "uk2214.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2424, + "hostname": "uk2424.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.116" + "103.219.20.167" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2216, - "hostname": "uk2216.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2425, + "hostname": "uk2425.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.120" + "103.219.20.178" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2216, - "hostname": "uk2216.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2425, + "hostname": "uk2425.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "185.17.27.120" + "103.219.20.178" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2218, - "hostname": "uk2218.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2426, + "hostname": "uk2426.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.251" + "103.219.20.189" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2218, - "hostname": "uk2218.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2426, + "hostname": "uk2426.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.251" + "103.219.20.189" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2219, - "hostname": "uk2219.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2427, + "hostname": "uk2427.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.247" + "103.219.20.200" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2219, - "hostname": "uk2219.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2427, + "hostname": "uk2427.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.247" + "103.219.20.200" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2220, - "hostname": "uk2220.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2428, + "hostname": "uk2428.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.243" + "103.219.20.211" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2220, - "hostname": "uk2220.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2428, + "hostname": "uk2428.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.243" + "103.219.20.211" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2221, - "hostname": "uk2221.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2429, + "hostname": "uk2429.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.239" + "103.219.20.222" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2221, - "hostname": "uk2221.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2429, + "hostname": "uk2429.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.239" + "103.219.20.222" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2222, - "hostname": "uk2222.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2430, + "hostname": "uk2430.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.235" + "103.219.20.233" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2222, - "hostname": "uk2222.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2430, + "hostname": "uk2430.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.235" + "103.219.20.233" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2223, - "hostname": "uk2223.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2431, + "hostname": "uk2431.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.231" + "103.219.20.244" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2223, - "hostname": "uk2223.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2431, + "hostname": "uk2431.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.231" + "103.219.20.244" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2224, - "hostname": "uk2224.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2507, + "hostname": "uk2507.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.227" + "152.89.207.130" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2224, - "hostname": "uk2224.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2507, + "hostname": "uk2507.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.227" + "152.89.207.130" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2225, - "hostname": "uk2225.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2508, + "hostname": "uk2508.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.223" + "152.89.207.132" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2225, - "hostname": "uk2225.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2508, + "hostname": "uk2508.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.223" + "152.89.207.132" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2226, - "hostname": "uk2226.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2509, + "hostname": "uk2509.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.219" + "152.89.207.134" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2226, - "hostname": "uk2226.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2509, + "hostname": "uk2509.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.219" + "152.89.207.134" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2227, - "hostname": "uk2227.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2510, + "hostname": "uk2510.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.215" + "152.89.207.136" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2227, - "hostname": "uk2227.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2510, + "hostname": "uk2510.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.215" + "152.89.207.136" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2228, - "hostname": "uk2228.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2511, + "hostname": "uk2511.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.211" + "152.89.207.138" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2228, - "hostname": "uk2228.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2511, + "hostname": "uk2511.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.211" + "152.89.207.138" ] }, { "vpn": "openvpn", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2229, - "hostname": "uk2229.nordvpn.com", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2512, + "hostname": "uk2512.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.207" + "152.89.207.140" ] }, { "vpn": "wireguard", "country": "United Kingdom", "region": "Europe", - "city": "London", - "number": 2229, - "hostname": "uk2229.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "Manchester", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2512, + "hostname": "uk2512.nordvpn.com", + "wgpubkey": "iX4TVS9HY+WrlTvSKaUqWmoxG6s6cwnmcEtblHf46BU=", "ips": [ - "178.239.162.207" + "152.89.207.140" ] }, { "vpn": "openvpn", - "country": "United Kingdom", + "country": "United States", "region": "Europe", - "city": "London", - "number": 2230, - "hostname": "uk2230.nordvpn.com", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10562, + "hostname": "us10562.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.203" + "138.199.11.150" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", + "vpn": "openvpn", + "country": "United States", "region": "Europe", - "city": "London", - "number": 2230, - "hostname": "uk2230.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "city": "New York", + "categories": [ + "Dedicated IP" + ], + "number": 10563, + "hostname": "us10563.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "178.239.162.203" + "138.199.11.152" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2231, - "hostname": "uk2231.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5109, + "hostname": "us5109.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.199" + "185.93.0.98" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2231, - "hostname": "uk2231.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5109, + "hostname": "us5109.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.199" + "185.93.0.98" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2232, - "hostname": "uk2232.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5110, + "hostname": "us5110.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.195" + "185.93.0.108" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2232, - "hostname": "uk2232.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5110, + "hostname": "us5110.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.195" + "185.93.0.108" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2233, - "hostname": "uk2233.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5111, + "hostname": "us5111.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.191" + "185.93.0.103" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2233, - "hostname": "uk2233.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5111, + "hostname": "us5111.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.191" + "185.93.0.103" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2234, - "hostname": "uk2234.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5112, + "hostname": "us5112.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.187" + "89.187.171.106" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2234, - "hostname": "uk2234.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5112, + "hostname": "us5112.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.187" + "89.187.171.106" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2235, - "hostname": "uk2235.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5113, + "hostname": "us5113.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.183" + "89.187.171.101" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2235, - "hostname": "uk2235.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5113, + "hostname": "us5113.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.183" + "89.187.171.101" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2236, - "hostname": "uk2236.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6694, + "hostname": "us6694.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.179" + "89.187.171.76" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2236, - "hostname": "uk2236.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6694, + "hostname": "us6694.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.179" + "89.187.171.76" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2237, - "hostname": "uk2237.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6695, + "hostname": "us6695.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.175" + "89.187.171.96" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2237, - "hostname": "uk2237.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6695, + "hostname": "us6695.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.175" + "89.187.171.96" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2238, - "hostname": "uk2238.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6696, + "hostname": "us6696.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.171" + "89.187.171.91" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2238, - "hostname": "uk2238.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6696, + "hostname": "us6696.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.171" + "89.187.171.91" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2239, - "hostname": "uk2239.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6697, + "hostname": "us6697.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.167" + "89.187.171.86" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2239, - "hostname": "uk2239.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6697, + "hostname": "us6697.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.167" + "89.187.171.86" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2240, - "hostname": "uk2240.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6698, + "hostname": "us6698.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "89.187.171.81" + ] + }, + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6698, + "hostname": "us6698.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "ips": [ + "89.187.171.81" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6699, + "hostname": "us6699.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.163" + "89.187.171.71" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2240, - "hostname": "uk2240.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6699, + "hostname": "us6699.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.163" + "89.187.171.71" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2241, - "hostname": "uk2241.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8028, + "hostname": "us8028.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.239.162.160" + "92.119.17.3" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2241, - "hostname": "uk2241.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8028, + "hostname": "us8028.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.239.162.160" + "92.119.17.3" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2242, - "hostname": "uk2242.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8029, + "hostname": "us8029.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.231" + "92.119.17.6" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2242, - "hostname": "uk2242.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8029, + "hostname": "us8029.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.231" + "92.119.17.6" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2243, - "hostname": "uk2243.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8030, + "hostname": "us8030.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.251" + "92.119.17.9" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2243, - "hostname": "uk2243.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8030, + "hostname": "us8030.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.251" + "92.119.17.9" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2244, - "hostname": "uk2244.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8031, + "hostname": "us8031.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.247" + "92.119.17.12" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2244, - "hostname": "uk2244.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8031, + "hostname": "us8031.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.247" + "92.119.17.12" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2245, - "hostname": "uk2245.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8032, + "hostname": "us8032.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.243" + "92.119.17.15" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2245, - "hostname": "uk2245.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8032, + "hostname": "us8032.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.243" + "92.119.17.15" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2246, - "hostname": "uk2246.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8033, + "hostname": "us8033.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.239" + "92.119.17.18" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2246, - "hostname": "uk2246.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8033, + "hostname": "us8033.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.239" + "92.119.17.18" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2247, - "hostname": "uk2247.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8034, + "hostname": "us8034.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.235" + "92.119.17.21" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2247, - "hostname": "uk2247.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8034, + "hostname": "us8034.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.235" + "92.119.17.21" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2248, - "hostname": "uk2248.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8035, + "hostname": "us8035.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.222" + "92.119.17.24" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2248, - "hostname": "uk2248.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8035, + "hostname": "us8035.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.222" + "92.119.17.24" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2249, - "hostname": "uk2249.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8036, + "hostname": "us8036.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.214" + "92.119.17.27" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2249, - "hostname": "uk2249.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8036, + "hostname": "us8036.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.214" + "92.119.17.27" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2250, - "hostname": "uk2250.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8037, + "hostname": "us8037.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.218" + "92.119.17.30" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2250, - "hostname": "uk2250.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8037, + "hostname": "us8037.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.218" + "92.119.17.30" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2251, - "hostname": "uk2251.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8038, + "hostname": "us8038.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.226" + "92.119.17.33" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2251, - "hostname": "uk2251.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8038, + "hostname": "us8038.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.226" + "92.119.17.33" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2252, - "hostname": "uk2252.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8039, + "hostname": "us8039.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.210" + "92.119.17.36" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2252, - "hostname": "uk2252.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8039, + "hostname": "us8039.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.210" + "92.119.17.36" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2253, - "hostname": "uk2253.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8040, + "hostname": "us8040.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.206" + "92.119.17.39" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2253, - "hostname": "uk2253.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8040, + "hostname": "us8040.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.206" + "92.119.17.39" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2254, - "hostname": "uk2254.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8041, + "hostname": "us8041.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.202" + "92.119.17.42" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2254, - "hostname": "uk2254.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8041, + "hostname": "us8041.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.202" + "92.119.17.42" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2255, - "hostname": "uk2255.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8042, + "hostname": "us8042.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.198" + "92.119.17.45" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2255, - "hostname": "uk2255.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8042, + "hostname": "us8042.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.198" + "92.119.17.45" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2256, - "hostname": "uk2256.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8043, + "hostname": "us8043.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.194" + "92.119.17.48" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2256, - "hostname": "uk2256.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8043, + "hostname": "us8043.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.194" + "92.119.17.48" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2257, - "hostname": "uk2257.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8044, + "hostname": "us8044.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.190" + "92.119.17.51" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2257, - "hostname": "uk2257.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8044, + "hostname": "us8044.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.190" + "92.119.17.51" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2258, - "hostname": "uk2258.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8045, + "hostname": "us8045.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.186" + "92.119.17.54" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2258, - "hostname": "uk2258.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8045, + "hostname": "us8045.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.186" + "92.119.17.54" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2259, - "hostname": "uk2259.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8046, + "hostname": "us8046.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.182" + "92.119.17.57" ] }, - { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2259, - "hostname": "uk2259.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8046, + "hostname": "us8046.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.182" + "92.119.17.57" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2260, - "hostname": "uk2260.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8047, + "hostname": "us8047.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.178" + "92.119.17.60" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2260, - "hostname": "uk2260.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8047, + "hostname": "us8047.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.178" + "92.119.17.60" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2261, - "hostname": "uk2261.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8048, + "hostname": "us8048.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.174" + "92.119.17.63" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2261, - "hostname": "uk2261.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8048, + "hostname": "us8048.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.174" + "92.119.17.63" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2262, - "hostname": "uk2262.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8049, + "hostname": "us8049.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.170" + "92.119.17.66" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2262, - "hostname": "uk2262.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8049, + "hostname": "us8049.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.170" + "92.119.17.66" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2263, - "hostname": "uk2263.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8050, + "hostname": "us8050.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.166" + "92.119.17.69" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2263, - "hostname": "uk2263.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8050, + "hostname": "us8050.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.166" + "92.119.17.69" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2264, - "hostname": "uk2264.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8051, + "hostname": "us8051.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.162" + "92.119.17.72" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2264, - "hostname": "uk2264.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8051, + "hostname": "us8051.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.162" + "92.119.17.72" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2265, - "hostname": "uk2265.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8052, + "hostname": "us8052.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.158" + "92.119.17.75" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2265, - "hostname": "uk2265.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8052, + "hostname": "us8052.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.158" + "92.119.17.75" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2266, - "hostname": "uk2266.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8053, + "hostname": "us8053.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.154" + "92.119.17.78" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2266, - "hostname": "uk2266.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8053, + "hostname": "us8053.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.154" + "92.119.17.78" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2267, - "hostname": "uk2267.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8054, + "hostname": "us8054.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.146.92.150" + "92.119.17.81" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2267, - "hostname": "uk2267.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8054, + "hostname": "us8054.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "217.146.92.150" + "92.119.17.81" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2268, - "hostname": "uk2268.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8055, + "hostname": "us8055.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.226.142.3" + "92.119.17.84" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2268, - "hostname": "uk2268.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8055, + "hostname": "us8055.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "5.226.142.3" + "92.119.17.84" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2269, - "hostname": "uk2269.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8056, + "hostname": "us8056.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.251" + "92.119.17.87" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2269, - "hostname": "uk2269.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8056, + "hostname": "us8056.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.251" + "92.119.17.87" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2270, - "hostname": "uk2270.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8057, + "hostname": "us8057.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.247" + "92.119.17.90" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2270, - "hostname": "uk2270.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8057, + "hostname": "us8057.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.247" + "92.119.17.90" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2271, - "hostname": "uk2271.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8192, + "hostname": "us8192.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.243" + "185.93.0.116" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2271, - "hostname": "uk2271.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8192, + "hostname": "us8192.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.243" + "185.93.0.116" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2272, - "hostname": "uk2272.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8193, + "hostname": "us8193.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.239" + "185.93.0.119" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2272, - "hostname": "uk2272.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8193, + "hostname": "us8193.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.239" + "185.93.0.119" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2273, - "hostname": "uk2273.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8194, + "hostname": "us8194.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.235" + "185.93.0.113" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2273, - "hostname": "uk2273.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8194, + "hostname": "us8194.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.235" + "185.93.0.113" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2274, - "hostname": "uk2274.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8195, + "hostname": "us8195.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.231" + "92.119.17.93" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2274, - "hostname": "uk2274.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8195, + "hostname": "us8195.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.231" + "92.119.17.93" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2275, - "hostname": "uk2275.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8196, + "hostname": "us8196.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.227" + "92.119.17.96" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2275, - "hostname": "uk2275.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8196, + "hostname": "us8196.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.227" + "92.119.17.96" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2276, - "hostname": "uk2276.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8197, + "hostname": "us8197.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.223" + "92.119.17.99" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2276, - "hostname": "uk2276.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8197, + "hostname": "us8197.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.223" + "92.119.17.99" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2277, - "hostname": "uk2277.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8198, + "hostname": "us8198.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.219" + "92.119.17.102" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2277, - "hostname": "uk2277.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8198, + "hostname": "us8198.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.219" + "92.119.17.102" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2278, - "hostname": "uk2278.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8199, + "hostname": "us8199.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.215" + "92.119.17.105" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2278, - "hostname": "uk2278.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8199, + "hostname": "us8199.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.215" + "92.119.17.105" ] - }, - { - "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2279, - "hostname": "uk2279.nordvpn.com", + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8200, + "hostname": "us8200.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.211" + "92.119.17.108" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2279, - "hostname": "uk2279.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8200, + "hostname": "us8200.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.211" + "92.119.17.108" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2280, - "hostname": "uk2280.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8201, + "hostname": "us8201.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.207" + "92.119.17.111" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2280, - "hostname": "uk2280.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8201, + "hostname": "us8201.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.207" + "92.119.17.111" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2281, - "hostname": "uk2281.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8202, + "hostname": "us8202.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.203" + "92.119.17.114" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2281, - "hostname": "uk2281.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8202, + "hostname": "us8202.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.203" + "92.119.17.114" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2282, - "hostname": "uk2282.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8203, + "hostname": "us8203.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.199" + "92.119.17.117" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2282, - "hostname": "uk2282.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8203, + "hostname": "us8203.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.199" + "92.119.17.117" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2283, - "hostname": "uk2283.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8204, + "hostname": "us8204.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.195" + "92.119.17.120" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2283, - "hostname": "uk2283.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8204, + "hostname": "us8204.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.195" + "92.119.17.120" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2284, - "hostname": "uk2284.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8205, + "hostname": "us8205.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.191" + "92.119.17.123" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2284, - "hostname": "uk2284.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8205, + "hostname": "us8205.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.191" + "92.119.17.123" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2285, - "hostname": "uk2285.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8206, + "hostname": "us8206.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.187" + "92.119.17.126" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2285, - "hostname": "uk2285.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8206, + "hostname": "us8206.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.187" + "92.119.17.126" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2286, - "hostname": "uk2286.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8207, + "hostname": "us8207.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.183" + "92.119.17.129" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2286, - "hostname": "uk2286.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8207, + "hostname": "us8207.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.183" + "92.119.17.129" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2287, - "hostname": "uk2287.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8208, + "hostname": "us8208.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.35.30.179" + "92.119.17.132" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2287, - "hostname": "uk2287.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8208, + "hostname": "us8208.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "89.35.30.179" + "92.119.17.132" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2288, - "hostname": "uk2288.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8209, + "hostname": "us8209.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.247" + "92.119.17.135" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2288, - "hostname": "uk2288.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8209, + "hostname": "us8209.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.247" + "92.119.17.135" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2289, - "hostname": "uk2289.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8210, + "hostname": "us8210.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.243" + "92.119.17.138" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2289, - "hostname": "uk2289.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8210, + "hostname": "us8210.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.243" + "92.119.17.138" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2290, - "hostname": "uk2290.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8211, + "hostname": "us8211.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.239" + "92.119.17.141" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2290, - "hostname": "uk2290.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8211, + "hostname": "us8211.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.239" + "92.119.17.141" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2291, - "hostname": "uk2291.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8212, + "hostname": "us8212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.235" + "92.119.17.144" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2291, - "hostname": "uk2291.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8212, + "hostname": "us8212.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.235" + "92.119.17.144" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2292, - "hostname": "uk2292.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8213, + "hostname": "us8213.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.231" + "92.119.17.147" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2292, - "hostname": "uk2292.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8213, + "hostname": "us8213.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.231" + "92.119.17.147" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2293, - "hostname": "uk2293.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8214, + "hostname": "us8214.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.227" + "92.119.17.150" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2293, - "hostname": "uk2293.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8214, + "hostname": "us8214.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.227" + "92.119.17.150" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2294, - "hostname": "uk2294.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8215, + "hostname": "us8215.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.223" + "92.119.17.153" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2294, - "hostname": "uk2294.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8215, + "hostname": "us8215.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.223" + "92.119.17.153" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2295, - "hostname": "uk2295.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8216, + "hostname": "us8216.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.219" + "92.119.17.156" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2295, - "hostname": "uk2295.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8216, + "hostname": "us8216.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.219" + "92.119.17.156" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2296, - "hostname": "uk2296.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8217, + "hostname": "us8217.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.195" + "92.119.17.159" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2296, - "hostname": "uk2296.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8217, + "hostname": "us8217.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.195" + "92.119.17.159" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2297, - "hostname": "uk2297.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8218, + "hostname": "us8218.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.215" + "92.119.17.162" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2297, - "hostname": "uk2297.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8218, + "hostname": "us8218.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.215" + "92.119.17.162" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2298, - "hostname": "uk2298.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8219, + "hostname": "us8219.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.211" + "92.119.17.165" ] }, - { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2298, - "hostname": "uk2298.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + { + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8219, + "hostname": "us8219.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.211" + "92.119.17.165" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2299, - "hostname": "uk2299.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8220, + "hostname": "us8220.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.207" + "92.119.17.168" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2299, - "hostname": "uk2299.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8220, + "hostname": "us8220.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.207" + "92.119.17.168" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2300, - "hostname": "uk2300.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8221, + "hostname": "us8221.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.203" + "92.119.17.171" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2300, - "hostname": "uk2300.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8221, + "hostname": "us8221.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.203" + "92.119.17.171" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2301, - "hostname": "uk2301.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8222, + "hostname": "us8222.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.199" + "92.119.17.174" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2301, - "hostname": "uk2301.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8222, + "hostname": "us8222.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.199" + "92.119.17.174" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2302, - "hostname": "uk2302.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8223, + "hostname": "us8223.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.191" + "92.119.17.177" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2302, - "hostname": "uk2302.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8223, + "hostname": "us8223.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.191" + "92.119.17.177" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2303, - "hostname": "uk2303.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8224, + "hostname": "us8224.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.159" + "92.119.17.180" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2303, - "hostname": "uk2303.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8224, + "hostname": "us8224.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.159" + "92.119.17.180" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2304, - "hostname": "uk2304.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8225, + "hostname": "us8225.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.155" + "92.119.17.183" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2304, - "hostname": "uk2304.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8225, + "hostname": "us8225.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.155" + "92.119.17.183" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2305, - "hostname": "uk2305.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8226, + "hostname": "us8226.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.151" + "92.119.17.186" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2305, - "hostname": "uk2305.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8226, + "hostname": "us8226.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.151" + "92.119.17.186" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2306, - "hostname": "uk2306.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9365, + "hostname": "us9365.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.146" + "194.233.98.63" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2306, - "hostname": "uk2306.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9365, + "hostname": "us9365.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.146" + "194.233.98.63" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2307, - "hostname": "uk2307.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9366, + "hostname": "us9366.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.138" + "194.233.98.98" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2307, - "hostname": "uk2307.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9366, + "hostname": "us9366.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.138" + "194.233.98.98" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2328, - "hostname": "uk2328.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9367, + "hostname": "us9367.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.89" + "194.233.98.105" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2328, - "hostname": "uk2328.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9367, + "hostname": "us9367.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.89" + "194.233.98.105" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2329, - "hostname": "uk2329.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9368, + "hostname": "us9368.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.81" + "194.233.98.112" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2329, - "hostname": "uk2329.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9368, + "hostname": "us9368.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.81" + "194.233.98.112" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2330, - "hostname": "uk2330.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9369, + "hostname": "us9369.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.85" + "194.233.98.129" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2330, - "hostname": "uk2330.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9369, + "hostname": "us9369.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.85" + "194.233.98.129" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2331, - "hostname": "uk2331.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9565, + "hostname": "us9565.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.70.150.77" + "92.119.19.130" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2331, - "hostname": "uk2331.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9565, + "hostname": "us9565.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "109.70.150.77" + "92.119.19.130" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2332, - "hostname": "uk2332.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9566, + "hostname": "us9566.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.59.221.251" + "92.119.19.132" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2332, - "hostname": "uk2332.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9566, + "hostname": "us9566.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "185.59.221.251" + "92.119.19.132" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2333, - "hostname": "uk2333.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9567, + "hostname": "us9567.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.63.162" + "92.119.19.134" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2333, - "hostname": "uk2333.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9567, + "hostname": "us9567.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "138.199.63.162" + "92.119.19.134" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2334, - "hostname": "uk2334.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9568, + "hostname": "us9568.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.2" + "92.119.19.136" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2334, - "hostname": "uk2334.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9568, + "hostname": "us9568.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.2" + "92.119.19.136" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2335, - "hostname": "uk2335.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9569, + "hostname": "us9569.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.13" + "92.119.19.138" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2335, - "hostname": "uk2335.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9569, + "hostname": "us9569.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.13" + "92.119.19.138" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2336, - "hostname": "uk2336.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9570, + "hostname": "us9570.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.24" + "92.119.19.140" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2336, - "hostname": "uk2336.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9570, + "hostname": "us9570.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.24" + "92.119.19.140" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2337, - "hostname": "uk2337.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9571, + "hostname": "us9571.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.35" + "92.119.19.142" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2337, - "hostname": "uk2337.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9571, + "hostname": "us9571.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.35" + "92.119.19.142" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2338, - "hostname": "uk2338.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9572, + "hostname": "us9572.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.46" + "92.119.19.144" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2338, - "hostname": "uk2338.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9572, + "hostname": "us9572.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.46" + "92.119.19.144" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2339, - "hostname": "uk2339.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9845, + "hostname": "us9845.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.57" + "156.146.47.129" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2339, - "hostname": "uk2339.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9845, + "hostname": "us9845.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.57" + "156.146.47.129" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2340, - "hostname": "uk2340.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9846, + "hostname": "us9846.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.68" + "156.146.47.131" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2340, - "hostname": "uk2340.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9846, + "hostname": "us9846.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.68" + "156.146.47.131" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2341, - "hostname": "uk2341.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9847, + "hostname": "us9847.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.79" + "156.146.47.133" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2341, - "hostname": "uk2341.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9847, + "hostname": "us9847.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.79" + "156.146.47.133" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2342, - "hostname": "uk2342.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9848, + "hostname": "us9848.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.90" + "156.146.47.135" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2342, - "hostname": "uk2342.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9848, + "hostname": "us9848.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.90" + "156.146.47.135" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2343, - "hostname": "uk2343.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9849, + "hostname": "us9849.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.101" + "156.146.47.137" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2343, - "hostname": "uk2343.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9849, + "hostname": "us9849.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.101" + "156.146.47.137" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2344, - "hostname": "uk2344.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9850, + "hostname": "us9850.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.112" + "156.146.47.139" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2344, - "hostname": "uk2344.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9850, + "hostname": "us9850.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.112" + "156.146.47.139" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2345, - "hostname": "uk2345.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9851, + "hostname": "us9851.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.123" + "156.146.47.141" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2345, - "hostname": "uk2345.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9851, + "hostname": "us9851.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.123" + "156.146.47.141" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2346, - "hostname": "uk2346.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9852, + "hostname": "us9852.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.134" + "156.146.47.143" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2346, - "hostname": "uk2346.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9852, + "hostname": "us9852.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.134" + "156.146.47.143" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2347, - "hostname": "uk2347.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9853, + "hostname": "us9853.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.145" + "156.146.47.145" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2347, - "hostname": "uk2347.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9853, + "hostname": "us9853.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.145" + "156.146.47.145" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2348, - "hostname": "uk2348.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9854, + "hostname": "us9854.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.155" + "156.146.47.147" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2348, - "hostname": "uk2348.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9854, + "hostname": "us9854.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.155" + "156.146.47.147" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2349, - "hostname": "uk2349.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9855, + "hostname": "us9855.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.165" + "156.146.47.149" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2349, - "hostname": "uk2349.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9855, + "hostname": "us9855.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.165" + "156.146.47.149" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2350, - "hostname": "uk2350.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9856, + "hostname": "us9856.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.175" + "156.146.47.151" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2350, - "hostname": "uk2350.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9856, + "hostname": "us9856.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.175" + "156.146.47.151" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2351, - "hostname": "uk2351.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9857, + "hostname": "us9857.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.185" + "156.146.47.153" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2351, - "hostname": "uk2351.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9857, + "hostname": "us9857.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.185" + "156.146.47.153" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2352, - "hostname": "uk2352.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9858, + "hostname": "us9858.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.195" + "156.146.47.155" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2352, - "hostname": "uk2352.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9858, + "hostname": "us9858.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.195" + "156.146.47.155" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2353, - "hostname": "uk2353.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9859, + "hostname": "us9859.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.205" + "156.146.47.157" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2353, - "hostname": "uk2353.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9859, + "hostname": "us9859.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.205" + "156.146.47.157" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2354, - "hostname": "uk2354.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10014, + "hostname": "us10014.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.215" + "185.215.181.2" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2354, - "hostname": "uk2354.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10014, + "hostname": "us10014.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.215" + "185.215.181.2" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2355, - "hostname": "uk2355.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10015, + "hostname": "us10015.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.225" + "185.215.181.17" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2355, - "hostname": "uk2355.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10015, + "hostname": "us10015.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.225" + "185.215.181.17" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2356, - "hostname": "uk2356.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10016, + "hostname": "us10016.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.235" + "185.215.181.32" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2356, - "hostname": "uk2356.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10016, + "hostname": "us10016.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.235" + "185.215.181.32" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2357, - "hostname": "uk2357.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10017, + "hostname": "us10017.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.35.232.245" + "185.215.181.47" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2357, - "hostname": "uk2357.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10017, + "hostname": "us10017.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "194.35.232.245" + "185.215.181.47" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2359, - "hostname": "uk2359.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10018, + "hostname": "us10018.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.171.195" + "185.215.181.62" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2359, - "hostname": "uk2359.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10018, + "hostname": "us10018.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "5.101.171.195" + "185.215.181.62" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2360, - "hostname": "uk2360.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10019, + "hostname": "us10019.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.51" + "185.215.181.77" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2360, - "hostname": "uk2360.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10019, + "hostname": "us10019.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "185.17.27.51" + "185.215.181.77" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2361, - "hostname": "uk2361.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10409, + "hostname": "us10409.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "178.159.9.83" + "89.187.171.104" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2361, - "hostname": "uk2361.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10409, + "hostname": "us10409.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "178.159.9.83" + "89.187.171.104" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2362, - "hostname": "uk2362.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10506, + "hostname": "us10506.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.74.192.227" + "155.133.5.2" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2362, - "hostname": "uk2362.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10506, + "hostname": "us10506.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "77.74.192.227" + "155.133.5.2" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2363, - "hostname": "uk2363.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10507, + "hostname": "us10507.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.9.58.51" + "155.133.5.17" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2363, - "hostname": "uk2363.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10507, + "hostname": "us10507.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "37.9.58.51" + "155.133.5.17" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2364, - "hostname": "uk2364.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10508, + "hostname": "us10508.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.138.115" + "155.133.5.32" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2364, - "hostname": "uk2364.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10508, + "hostname": "us10508.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "5.101.138.115" + "155.133.5.32" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2365, - "hostname": "uk2365.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10509, + "hostname": "us10509.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.143.115" + "155.133.5.47" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2365, - "hostname": "uk2365.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10509, + "hostname": "us10509.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "5.101.143.115" + "155.133.5.47" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2366, - "hostname": "uk2366.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10510, + "hostname": "us10510.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.168.131" + "155.133.5.62" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2366, - "hostname": "uk2366.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Atlanta", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10510, + "hostname": "us10510.nordvpn.com", + "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", "ips": [ - "5.101.168.131" + "155.133.5.62" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2367, - "hostname": "uk2367.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2920, + "hostname": "us2920.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.101.171.163" - ] - }, - { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2367, - "hostname": "uk2367.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", - "ips": [ - "5.101.171.163" + "96.9.246.179" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2368, - "hostname": "uk2368.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2921, + "hostname": "us2921.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.185.115" + "96.9.246.180" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2368, - "hostname": "uk2368.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2924, + "hostname": "us2924.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.185.115" + "96.9.247.187" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2369, - "hostname": "uk2369.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2925, + "hostname": "us2925.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.195.147" + "96.9.247.188" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2369, - "hostname": "uk2369.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2929, + "hostname": "us2929.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.195.147" + "107.173.59.99" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2370, - "hostname": "uk2370.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2930, + "hostname": "us2930.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.195.243" + "172.93.147.130" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2370, - "hostname": "uk2370.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2939, + "hostname": "us2939.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.195.243" + "172.93.237.99" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2371, - "hostname": "uk2371.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2940, + "hostname": "us2940.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.192.99" + "172.93.237.100" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2371, - "hostname": "uk2371.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2949, + "hostname": "us2949.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.192.99" + "64.44.32.75" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2372, - "hostname": "uk2372.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 2950, + "hostname": "us2950.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.187.179" + "64.44.32.76" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2372, - "hostname": "uk2372.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4959, + "hostname": "us4959.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.187.179" + "96.9.246.123" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2373, - "hostname": "uk2373.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4960, + "hostname": "us4960.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.222.147" + "96.9.246.124" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2373, - "hostname": "uk2373.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4965, + "hostname": "us4965.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.222.147" + "172.93.146.171" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2374, - "hostname": "uk2374.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4966, + "hostname": "us4966.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.185.163" + "172.93.146.172" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2374, - "hostname": "uk2374.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4971, + "hostname": "us4971.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.185.163" + "172.93.146.187" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2375, - "hostname": "uk2375.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4972, + "hostname": "us4972.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.185.147" + "172.93.146.188" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2375, - "hostname": "uk2375.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4973, + "hostname": "us4973.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.185.147" + "107.173.69.187" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2376, - "hostname": "uk2376.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4974, + "hostname": "us4974.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.194.211" + "107.173.69.188" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2376, - "hostname": "uk2376.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4977, + "hostname": "us4977.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.194.211" + "172.93.230.107" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2377, - "hostname": "uk2377.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4978, + "hostname": "us4978.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.222.35" + "172.93.230.108" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2377, - "hostname": "uk2377.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4979, + "hostname": "us4979.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.222.35" + "107.173.59.139" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2378, - "hostname": "uk2378.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4984, + "hostname": "us4984.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.245.211" + "172.93.146.131" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2378, - "hostname": "uk2378.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4985, + "hostname": "us4985.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.46.245.211" + "172.93.146.132" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2379, - "hostname": "uk2379.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4992, + "hostname": "us4992.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.229.73.147" + "96.9.246.91" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2379, - "hostname": "uk2379.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4993, + "hostname": "us4993.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.229.73.147" + "96.9.246.92" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2380, - "hostname": "uk2380.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4994, + "hostname": "us4994.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.229.76.195" + "96.9.245.99" ] }, { - "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2380, - "hostname": "uk2380.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 4995, + "hostname": "us4995.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "94.229.76.195" + "96.9.245.100" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2381, - "hostname": "uk2381.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6255, + "hostname": "us6255.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "109.69.107.30" + "64.44.42.107" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2381, - "hostname": "uk2381.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6255, + "hostname": "us6255.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "109.69.107.30" + "64.44.42.107" ] }, { - "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2382, - "hostname": "uk2382.nordvpn.com", + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6257, + "hostname": "us6257.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.63.216" + "172.93.230.99" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2382, - "hostname": "uk2382.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6257, + "hostname": "us6257.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "138.199.63.216" + "172.93.230.99" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2383, - "hostname": "uk2383.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6262, + "hostname": "us6262.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.63.228" + "107.175.40.235" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2383, - "hostname": "uk2383.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6262, + "hostname": "us6262.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "138.199.63.228" + "107.175.40.235" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2513, - "hostname": "uk2513.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6263, + "hostname": "us6263.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.161.147" + "107.175.40.219" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2513, - "hostname": "uk2513.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6263, + "hostname": "us6263.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.161.147" + "107.175.40.219" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2514, - "hostname": "uk2514.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6264, + "hostname": "us6264.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.163.243" + "107.175.105.219" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2514, - "hostname": "uk2514.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6264, + "hostname": "us6264.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.163.243" + "107.175.105.219" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2515, - "hostname": "uk2515.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6265, + "hostname": "us6265.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.164.67" + "107.175.40.211" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2515, - "hostname": "uk2515.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6265, + "hostname": "us6265.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.164.67" + "107.175.40.211" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2516, - "hostname": "uk2516.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6266, + "hostname": "us6266.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.165.243" + "107.175.105.211" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2516, - "hostname": "uk2516.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6266, + "hostname": "us6266.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.165.243" + "107.175.105.211" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2517, - "hostname": "uk2517.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6267, + "hostname": "us6267.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.165.115" + "107.175.105.187" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2517, - "hostname": "uk2517.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6267, + "hostname": "us6267.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.165.115" + "107.175.105.187" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2518, - "hostname": "uk2518.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6268, + "hostname": "us6268.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.169.131" + "107.175.105.163" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2518, - "hostname": "uk2518.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6268, + "hostname": "us6268.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.169.131" + "107.175.105.163" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2519, - "hostname": "uk2519.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6269, + "hostname": "us6269.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.170.35" + "107.175.104.251" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2519, - "hostname": "uk2519.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6269, + "hostname": "us6269.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.170.35" + "107.175.104.251" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2520, - "hostname": "uk2520.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6270, + "hostname": "us6270.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.172.67" + "107.175.105.147" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2520, - "hostname": "uk2520.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6270, + "hostname": "us6270.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.172.67" + "107.175.105.147" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2521, - "hostname": "uk2521.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6271, + "hostname": "us6271.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.175.211" + "107.175.105.171" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2521, - "hostname": "uk2521.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6271, + "hostname": "us6271.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.175.211" + "107.175.105.171" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2522, - "hostname": "uk2522.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6272, + "hostname": "us6272.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.175.99" + "107.175.105.155" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2522, - "hostname": "uk2522.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6272, + "hostname": "us6272.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.175.99" + "107.175.105.155" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2523, - "hostname": "uk2523.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6273, + "hostname": "us6273.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.194.147" + "107.175.104.243" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2523, - "hostname": "uk2523.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6273, + "hostname": "us6273.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.157.194.147" + "107.175.104.243" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2524, - "hostname": "uk2524.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6274, + "hostname": "us6274.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.194.227" + "107.175.104.235" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2524, - "hostname": "uk2524.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6274, + "hostname": "us6274.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.157.194.227" + "107.175.104.235" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2525, - "hostname": "uk2525.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6275, + "hostname": "us6275.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.200.195" + "107.175.104.227" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2525, - "hostname": "uk2525.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6275, + "hostname": "us6275.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.157.200.195" + "107.175.104.227" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2526, - "hostname": "uk2526.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6276, + "hostname": "us6276.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.200.83" + "107.175.104.203" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2526, - "hostname": "uk2526.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6276, + "hostname": "us6276.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.157.200.83" + "107.175.104.203" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2527, - "hostname": "uk2527.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6277, + "hostname": "us6277.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.209.147" + "107.175.104.195" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2527, - "hostname": "uk2527.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6277, + "hostname": "us6277.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.157.209.147" + "107.175.104.195" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2528, - "hostname": "uk2528.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6278, + "hostname": "us6278.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.75.121.99" + "107.174.17.99" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2528, - "hostname": "uk2528.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6278, + "hostname": "us6278.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "77.75.121.99" + "107.174.17.99" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2529, - "hostname": "uk2529.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6279, + "hostname": "us6279.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.46.222.67" + "107.174.17.83" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2529, - "hostname": "uk2529.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6279, + "hostname": "us6279.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "94.46.222.67" + "107.174.17.83" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2531, - "hostname": "uk2531.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6280, + "hostname": "us6280.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.17.27.131" + "107.174.17.251" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2531, - "hostname": "uk2531.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6280, + "hostname": "us6280.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.17.27.131" + "107.174.17.251" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2532, - "hostname": "uk2532.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6281, + "hostname": "us6281.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.9.56.115" + "107.174.17.243" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2532, - "hostname": "uk2532.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6281, + "hostname": "us6281.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "37.9.56.115" + "107.174.17.243" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2533, - "hostname": "uk2533.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6282, + "hostname": "us6282.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.9.56.131" + "107.174.17.139" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2533, - "hostname": "uk2533.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6282, + "hostname": "us6282.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "37.9.56.131" + "107.174.17.139" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2535, - "hostname": "uk2535.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6283, + "hostname": "us6283.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.209.83" + "107.174.17.131" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2535, - "hostname": "uk2535.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6283, + "hostname": "us6283.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.157.209.83" + "107.174.17.131" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2536, - "hostname": "uk2536.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6284, + "hostname": "us6284.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.209.99" + "107.174.17.115" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2536, - "hostname": "uk2536.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6284, + "hostname": "us6284.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.157.209.99" + "107.174.17.115" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2537, - "hostname": "uk2537.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6285, + "hostname": "us6285.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "77.75.121.147" + "107.174.17.3" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2537, - "hostname": "uk2537.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6285, + "hostname": "us6285.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "77.75.121.147" + "107.174.17.3" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2538, - "hostname": "uk2538.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6286, + "hostname": "us6286.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.157.221.51" + "107.173.69.11" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2538, - "hostname": "uk2538.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6286, + "hostname": "us6286.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.157.221.51" + "107.173.69.11" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2540, - "hostname": "uk2540.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6288, + "hostname": "us6288.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "78.110.166.162" + "107.173.73.35" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2540, - "hostname": "uk2540.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6288, + "hostname": "us6288.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "78.110.166.162" + "107.173.73.35" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2541, - "hostname": "uk2541.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6289, + "hostname": "us6289.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.235.7" + "107.173.73.27" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2541, - "hostname": "uk2541.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6289, + "hostname": "us6289.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.169.235.7" + "107.173.73.27" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2542, - "hostname": "uk2542.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6290, + "hostname": "us6290.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.235.20" + "107.174.17.107" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2542, - "hostname": "uk2542.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6290, + "hostname": "us6290.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.169.235.20" + "107.174.17.107" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2543, - "hostname": "uk2543.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6291, + "hostname": "us6291.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.235.33" + "107.173.69.195" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2543, - "hostname": "uk2543.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6291, + "hostname": "us6291.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.169.235.33" + "107.173.69.195" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2545, - "hostname": "uk2545.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6292, + "hostname": "us6292.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.235.59" + "107.173.69.235" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2545, - "hostname": "uk2545.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6292, + "hostname": "us6292.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.169.235.59" + "107.173.69.235" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2546, - "hostname": "uk2546.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6293, + "hostname": "us6293.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.235.72" + "107.173.69.227" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2546, - "hostname": "uk2546.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6293, + "hostname": "us6293.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.169.235.72" + "107.173.69.227" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2547, - "hostname": "uk2547.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6294, + "hostname": "us6294.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.235.85" + "107.173.69.147" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2547, - "hostname": "uk2547.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6294, + "hostname": "us6294.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.169.235.85" + "107.173.69.147" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2548, - "hostname": "uk2548.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6295, + "hostname": "us6295.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.235.98" + "107.173.69.203" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2548, - "hostname": "uk2548.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6295, + "hostname": "us6295.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.169.235.98" + "107.173.69.203" ] }, { "vpn": "openvpn", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2549, - "hostname": "uk2549.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6296, + "hostname": "us6296.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.169.235.111" + "107.173.73.3" ] }, { "vpn": "wireguard", - "country": "United Kingdom", - "region": "Europe", - "city": "London", - "number": 2549, - "hostname": "uk2549.nordvpn.com", - "wgpubkey": "K53l2wOIHU3262sX5N/5kAvCvt4r55lNui30EbvaDlE=", + "country": "United States", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6296, + "hostname": "us6296.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.169.235.111" + "107.173.73.3" ] }, { "vpn": "openvpn", "country": "United States", - "city": "New York", - "number": 8498, - "hostname": "us8498.nordvpn.com", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6298, + "hostname": "us6298.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.156" + "107.173.69.155" ] }, { "vpn": "wireguard", "country": "United States", - "city": "New York", - "number": 8498, - "hostname": "us8498.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6298, + "hostname": "us6298.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "62.182.99.156" + "107.173.69.155" ] }, { "vpn": "openvpn", "country": "United States", - "city": "New York", - "number": 8499, - "hostname": "us8499.nordvpn.com", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6299, + "hostname": "us6299.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.158" + "107.173.59.155" ] }, { "vpn": "wireguard", "country": "United States", - "city": "New York", - "number": 8499, - "hostname": "us8499.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6299, + "hostname": "us6299.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "62.182.99.158" + "107.173.59.155" ] }, { "vpn": "openvpn", "country": "United States", - "city": "New York", - "number": 8500, - "hostname": "us8500.nordvpn.com", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6300, + "hostname": "us6300.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.160" + "107.173.69.219" ] }, { "vpn": "wireguard", "country": "United States", - "city": "New York", - "number": 8500, - "hostname": "us8500.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "region": "The Americas", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6300, + "hostname": "us6300.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "62.182.99.160" + "107.173.69.219" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5109, - "hostname": "us5109.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9012, + "hostname": "us9012.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.93.0.98" + "45.14.195.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5109, - "hostname": "us5109.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9012, + "hostname": "us9012.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.93.0.98" + "45.14.195.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5110, - "hostname": "us5110.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9013, + "hostname": "us9013.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.93.0.108" + "45.14.195.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5110, - "hostname": "us5110.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9013, + "hostname": "us9013.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.93.0.108" + "45.14.195.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5111, - "hostname": "us5111.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9014, + "hostname": "us9014.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.93.0.103" + "45.14.195.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5111, - "hostname": "us5111.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9014, + "hostname": "us9014.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "185.93.0.103" + "45.14.195.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5112, - "hostname": "us5112.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9015, + "hostname": "us9015.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.106" + "45.14.195.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5112, - "hostname": "us5112.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9015, + "hostname": "us9015.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.106" + "45.14.195.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5113, - "hostname": "us5113.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9016, + "hostname": "us9016.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.101" + "45.14.195.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 5113, - "hostname": "us5113.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9016, + "hostname": "us9016.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.101" + "45.14.195.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6694, - "hostname": "us6694.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9017, + "hostname": "us9017.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.76" + "45.14.195.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6694, - "hostname": "us6694.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9017, + "hostname": "us9017.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.76" + "45.14.195.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6695, - "hostname": "us6695.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9018, + "hostname": "us9018.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.96" + "45.14.195.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6695, - "hostname": "us6695.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9018, + "hostname": "us9018.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.96" + "45.14.195.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6696, - "hostname": "us6696.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9019, + "hostname": "us9019.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.91" + "45.14.195.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6696, - "hostname": "us6696.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9019, + "hostname": "us9019.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.91" + "45.14.195.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6697, - "hostname": "us6697.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9020, + "hostname": "us9020.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.86" + "45.14.195.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6697, - "hostname": "us6697.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9020, + "hostname": "us9020.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.86" + "45.14.195.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6698, - "hostname": "us6698.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9021, + "hostname": "us9021.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.81" + "45.14.195.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6698, - "hostname": "us6698.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9021, + "hostname": "us9021.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.81" + "45.14.195.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6699, - "hostname": "us6699.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9022, + "hostname": "us9022.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.71" + "45.14.195.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6699, - "hostname": "us6699.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9022, + "hostname": "us9022.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.71" + "45.14.195.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6700, - "hostname": "us6700.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9023, + "hostname": "us9023.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.171.67" + "45.14.195.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 6700, - "hostname": "us6700.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9023, + "hostname": "us9023.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "89.187.171.67" + "45.14.195.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8028, - "hostname": "us8028.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9024, + "hostname": "us9024.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.3" + "45.14.195.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8028, - "hostname": "us8028.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9024, + "hostname": "us9024.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.3" + "45.14.195.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8029, - "hostname": "us8029.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9025, + "hostname": "us9025.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.6" + "45.14.195.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8029, - "hostname": "us8029.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9025, + "hostname": "us9025.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.6" + "45.14.195.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8030, - "hostname": "us8030.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9026, + "hostname": "us9026.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.9" + "45.14.195.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8030, - "hostname": "us8030.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9026, + "hostname": "us9026.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.9" + "45.14.195.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8031, - "hostname": "us8031.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9027, + "hostname": "us9027.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.12" + "45.14.195.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8031, - "hostname": "us8031.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9027, + "hostname": "us9027.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.12" + "45.14.195.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8032, - "hostname": "us8032.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9028, + "hostname": "us9028.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.15" + "45.14.195.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8032, - "hostname": "us8032.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9028, + "hostname": "us9028.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.15" + "45.14.195.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8033, - "hostname": "us8033.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9029, + "hostname": "us9029.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.18" + "45.14.195.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8033, - "hostname": "us8033.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9029, + "hostname": "us9029.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.18" + "45.14.195.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8034, - "hostname": "us8034.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9030, + "hostname": "us9030.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.21" + "45.14.195.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8034, - "hostname": "us8034.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9030, + "hostname": "us9030.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.21" + "45.14.195.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8035, - "hostname": "us8035.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9031, + "hostname": "us9031.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.24" + "45.14.195.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8035, - "hostname": "us8035.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9031, + "hostname": "us9031.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.24" + "45.14.195.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8036, - "hostname": "us8036.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9032, + "hostname": "us9032.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.27" + "45.14.195.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8036, - "hostname": "us8036.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9032, + "hostname": "us9032.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.27" + "45.14.195.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8037, - "hostname": "us8037.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9033, + "hostname": "us9033.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.30" + "45.14.195.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8037, - "hostname": "us8037.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9033, + "hostname": "us9033.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.30" + "45.14.195.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8038, - "hostname": "us8038.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9034, + "hostname": "us9034.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.33" + "45.14.195.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8038, - "hostname": "us8038.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9034, + "hostname": "us9034.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.33" + "45.14.195.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8039, - "hostname": "us8039.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9035, + "hostname": "us9035.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.36" + "45.14.195.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8039, - "hostname": "us8039.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9035, + "hostname": "us9035.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.36" + "45.14.195.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8040, - "hostname": "us8040.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9036, + "hostname": "us9036.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.39" + "45.14.195.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8040, - "hostname": "us8040.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9036, + "hostname": "us9036.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.39" + "45.14.195.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8041, - "hostname": "us8041.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9037, + "hostname": "us9037.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.42" + "45.14.195.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8041, - "hostname": "us8041.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9037, + "hostname": "us9037.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.42" + "45.14.195.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8042, - "hostname": "us8042.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9038, + "hostname": "us9038.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.45" + "45.14.195.152" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8042, - "hostname": "us8042.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9038, + "hostname": "us9038.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.45" + "45.14.195.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8043, - "hostname": "us8043.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9039, + "hostname": "us9039.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.48" + "45.14.195.154" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8043, - "hostname": "us8043.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9039, + "hostname": "us9039.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.48" + "45.14.195.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8044, - "hostname": "us8044.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9040, + "hostname": "us9040.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.51" + "45.14.195.156" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8044, - "hostname": "us8044.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9040, + "hostname": "us9040.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.51" + "45.14.195.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8045, - "hostname": "us8045.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9041, + "hostname": "us9041.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.54" + "45.14.195.158" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8045, - "hostname": "us8045.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9041, + "hostname": "us9041.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.54" + "45.14.195.158" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8046, - "hostname": "us8046.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9042, + "hostname": "us9042.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.57" + "45.14.195.160" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8046, - "hostname": "us8046.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9042, + "hostname": "us9042.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.57" + "45.14.195.160" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8047, - "hostname": "us8047.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9043, + "hostname": "us9043.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.60" + "45.14.195.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8047, - "hostname": "us8047.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9043, + "hostname": "us9043.nordvpn.com", + "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", "ips": [ - "92.119.17.60" + "45.14.195.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8048, - "hostname": "us8048.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10106, + "hostname": "us10106.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.63" + "64.44.32.43" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8048, - "hostname": "us8048.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10107, + "hostname": "us10107.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "92.119.17.63" + "96.9.251.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8049, - "hostname": "us8049.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10108, + "hostname": "us10108.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.66" + "172.93.153.163" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8049, - "hostname": "us8049.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10109, + "hostname": "us10109.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "92.119.17.66" + "96.9.251.4" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8050, - "hostname": "us8050.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10159, + "hostname": "us10159.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.69" + "64.44.32.115" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8050, - "hostname": "us8050.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10160, + "hostname": "us10160.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "92.119.17.69" + "96.9.251.6" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8051, - "hostname": "us8051.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10161, + "hostname": "us10161.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.72" + "172.93.147.67" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8051, - "hostname": "us8051.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10162, + "hostname": "us10162.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "92.119.17.72" + "96.9.251.8" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8052, - "hostname": "us8052.nordvpn.com", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10163, + "hostname": "us10163.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.75" + "64.44.32.51" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8052, - "hostname": "us8052.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Buffalo", + "categories": [ + "Dedicated IP" + ], + "number": 10164, + "hostname": "us10164.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "92.119.17.75" + "96.9.251.10" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8053, - "hostname": "us8053.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8474, + "hostname": "us8474.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.78" + "192.145.117.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8053, - "hostname": "us8053.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8474, + "hostname": "us8474.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.78" + "192.145.117.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8054, - "hostname": "us8054.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8475, + "hostname": "us8475.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.81" + "192.145.117.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8054, - "hostname": "us8054.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8475, + "hostname": "us8475.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.81" + "192.145.117.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8055, - "hostname": "us8055.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8476, + "hostname": "us8476.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.84" + "192.145.117.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8055, - "hostname": "us8055.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8476, + "hostname": "us8476.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.84" + "192.145.117.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8056, - "hostname": "us8056.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8477, + "hostname": "us8477.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.87" + "192.145.117.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8056, - "hostname": "us8056.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8477, + "hostname": "us8477.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.87" + "192.145.117.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8057, - "hostname": "us8057.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8478, + "hostname": "us8478.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.90" + "192.145.117.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8057, - "hostname": "us8057.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8478, + "hostname": "us8478.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.90" + "192.145.117.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8192, - "hostname": "us8192.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8479, + "hostname": "us8479.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.93.0.116" + "192.145.117.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8192, - "hostname": "us8192.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8479, + "hostname": "us8479.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "185.93.0.116" + "192.145.117.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8193, - "hostname": "us8193.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8480, + "hostname": "us8480.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.93.0.119" + "192.145.117.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8193, - "hostname": "us8193.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8480, + "hostname": "us8480.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "185.93.0.119" + "192.145.117.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8194, - "hostname": "us8194.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8481, + "hostname": "us8481.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.93.0.113" + "192.145.117.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8194, - "hostname": "us8194.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8481, + "hostname": "us8481.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "185.93.0.113" + "192.145.117.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8195, - "hostname": "us8195.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8482, + "hostname": "us8482.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.93" + "192.145.117.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8195, - "hostname": "us8195.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8482, + "hostname": "us8482.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.93" + "192.145.117.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8196, - "hostname": "us8196.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8483, + "hostname": "us8483.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.96" + "192.145.117.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8196, - "hostname": "us8196.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8483, + "hostname": "us8483.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.96" + "192.145.117.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8197, - "hostname": "us8197.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8484, + "hostname": "us8484.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.99" + "192.145.117.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8197, - "hostname": "us8197.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8484, + "hostname": "us8484.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.99" + "192.145.117.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8198, - "hostname": "us8198.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8485, + "hostname": "us8485.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.102" + "192.145.117.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8198, - "hostname": "us8198.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8485, + "hostname": "us8485.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.102" + "192.145.117.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8199, - "hostname": "us8199.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8486, + "hostname": "us8486.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.105" + "192.145.117.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8199, - "hostname": "us8199.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8486, + "hostname": "us8486.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.105" + "192.145.117.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8200, - "hostname": "us8200.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8487, + "hostname": "us8487.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.108" + "192.145.117.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8200, - "hostname": "us8200.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8487, + "hostname": "us8487.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.108" + "192.145.117.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8201, - "hostname": "us8201.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8488, + "hostname": "us8488.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.111" + "192.145.117.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8201, - "hostname": "us8201.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8488, + "hostname": "us8488.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.111" + "192.145.117.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8202, - "hostname": "us8202.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8489, + "hostname": "us8489.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.114" + "192.145.117.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8202, - "hostname": "us8202.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8489, + "hostname": "us8489.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.114" + "192.145.117.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8203, - "hostname": "us8203.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8490, + "hostname": "us8490.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.117" + "192.145.117.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8203, - "hostname": "us8203.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8490, + "hostname": "us8490.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.117" + "192.145.117.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8204, - "hostname": "us8204.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8491, + "hostname": "us8491.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.120" + "192.145.117.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8204, - "hostname": "us8204.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8491, + "hostname": "us8491.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.120" + "192.145.117.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8205, - "hostname": "us8205.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8492, + "hostname": "us8492.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.123" + "192.145.117.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8205, - "hostname": "us8205.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8492, + "hostname": "us8492.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.123" + "192.145.117.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8206, - "hostname": "us8206.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8493, + "hostname": "us8493.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.126" + "192.145.117.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8206, - "hostname": "us8206.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8493, + "hostname": "us8493.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.126" + "192.145.117.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8207, - "hostname": "us8207.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8494, + "hostname": "us8494.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.129" + "192.145.117.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8207, - "hostname": "us8207.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8494, + "hostname": "us8494.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.129" + "192.145.117.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8208, - "hostname": "us8208.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8495, + "hostname": "us8495.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.132" + "192.145.117.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8208, - "hostname": "us8208.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8495, + "hostname": "us8495.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.132" + "192.145.117.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8209, - "hostname": "us8209.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8496, + "hostname": "us8496.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.135" + "192.145.117.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8209, - "hostname": "us8209.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8496, + "hostname": "us8496.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.135" + "192.145.117.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8210, - "hostname": "us8210.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8497, + "hostname": "us8497.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.138" + "192.145.117.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8210, - "hostname": "us8210.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8497, + "hostname": "us8497.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.138" + "192.145.117.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8211, - "hostname": "us8211.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10021, + "hostname": "us10021.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.141" + "5.182.32.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8211, - "hostname": "us8211.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10021, + "hostname": "us10021.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.141" + "5.182.32.100" ] }, { "vpn": "openvpn", - "country": "United States", - "region": "The Americas", - "city": "Atlanta", - "number": 8212, - "hostname": "us8212.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10022, + "hostname": "us10022.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.144" + "5.182.32.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8212, - "hostname": "us8212.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10022, + "hostname": "us10022.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.144" + "5.182.32.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8213, - "hostname": "us8213.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10023, + "hostname": "us10023.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.147" + "5.182.32.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8213, - "hostname": "us8213.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10023, + "hostname": "us10023.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.147" + "5.182.32.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8214, - "hostname": "us8214.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10024, + "hostname": "us10024.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.150" + "5.182.32.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8214, - "hostname": "us8214.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10024, + "hostname": "us10024.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.150" + "5.182.32.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8215, - "hostname": "us8215.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10025, + "hostname": "us10025.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.153" + "5.182.32.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8215, - "hostname": "us8215.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10025, + "hostname": "us10025.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.153" + "5.182.32.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8216, - "hostname": "us8216.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10026, + "hostname": "us10026.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.156" + "5.182.32.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8216, - "hostname": "us8216.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10026, + "hostname": "us10026.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.156" + "5.182.32.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8217, - "hostname": "us8217.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10027, + "hostname": "us10027.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.159" + "5.182.32.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8217, - "hostname": "us8217.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10027, + "hostname": "us10027.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.159" + "5.182.32.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8218, - "hostname": "us8218.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10028, + "hostname": "us10028.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.162" + "5.182.32.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8218, - "hostname": "us8218.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10028, + "hostname": "us10028.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.162" + "5.182.32.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8219, - "hostname": "us8219.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10029, + "hostname": "us10029.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.165" + "5.182.32.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8219, - "hostname": "us8219.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10029, + "hostname": "us10029.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.165" + "5.182.32.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8220, - "hostname": "us8220.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10030, + "hostname": "us10030.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.168" + "5.182.32.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8220, - "hostname": "us8220.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10030, + "hostname": "us10030.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.168" + "5.182.32.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8221, - "hostname": "us8221.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10502, + "hostname": "us10502.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.171" + "5.182.32.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8221, - "hostname": "us8221.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10502, + "hostname": "us10502.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.171" + "5.182.32.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8222, - "hostname": "us8222.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10503, + "hostname": "us10503.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.174" + "5.182.32.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8222, - "hostname": "us8222.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10503, + "hostname": "us10503.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.174" + "5.182.32.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8223, - "hostname": "us8223.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10504, + "hostname": "us10504.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.177" + "5.182.32.129" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8223, - "hostname": "us8223.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10504, + "hostname": "us10504.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.177" + "5.182.32.129" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8224, - "hostname": "us8224.nordvpn.com", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10505, + "hostname": "us10505.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.180" + "5.182.32.131" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8224, - "hostname": "us8224.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Charlotte", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10505, + "hostname": "us10505.nordvpn.com", + "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", "ips": [ - "92.119.17.180" + "5.182.32.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8225, - "hostname": "us8225.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6301, + "hostname": "us6301.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.183" + "172.93.177.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8225, - "hostname": "us8225.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6301, + "hostname": "us6301.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.17.183" + "172.93.177.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8226, - "hostname": "us8226.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6302, + "hostname": "us6302.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.17.186" + "172.93.177.203" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 8226, - "hostname": "us8226.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6302, + "hostname": "us6302.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.17.186" + "172.93.177.203" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9365, - "hostname": "us9365.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6303, + "hostname": "us6303.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.98.63" + "172.93.177.163" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9365, - "hostname": "us9365.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6303, + "hostname": "us6303.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "194.233.98.63" + "172.93.177.163" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9366, - "hostname": "us9366.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6304, + "hostname": "us6304.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.98.98" + "172.93.177.179" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9366, - "hostname": "us9366.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6304, + "hostname": "us6304.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "194.233.98.98" + "172.93.177.179" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9367, - "hostname": "us9367.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6305, + "hostname": "us6305.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.98.105" + "172.93.177.243" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9367, - "hostname": "us9367.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6305, + "hostname": "us6305.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "194.233.98.105" + "172.93.177.243" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9368, - "hostname": "us9368.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6306, + "hostname": "us6306.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.98.112" + "172.93.177.227" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9368, - "hostname": "us9368.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6306, + "hostname": "us6306.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "194.233.98.112" + "172.93.177.227" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9369, - "hostname": "us9369.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6307, + "hostname": "us6307.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.233.98.129" + "172.93.177.171" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9369, - "hostname": "us9369.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6307, + "hostname": "us6307.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "194.233.98.129" + "172.93.177.171" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9565, - "hostname": "us9565.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6308, + "hostname": "us6308.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.19.130" + "172.93.177.211" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9565, - "hostname": "us9565.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6308, + "hostname": "us6308.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.19.130" + "172.93.177.211" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9566, - "hostname": "us9566.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6309, + "hostname": "us6309.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.19.132" + "172.93.177.187" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9566, - "hostname": "us9566.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6309, + "hostname": "us6309.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.19.132" + "172.93.177.187" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9567, - "hostname": "us9567.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6310, + "hostname": "us6310.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.19.134" + "172.93.177.139" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9567, - "hostname": "us9567.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6310, + "hostname": "us6310.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.19.134" + "172.93.177.139" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9568, - "hostname": "us9568.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6311, + "hostname": "us6311.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.19.136" + "172.93.177.155" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9568, - "hostname": "us9568.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6311, + "hostname": "us6311.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.19.136" + "172.93.177.155" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9569, - "hostname": "us9569.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6312, + "hostname": "us6312.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.19.138" + "172.93.177.147" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9569, - "hostname": "us9569.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6312, + "hostname": "us6312.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.19.138" + "172.93.177.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9570, - "hostname": "us9570.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6313, + "hostname": "us6313.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.19.140" + "172.93.177.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9570, - "hostname": "us9570.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6313, + "hostname": "us6313.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.19.140" + "172.93.177.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9571, - "hostname": "us9571.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6314, + "hostname": "us6314.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.19.142" + "172.93.177.107" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9571, - "hostname": "us9571.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6314, + "hostname": "us6314.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.19.142" + "172.93.177.107" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9572, - "hostname": "us9572.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6315, + "hostname": "us6315.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "92.119.19.144" + "172.93.177.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9572, - "hostname": "us9572.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6315, + "hostname": "us6315.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "92.119.19.144" + "172.93.177.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9845, - "hostname": "us9845.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6316, + "hostname": "us6316.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.129" + "172.93.177.83" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9845, - "hostname": "us9845.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6316, + "hostname": "us6316.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.129" + "172.93.177.83" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9846, - "hostname": "us9846.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6317, + "hostname": "us6317.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.131" + "172.93.177.75" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9846, - "hostname": "us9846.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6317, + "hostname": "us6317.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.131" + "172.93.177.75" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9847, - "hostname": "us9847.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6318, + "hostname": "us6318.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.133" + "172.93.177.59" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9847, - "hostname": "us9847.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6318, + "hostname": "us6318.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.133" + "172.93.177.59" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9848, - "hostname": "us9848.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6319, + "hostname": "us6319.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.135" + "172.93.177.67" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9848, - "hostname": "us9848.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6319, + "hostname": "us6319.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.135" + "172.93.177.67" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9849, - "hostname": "us9849.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6320, + "hostname": "us6320.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.137" + "172.93.177.51" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9849, - "hostname": "us9849.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6320, + "hostname": "us6320.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.137" + "172.93.177.51" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9850, - "hostname": "us9850.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6321, + "hostname": "us6321.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.139" + "172.93.177.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9850, - "hostname": "us9850.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6321, + "hostname": "us6321.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.139" + "172.93.177.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9851, - "hostname": "us9851.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6322, + "hostname": "us6322.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.141" + "172.93.177.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9851, - "hostname": "us9851.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6322, + "hostname": "us6322.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.141" + "172.93.177.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9852, - "hostname": "us9852.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6323, + "hostname": "us6323.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.143" + "172.93.177.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9852, - "hostname": "us9852.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6323, + "hostname": "us6323.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.143" + "172.93.177.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9853, - "hostname": "us9853.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6324, + "hostname": "us6324.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.145" + "172.93.177.3" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9853, - "hostname": "us9853.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6324, + "hostname": "us6324.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.145" + "172.93.177.3" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9854, - "hostname": "us9854.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6533, + "hostname": "us6533.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.147" + "172.93.177.251" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9854, - "hostname": "us9854.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6533, + "hostname": "us6533.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.147" + "172.93.177.251" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9855, - "hostname": "us9855.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6534, + "hostname": "us6534.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.149" + "172.93.177.99" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9855, - "hostname": "us9855.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6534, + "hostname": "us6534.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.149" + "172.93.177.99" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9856, - "hostname": "us9856.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6535, + "hostname": "us6535.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.151" + "172.93.177.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9856, - "hostname": "us9856.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6535, + "hostname": "us6535.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.151" + "172.93.177.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9857, - "hostname": "us9857.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6536, + "hostname": "us6536.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.153" + "172.93.177.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9857, - "hostname": "us9857.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6536, + "hostname": "us6536.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.153" + "172.93.177.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9858, - "hostname": "us9858.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6537, + "hostname": "us6537.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.155" + "172.93.177.219" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9858, - "hostname": "us9858.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6537, + "hostname": "us6537.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.155" + "172.93.177.219" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9859, - "hostname": "us9859.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6538, + "hostname": "us6538.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.47.157" + "172.93.177.195" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 9859, - "hostname": "us9859.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6538, + "hostname": "us6538.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "156.146.47.157" + "172.93.177.195" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10014, - "hostname": "us10014.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6539, + "hostname": "us6539.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.215.181.2" + "172.93.177.123" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10014, - "hostname": "us10014.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6539, + "hostname": "us6539.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "185.215.181.2" + "172.93.177.123" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10015, - "hostname": "us10015.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6540, + "hostname": "us6540.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.215.181.17" + "172.93.177.131" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10015, - "hostname": "us10015.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6540, + "hostname": "us6540.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "185.215.181.17" + "172.93.177.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10016, - "hostname": "us10016.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6572, + "hostname": "us6572.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.215.181.32" + "89.187.183.182" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10016, - "hostname": "us10016.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6572, + "hostname": "us6572.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "185.215.181.32" + "89.187.183.182" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10017, - "hostname": "us10017.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6573, + "hostname": "us6573.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.215.181.47" + "89.187.183.177" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10017, - "hostname": "us10017.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6573, + "hostname": "us6573.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "185.215.181.47" + "89.187.183.177" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10018, - "hostname": "us10018.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6574, + "hostname": "us6574.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.215.181.62" + "89.187.183.172" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10018, - "hostname": "us10018.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6574, + "hostname": "us6574.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "185.215.181.62" + "89.187.183.172" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10019, - "hostname": "us10019.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6575, + "hostname": "us6575.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.215.181.77" + "89.187.183.167" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Atlanta", - "number": 10019, - "hostname": "us10019.nordvpn.com", - "wgpubkey": "Ew0CPosTB0dTZRKx9XyAblENRsyey7gPhNmp64sceVo=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6575, + "hostname": "us6575.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "185.215.181.77" + "89.187.183.167" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6255, - "hostname": "us6255.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6576, + "hostname": "us6576.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.42.107" + "89.187.183.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6255, - "hostname": "us6255.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6576, + "hostname": "us6576.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "64.44.42.107" + "89.187.183.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6257, - "hostname": "us6257.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6709, + "hostname": "us6709.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.230.99" + "89.187.183.151" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6257, - "hostname": "us6257.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6709, + "hostname": "us6709.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.230.99" + "89.187.183.151" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6262, - "hostname": "us6262.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6710, + "hostname": "us6710.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.40.235" + "89.187.183.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6262, - "hostname": "us6262.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6710, + "hostname": "us6710.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.40.235" + "89.187.183.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6263, - "hostname": "us6263.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6721, + "hostname": "us6721.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.40.219" + "89.187.182.66" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6263, - "hostname": "us6263.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6721, + "hostname": "us6721.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.40.219" + "89.187.182.66" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6264, - "hostname": "us6264.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6722, + "hostname": "us6722.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.105.219" + "89.187.182.71" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6264, - "hostname": "us6264.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6722, + "hostname": "us6722.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.105.219" + "89.187.182.71" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6265, - "hostname": "us6265.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6723, + "hostname": "us6723.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.40.211" + "89.187.182.76" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6265, - "hostname": "us6265.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6723, + "hostname": "us6723.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.40.211" + "89.187.182.76" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6266, - "hostname": "us6266.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6860, + "hostname": "us6860.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.105.211" + "64.44.140.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6266, - "hostname": "us6266.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6860, + "hostname": "us6860.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.105.211" + "64.44.140.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6267, - "hostname": "us6267.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6861, + "hostname": "us6861.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.105.187" + "64.44.140.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6267, - "hostname": "us6267.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6861, + "hostname": "us6861.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.105.187" + "64.44.140.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6268, - "hostname": "us6268.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6862, + "hostname": "us6862.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.105.163" + "64.44.140.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6268, - "hostname": "us6268.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6862, + "hostname": "us6862.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.105.163" + "64.44.140.35" ] }, { "vpn": "openvpn", - "country": "United States", - "region": "The Americas", - "city": "Buffalo", - "number": 6269, - "hostname": "us6269.nordvpn.com", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6863, + "hostname": "us6863.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.104.251" + "64.44.140.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6269, - "hostname": "us6269.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6863, + "hostname": "us6863.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.104.251" + "64.44.140.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6270, - "hostname": "us6270.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6864, + "hostname": "us6864.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.105.147" + "64.44.140.51" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6270, - "hostname": "us6270.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6864, + "hostname": "us6864.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.105.147" + "64.44.140.51" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6271, - "hostname": "us6271.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6865, + "hostname": "us6865.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.105.171" + "64.44.140.59" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6271, - "hostname": "us6271.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6865, + "hostname": "us6865.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.105.171" + "64.44.140.59" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6272, - "hostname": "us6272.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6866, + "hostname": "us6866.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.105.155" + "64.44.140.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6272, - "hostname": "us6272.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6866, + "hostname": "us6866.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.105.155" + "64.44.140.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6273, - "hostname": "us6273.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6867, + "hostname": "us6867.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.104.243" + "64.44.140.3" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6273, - "hostname": "us6273.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6867, + "hostname": "us6867.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.104.243" + "64.44.140.3" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6274, - "hostname": "us6274.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6880, + "hostname": "us6880.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.104.235" + "89.187.182.81" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6274, - "hostname": "us6274.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6880, + "hostname": "us6880.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.104.235" + "89.187.182.81" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6275, - "hostname": "us6275.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6881, + "hostname": "us6881.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.104.227" + "89.187.182.86" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6275, - "hostname": "us6275.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6881, + "hostname": "us6881.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.104.227" + "89.187.182.86" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6276, - "hostname": "us6276.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6882, + "hostname": "us6882.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.104.203" + "89.187.182.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6276, - "hostname": "us6276.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6882, + "hostname": "us6882.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.104.203" + "89.187.182.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6277, - "hostname": "us6277.nordvpn.com", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6883, + "hostname": "us6883.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.175.104.195" + "89.187.182.96" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6277, - "hostname": "us6277.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6883, + "hostname": "us6883.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.175.104.195" + "89.187.182.96" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6278, - "hostname": "us6278.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6945, + "hostname": "us6945.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.99" + "89.187.182.101" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6278, - "hostname": "us6278.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6945, + "hostname": "us6945.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.99" + "89.187.182.101" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6279, - "hostname": "us6279.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8382, + "hostname": "us8382.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.83" + "89.187.182.121" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6279, - "hostname": "us6279.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8382, + "hostname": "us8382.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.83" + "89.187.182.121" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6280, - "hostname": "us6280.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8383, + "hostname": "us8383.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.251" + "89.187.183.186" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6280, - "hostname": "us6280.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8383, + "hostname": "us8383.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.251" + "89.187.183.186" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6281, - "hostname": "us6281.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8384, + "hostname": "us8384.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.243" + "143.244.61.226" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6281, - "hostname": "us6281.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8384, + "hostname": "us8384.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.243" + "143.244.61.226" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6282, - "hostname": "us6282.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8385, + "hostname": "us8385.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.139" + "89.187.183.135" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6282, - "hostname": "us6282.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8385, + "hostname": "us8385.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.139" + "89.187.183.135" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6283, - "hostname": "us6283.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8386, + "hostname": "us8386.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.131" + "89.187.183.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6283, - "hostname": "us6283.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8386, + "hostname": "us8386.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.131" + "89.187.183.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6284, - "hostname": "us6284.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8387, + "hostname": "us8387.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.115" + "143.244.61.229" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6284, - "hostname": "us6284.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8387, + "hostname": "us8387.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.115" + "143.244.61.229" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6285, - "hostname": "us6285.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8388, + "hostname": "us8388.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.3" + "143.244.61.232" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6285, - "hostname": "us6285.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8388, + "hostname": "us8388.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.3" + "143.244.61.232" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6286, - "hostname": "us6286.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8389, + "hostname": "us8389.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.69.11" + "143.244.61.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6286, - "hostname": "us6286.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8389, + "hostname": "us8389.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.69.11" + "143.244.61.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6287, - "hostname": "us6287.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8390, + "hostname": "us8390.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.73.43" + "143.244.61.238" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6287, - "hostname": "us6287.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8390, + "hostname": "us8390.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.73.43" + "143.244.61.238" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6288, - "hostname": "us6288.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8391, + "hostname": "us8391.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.73.35" + "143.244.61.241" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6288, - "hostname": "us6288.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8391, + "hostname": "us8391.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.73.35" + "143.244.61.241" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6289, - "hostname": "us6289.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8780, + "hostname": "us8780.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.73.27" + "143.244.61.65" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6289, - "hostname": "us6289.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8780, + "hostname": "us8780.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.73.27" + "143.244.61.65" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6290, - "hostname": "us6290.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8781, + "hostname": "us8781.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.174.17.107" + "143.244.61.67" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6290, - "hostname": "us6290.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8781, + "hostname": "us8781.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.174.17.107" + "143.244.61.67" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6291, - "hostname": "us6291.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8782, + "hostname": "us8782.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.69.195" + "143.244.61.249" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6291, - "hostname": "us6291.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8782, + "hostname": "us8782.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.69.195" + "143.244.61.249" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6292, - "hostname": "us6292.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8783, + "hostname": "us8783.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.69.235" + "143.244.61.70" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6292, - "hostname": "us6292.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8783, + "hostname": "us8783.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.69.235" + "143.244.61.70" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6293, - "hostname": "us6293.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8784, + "hostname": "us8784.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.69.227" + "143.244.61.71" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6293, - "hostname": "us6293.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8784, + "hostname": "us8784.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.69.227" + "143.244.61.71" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6294, - "hostname": "us6294.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8785, + "hostname": "us8785.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.69.147" + "143.244.61.73" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6294, - "hostname": "us6294.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8785, + "hostname": "us8785.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.69.147" + "143.244.61.73" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6295, - "hostname": "us6295.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8792, + "hostname": "us8792.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.69.203" + "138.199.42.226" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6295, - "hostname": "us6295.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8792, + "hostname": "us8792.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.69.203" + "138.199.42.226" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6296, - "hostname": "us6296.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8793, + "hostname": "us8793.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.73.3" + "138.199.42.231" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6296, - "hostname": "us6296.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8793, + "hostname": "us8793.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.73.3" + "138.199.42.231" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6298, - "hostname": "us6298.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8794, + "hostname": "us8794.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.69.155" + "138.199.42.236" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6298, - "hostname": "us6298.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8794, + "hostname": "us8794.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.69.155" + "138.199.42.236" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6299, - "hostname": "us6299.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8795, + "hostname": "us8795.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.59.155" + "138.199.42.241" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6299, - "hostname": "us6299.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8795, + "hostname": "us8795.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.59.155" + "138.199.42.241" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6300, - "hostname": "us6300.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8796, + "hostname": "us8796.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "107.173.69.219" + "138.199.42.246" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 6300, - "hostname": "us6300.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8796, + "hostname": "us8796.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "107.173.69.219" + "138.199.42.246" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9012, - "hostname": "us9012.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8797, + "hostname": "us8797.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.100" + "138.199.42.251" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9012, - "hostname": "us9012.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8797, + "hostname": "us8797.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.100" + "138.199.42.251" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9013, - "hostname": "us9013.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8798, + "hostname": "us8798.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.102" + "143.244.61.80" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9013, - "hostname": "us9013.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8798, + "hostname": "us8798.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.102" + "143.244.61.80" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9014, - "hostname": "us9014.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9295, + "hostname": "us9295.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.104" + "185.203.219.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9014, - "hostname": "us9014.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9295, + "hostname": "us9295.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.104" + "185.203.219.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9015, - "hostname": "us9015.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9296, + "hostname": "us9296.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.106" + "185.203.219.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9015, - "hostname": "us9015.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9296, + "hostname": "us9296.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.106" + "185.203.219.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9016, - "hostname": "us9016.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9297, + "hostname": "us9297.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.108" + "185.203.219.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9016, - "hostname": "us9016.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9297, + "hostname": "us9297.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.108" + "185.203.219.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9017, - "hostname": "us9017.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9298, + "hostname": "us9298.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.110" + "185.203.219.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9017, - "hostname": "us9017.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9298, + "hostname": "us9298.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.110" + "185.203.219.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9018, - "hostname": "us9018.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9299, + "hostname": "us9299.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.112" + "185.203.219.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9018, - "hostname": "us9018.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9299, + "hostname": "us9299.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.112" + "185.203.219.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9019, - "hostname": "us9019.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9300, + "hostname": "us9300.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.114" + "185.203.219.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9019, - "hostname": "us9019.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9300, + "hostname": "us9300.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.114" + "185.203.219.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9020, - "hostname": "us9020.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9301, + "hostname": "us9301.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.116" + "185.203.219.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9020, - "hostname": "us9020.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9301, + "hostname": "us9301.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.116" + "185.203.219.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9021, - "hostname": "us9021.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9302, + "hostname": "us9302.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.118" + "185.203.219.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9021, - "hostname": "us9021.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9302, + "hostname": "us9302.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.118" + "185.203.219.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9022, - "hostname": "us9022.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9303, + "hostname": "us9303.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.120" + "185.203.219.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9022, - "hostname": "us9022.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9303, + "hostname": "us9303.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.120" + "185.203.219.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9023, - "hostname": "us9023.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9304, + "hostname": "us9304.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.122" + "185.203.219.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9023, - "hostname": "us9023.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9304, + "hostname": "us9304.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.122" + "185.203.219.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9024, - "hostname": "us9024.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9305, + "hostname": "us9305.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.124" + "185.203.219.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9024, - "hostname": "us9024.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9305, + "hostname": "us9305.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.124" + "185.203.219.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9025, - "hostname": "us9025.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9306, + "hostname": "us9306.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.126" + "185.203.219.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9025, - "hostname": "us9025.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9306, + "hostname": "us9306.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.126" + "185.203.219.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9026, - "hostname": "us9026.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9307, + "hostname": "us9307.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.128" + "185.203.219.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9026, - "hostname": "us9026.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9307, + "hostname": "us9307.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.128" + "185.203.219.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9027, - "hostname": "us9027.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9308, + "hostname": "us9308.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.130" + "185.203.219.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9027, - "hostname": "us9027.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9308, + "hostname": "us9308.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.130" + "185.203.219.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9028, - "hostname": "us9028.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9309, + "hostname": "us9309.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.132" + "185.203.219.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9028, - "hostname": "us9028.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9309, + "hostname": "us9309.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.132" + "185.203.219.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9029, - "hostname": "us9029.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9310, + "hostname": "us9310.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.134" + "185.203.219.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9029, - "hostname": "us9029.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9310, + "hostname": "us9310.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.134" + "185.203.219.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9030, - "hostname": "us9030.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9311, + "hostname": "us9311.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.136" + "185.203.219.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9030, - "hostname": "us9030.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9311, + "hostname": "us9311.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.136" + "185.203.219.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9031, - "hostname": "us9031.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9312, + "hostname": "us9312.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.138" + "185.203.219.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9031, - "hostname": "us9031.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9312, + "hostname": "us9312.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.138" + "185.203.219.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9032, - "hostname": "us9032.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9313, + "hostname": "us9313.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.140" + "185.203.219.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9032, - "hostname": "us9032.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9313, + "hostname": "us9313.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.140" + "185.203.219.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9033, - "hostname": "us9033.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9314, + "hostname": "us9314.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.142" + "185.203.219.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9033, - "hostname": "us9033.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9314, + "hostname": "us9314.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.142" + "185.203.219.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9034, - "hostname": "us9034.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9315, + "hostname": "us9315.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.144" + "185.203.219.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9034, - "hostname": "us9034.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9315, + "hostname": "us9315.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.144" + "185.203.219.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9035, - "hostname": "us9035.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9316, + "hostname": "us9316.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.146" + "185.203.219.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9035, - "hostname": "us9035.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9316, + "hostname": "us9316.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.146" + "185.203.219.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9036, - "hostname": "us9036.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9317, + "hostname": "us9317.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.148" + "185.203.219.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9036, - "hostname": "us9036.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9317, + "hostname": "us9317.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.148" + "185.203.219.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9037, - "hostname": "us9037.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9318, + "hostname": "us9318.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.150" + "185.203.219.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9037, - "hostname": "us9037.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9318, + "hostname": "us9318.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.150" + "185.203.219.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9038, - "hostname": "us9038.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9319, + "hostname": "us9319.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.152" + "185.203.219.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9038, - "hostname": "us9038.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9319, + "hostname": "us9319.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.152" + "185.203.219.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9039, - "hostname": "us9039.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9320, + "hostname": "us9320.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.154" + "185.203.219.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9039, - "hostname": "us9039.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9320, + "hostname": "us9320.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.154" + "185.203.219.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9040, - "hostname": "us9040.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9321, + "hostname": "us9321.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.156" + "185.203.219.152" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9040, - "hostname": "us9040.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9321, + "hostname": "us9321.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.156" + "185.203.219.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9041, - "hostname": "us9041.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9322, + "hostname": "us9322.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.158" + "185.203.219.154" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9041, - "hostname": "us9041.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9322, + "hostname": "us9322.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.158" + "185.203.219.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9042, - "hostname": "us9042.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9323, + "hostname": "us9323.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.160" + "185.203.219.156" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9042, - "hostname": "us9042.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9323, + "hostname": "us9323.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.160" + "185.203.219.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9043, - "hostname": "us9043.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9324, + "hostname": "us9324.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.14.195.162" + "185.203.219.158" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Buffalo", - "number": 9043, - "hostname": "us9043.nordvpn.com", - "wgpubkey": "dzMgdcXyF4Q95ayR8TEBYAL5Op+RuFEB/WGq2usxkFA=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9324, + "hostname": "us9324.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "45.14.195.162" + "185.203.219.158" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8474, - "hostname": "us8474.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9325, + "hostname": "us9325.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.100" + "185.203.219.160" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8474, - "hostname": "us8474.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9325, + "hostname": "us9325.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.100" + "185.203.219.160" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8475, - "hostname": "us8475.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9326, + "hostname": "us9326.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.102" + "185.203.219.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8475, - "hostname": "us8475.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9326, + "hostname": "us9326.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.102" + "185.203.219.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8476, - "hostname": "us8476.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9718, + "hostname": "us9718.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.104" + "181.215.172.4" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8476, - "hostname": "us8476.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9718, + "hostname": "us9718.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.104" + "181.215.172.4" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8477, - "hostname": "us8477.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9719, + "hostname": "us9719.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.106" + "181.215.172.20" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8477, - "hostname": "us8477.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9719, + "hostname": "us9719.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.106" + "181.215.172.20" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8478, - "hostname": "us8478.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9720, + "hostname": "us9720.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.108" + "181.215.172.36" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8478, - "hostname": "us8478.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9720, + "hostname": "us9720.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.108" + "181.215.172.36" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8479, - "hostname": "us8479.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9721, + "hostname": "us9721.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.110" + "181.215.172.52" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8479, - "hostname": "us8479.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9721, + "hostname": "us9721.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.110" + "181.215.172.52" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8480, - "hostname": "us8480.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9722, + "hostname": "us9722.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.112" + "181.215.172.68" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8480, - "hostname": "us8480.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9722, + "hostname": "us9722.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.112" + "181.215.172.68" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8481, - "hostname": "us8481.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9723, + "hostname": "us9723.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.114" + "181.215.172.84" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8481, - "hostname": "us8481.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9723, + "hostname": "us9723.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.114" + "181.215.172.84" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8482, - "hostname": "us8482.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9724, + "hostname": "us9724.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.116" + "181.215.172.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8482, - "hostname": "us8482.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9724, + "hostname": "us9724.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.116" + "181.215.172.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8483, - "hostname": "us8483.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9725, + "hostname": "us9725.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.118" + "181.215.172.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8483, - "hostname": "us8483.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9725, + "hostname": "us9725.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.118" + "181.215.172.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8484, - "hostname": "us8484.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9726, + "hostname": "us9726.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.120" + "181.215.172.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8484, - "hostname": "us8484.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9726, + "hostname": "us9726.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.120" + "181.215.172.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8485, - "hostname": "us8485.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9727, + "hostname": "us9727.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.122" + "181.215.172.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8485, - "hostname": "us8485.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9727, + "hostname": "us9727.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.122" + "181.215.172.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8486, - "hostname": "us8486.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9728, + "hostname": "us9728.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.124" + "181.215.172.164" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8486, - "hostname": "us8486.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9728, + "hostname": "us9728.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.124" + "181.215.172.164" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8487, - "hostname": "us8487.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9729, + "hostname": "us9729.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.126" + "181.215.172.180" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8487, - "hostname": "us8487.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9729, + "hostname": "us9729.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.126" + "181.215.172.180" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8488, - "hostname": "us8488.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9730, + "hostname": "us9730.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.128" + "181.215.172.195" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8488, - "hostname": "us8488.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9730, + "hostname": "us9730.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.128" + "181.215.172.195" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8489, - "hostname": "us8489.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9731, + "hostname": "us9731.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.130" + "181.215.172.210" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8489, - "hostname": "us8489.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9731, + "hostname": "us9731.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.130" + "181.215.172.210" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8490, - "hostname": "us8490.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9732, + "hostname": "us9732.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.132" + "181.215.172.225" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8490, - "hostname": "us8490.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9732, + "hostname": "us9732.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.132" + "181.215.172.225" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8491, - "hostname": "us8491.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9733, + "hostname": "us9733.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.134" + "181.215.172.240" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8491, - "hostname": "us8491.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9733, + "hostname": "us9733.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.134" + "181.215.172.240" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8492, - "hostname": "us8492.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9734, + "hostname": "us9734.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.136" + "181.215.195.4" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8492, - "hostname": "us8492.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9734, + "hostname": "us9734.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.136" + "181.215.195.4" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8493, - "hostname": "us8493.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9735, + "hostname": "us9735.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.138" + "181.215.195.20" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8493, - "hostname": "us8493.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9735, + "hostname": "us9735.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.138" + "181.215.195.20" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8494, - "hostname": "us8494.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9736, + "hostname": "us9736.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.140" + "181.215.195.36" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8494, - "hostname": "us8494.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9736, + "hostname": "us9736.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.140" + "181.215.195.36" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8495, - "hostname": "us8495.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9737, + "hostname": "us9737.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.142" + "181.215.195.52" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8495, - "hostname": "us8495.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9737, + "hostname": "us9737.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.142" + "181.215.195.52" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8496, - "hostname": "us8496.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9833, + "hostname": "us9833.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.144" + "181.215.195.68" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8496, - "hostname": "us8496.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9833, + "hostname": "us9833.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.144" + "181.215.195.68" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8497, - "hostname": "us8497.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9834, + "hostname": "us9834.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.117.146" + "181.215.195.84" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 8497, - "hostname": "us8497.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9834, + "hostname": "us9834.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "192.145.117.146" + "181.215.195.84" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10021, - "hostname": "us10021.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9835, + "hostname": "us9835.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.100" + "181.215.195.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10021, - "hostname": "us10021.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9835, + "hostname": "us9835.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.100" + "181.215.195.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10022, - "hostname": "us10022.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9836, + "hostname": "us9836.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.102" + "181.215.195.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10022, - "hostname": "us10022.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9836, + "hostname": "us9836.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.102" + "181.215.195.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10023, - "hostname": "us10023.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9837, + "hostname": "us9837.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.104" + "181.215.195.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10023, - "hostname": "us10023.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9837, + "hostname": "us9837.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.104" + "181.215.195.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10024, - "hostname": "us10024.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9838, + "hostname": "us9838.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.106" + "181.215.195.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10024, - "hostname": "us10024.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9838, + "hostname": "us9838.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.106" + "181.215.195.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10025, - "hostname": "us10025.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9839, + "hostname": "us9839.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.108" + "181.215.195.164" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10025, - "hostname": "us10025.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9839, + "hostname": "us9839.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.108" + "181.215.195.164" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10026, - "hostname": "us10026.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9840, + "hostname": "us9840.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.110" + "181.215.195.180" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10026, - "hostname": "us10026.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9840, + "hostname": "us9840.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.110" + "181.215.195.180" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10027, - "hostname": "us10027.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9841, + "hostname": "us9841.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.112" + "181.215.195.195" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10027, - "hostname": "us10027.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9841, + "hostname": "us9841.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.112" + "181.215.195.195" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10028, - "hostname": "us10028.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9842, + "hostname": "us9842.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.114" + "181.215.195.210" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10028, - "hostname": "us10028.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9842, + "hostname": "us9842.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.114" + "181.215.195.210" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10029, - "hostname": "us10029.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9843, + "hostname": "us9843.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.116" + "181.215.195.225" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10029, - "hostname": "us10029.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9843, + "hostname": "us9843.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.116" + "181.215.195.225" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10030, - "hostname": "us10030.nordvpn.com", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9844, + "hostname": "us9844.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.182.32.118" + "181.215.195.240" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Charlotte", - "number": 10030, - "hostname": "us10030.nordvpn.com", - "wgpubkey": "xZSvRIZAae4khlgXjkeLVVtXTj2N1V2sORI/T4nKkDU=", + "city": "Chicago", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9844, + "hostname": "us9844.nordvpn.com", + "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "5.182.32.118" + "181.215.195.240" ] }, { @@ -141444,12 +195100,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6301, - "hostname": "us6301.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9885, + "hostname": "us9885.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.235" + "169.150.232.142" ] }, { @@ -141457,11 +195117,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6301, - "hostname": "us6301.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9885, + "hostname": "us9885.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.235" + "169.150.232.142" ] }, { @@ -141469,12 +195133,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6302, - "hostname": "us6302.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9886, + "hostname": "us9886.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.203" + "169.150.232.144" ] }, { @@ -141482,11 +195150,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6302, - "hostname": "us6302.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9886, + "hostname": "us9886.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.203" + "169.150.232.144" ] }, { @@ -141494,12 +195166,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6303, - "hostname": "us6303.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9887, + "hostname": "us9887.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.163" + "169.150.232.146" ] }, { @@ -141507,11 +195183,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6303, - "hostname": "us6303.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9887, + "hostname": "us9887.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.163" + "169.150.232.146" ] }, { @@ -141519,12 +195199,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6304, - "hostname": "us6304.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9888, + "hostname": "us9888.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.179" + "169.150.232.148" ] }, { @@ -141532,11 +195216,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6304, - "hostname": "us6304.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9888, + "hostname": "us9888.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.179" + "169.150.232.148" ] }, { @@ -141544,12 +195232,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6305, - "hostname": "us6305.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9889, + "hostname": "us9889.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.243" + "169.150.232.150" ] }, { @@ -141557,11 +195249,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6305, - "hostname": "us6305.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9889, + "hostname": "us9889.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.243" + "169.150.232.150" ] }, { @@ -141569,12 +195265,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6306, - "hostname": "us6306.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9890, + "hostname": "us9890.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.227" + "169.150.232.152" ] }, { @@ -141582,11 +195282,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6306, - "hostname": "us6306.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9890, + "hostname": "us9890.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.227" + "169.150.232.152" ] }, { @@ -141594,12 +195298,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6307, - "hostname": "us6307.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9891, + "hostname": "us9891.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.171" + "169.150.232.154" ] }, { @@ -141607,11 +195315,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6307, - "hostname": "us6307.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9891, + "hostname": "us9891.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.171" + "169.150.232.154" ] }, { @@ -141619,12 +195331,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6308, - "hostname": "us6308.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9892, + "hostname": "us9892.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.211" + "169.150.232.156" ] }, { @@ -141632,11 +195348,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6308, - "hostname": "us6308.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9892, + "hostname": "us9892.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.211" + "169.150.232.156" ] }, { @@ -141644,12 +195364,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6309, - "hostname": "us6309.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9893, + "hostname": "us9893.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.187" + "169.150.232.158" ] }, { @@ -141657,11 +195381,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6309, - "hostname": "us6309.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9893, + "hostname": "us9893.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.187" + "169.150.232.158" ] }, { @@ -141669,12 +195397,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6310, - "hostname": "us6310.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9894, + "hostname": "us9894.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.139" + "169.150.232.160" ] }, { @@ -141682,11 +195414,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6310, - "hostname": "us6310.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9894, + "hostname": "us9894.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.139" + "169.150.232.160" ] }, { @@ -141694,12 +195430,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6311, - "hostname": "us6311.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9895, + "hostname": "us9895.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.155" + "169.150.232.162" ] }, { @@ -141707,11 +195447,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6311, - "hostname": "us6311.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9895, + "hostname": "us9895.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.155" + "169.150.232.162" ] }, { @@ -141719,12 +195463,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6312, - "hostname": "us6312.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9896, + "hostname": "us9896.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.147" + "169.150.232.164" ] }, { @@ -141732,11 +195480,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6312, - "hostname": "us6312.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9896, + "hostname": "us9896.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.147" + "169.150.232.164" ] }, { @@ -141744,12 +195496,16 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6313, - "hostname": "us6313.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9897, + "hostname": "us9897.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.115" + "169.150.232.166" ] }, { @@ -141757,11 +195513,15 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6313, - "hostname": "us6313.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9897, + "hostname": "us9897.nordvpn.com", "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", "ips": [ - "172.93.177.115" + "169.150.232.166" ] }, { @@ -141769,24 +195529,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6314, - "hostname": "us6314.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10291, + "hostname": "us10291.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.107" + "169.150.232.95" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6314, - "hostname": "us6314.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10292, + "hostname": "us10292.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.107" + "169.150.232.97" ] }, { @@ -141794,24 +195561,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6315, - "hostname": "us6315.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10293, + "hostname": "us10293.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.91" + "169.150.232.90" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6315, - "hostname": "us6315.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10294, + "hostname": "us10294.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.91" + "169.150.232.92" ] }, { @@ -141819,24 +195593,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6316, - "hostname": "us6316.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10303, + "hostname": "us10303.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.83" + "169.150.232.105" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6316, - "hostname": "us6316.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10304, + "hostname": "us10304.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.83" + "169.150.232.107" ] }, { @@ -141844,24 +195625,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6317, - "hostname": "us6317.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10305, + "hostname": "us10305.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.75" + "169.150.232.100" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6317, - "hostname": "us6317.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10306, + "hostname": "us10306.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.75" + "169.150.232.102" ] }, { @@ -141869,24 +195657,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6318, - "hostname": "us6318.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10367, + "hostname": "us10367.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.59" + "169.150.232.115" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6318, - "hostname": "us6318.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10368, + "hostname": "us10368.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.59" + "169.150.232.117" ] }, { @@ -141894,24 +195689,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6319, - "hostname": "us6319.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10375, + "hostname": "us10375.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.67" + "169.150.232.120" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6319, - "hostname": "us6319.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10376, + "hostname": "us10376.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.67" + "169.150.232.122" ] }, { @@ -141919,24 +195721,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6320, - "hostname": "us6320.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10377, + "hostname": "us10377.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.51" + "149.34.240.231" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6320, - "hostname": "us6320.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10378, + "hostname": "us10378.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.51" + "149.34.240.233" ] }, { @@ -141944,24 +195753,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6321, - "hostname": "us6321.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10403, + "hostname": "us10403.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.43" + "149.34.240.236" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6321, - "hostname": "us6321.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10404, + "hostname": "us10404.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.43" + "149.34.240.238" ] }, { @@ -141969,24 +195785,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6322, - "hostname": "us6322.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10460, + "hostname": "us10460.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.35" + "149.34.240.246" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6322, - "hostname": "us6322.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10461, + "hostname": "us10461.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.35" + "149.34.240.248" ] }, { @@ -141994,24 +195817,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6323, - "hostname": "us6323.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10464, + "hostname": "us10464.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.11" + "149.34.240.241" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6323, - "hostname": "us6323.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10465, + "hostname": "us10465.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.11" + "149.34.240.243" ] }, { @@ -142019,24 +195849,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6324, - "hostname": "us6324.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10488, + "hostname": "us10488.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.3" + "169.150.232.66" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6324, - "hostname": "us6324.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10489, + "hostname": "us10489.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.3" + "169.150.232.68" ] }, { @@ -142044,24 +195881,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6533, - "hostname": "us6533.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10496, + "hostname": "us10496.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.251" + "169.150.232.71" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6533, - "hostname": "us6533.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10497, + "hostname": "us10497.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.251" + "169.150.232.73" ] }, { @@ -142069,24 +195913,47 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6534, - "hostname": "us6534.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10515, + "hostname": "us10515.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.99" + "169.150.232.145" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6534, - "hostname": "us6534.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10516, + "hostname": "us10516.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.99" + "169.150.232.149" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Chicago", + "categories": [ + "Dedicated IP" + ], + "number": 10522, + "hostname": "us10522.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "169.150.232.155" ] }, { @@ -142094,24 +195961,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6535, - "hostname": "us6535.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10524, + "hostname": "us10524.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.27" + "169.150.232.165" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6535, - "hostname": "us6535.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10525, + "hostname": "us10525.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.27" + "169.150.232.168" ] }, { @@ -142119,24 +195993,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6536, - "hostname": "us6536.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10526, + "hostname": "us10526.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.19" + "149.34.240.226" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6536, - "hostname": "us6536.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10527, + "hostname": "us10527.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.19" + "149.34.240.228" ] }, { @@ -142144,24 +196025,31 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6537, - "hostname": "us6537.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10574, + "hostname": "us10574.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.219" + "169.150.232.171" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6537, - "hostname": "us6537.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10575, + "hostname": "us10575.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.219" + "169.150.232.173" ] }, { @@ -142169,3149 +196057,4148 @@ "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6538, - "hostname": "us6538.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10576, + "hostname": "us10576.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.195" + "169.150.232.176" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Chicago", - "number": 6538, - "hostname": "us6538.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "categories": [ + "Dedicated IP" + ], + "number": 10577, + "hostname": "us10577.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.195" + "169.150.232.178" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6539, - "hostname": "us6539.nordvpn.com", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 2943, + "hostname": "us2943.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.123" + "89.187.175.97" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6539, - "hostname": "us6539.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 2944, + "hostname": "us2944.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.123" + "89.187.175.98" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6540, - "hostname": "us6540.nordvpn.com", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4953, + "hostname": "us4953.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "172.93.177.131" + "89.187.175.53" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6540, - "hostname": "us6540.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4954, + "hostname": "us4954.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "172.93.177.131" + "89.187.175.54" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6572, - "hostname": "us6572.nordvpn.com", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4961, + "hostname": "us4961.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.182" + "89.187.175.57" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6572, - "hostname": "us6572.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4962, + "hostname": "us4962.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "89.187.183.182" + "89.187.175.58" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6573, - "hostname": "us6573.nordvpn.com", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4967, + "hostname": "us4967.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.177" + "212.102.40.54" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6573, - "hostname": "us6573.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4968, + "hostname": "us4968.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "89.187.183.177" + "212.102.40.55" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6574, - "hostname": "us6574.nordvpn.com", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4980, + "hostname": "us4980.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.172" + "212.102.40.57" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6574, - "hostname": "us6574.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4981, + "hostname": "us4981.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "89.187.183.172" + "212.102.40.58" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6575, - "hostname": "us6575.nordvpn.com", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4986, + "hostname": "us4986.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.167" + "37.19.200.46" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6575, - "hostname": "us6575.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4987, + "hostname": "us4987.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "89.187.183.167" + "37.19.200.47" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6576, - "hostname": "us6576.nordvpn.com", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4996, + "hostname": "us4996.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.162" + "37.19.200.52" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6576, - "hostname": "us6576.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4997, + "hostname": "us4997.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "89.187.183.162" + "37.19.200.53" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6709, - "hostname": "us6709.nordvpn.com", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4998, + "hostname": "us4998.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.151" + "37.19.200.49" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6709, - "hostname": "us6709.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Dedicated IP" + ], + "number": 4999, + "hostname": "us4999.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "89.187.183.151" + "37.19.200.50" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6710, - "hostname": "us6710.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5055, + "hostname": "us5055.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.146" + "89.187.175.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6710, - "hostname": "us6710.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5055, + "hostname": "us5055.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.183.146" + "89.187.175.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6721, - "hostname": "us6721.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5482, + "hostname": "us5482.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.66" + "212.102.40.50" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6721, - "hostname": "us6721.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5482, + "hostname": "us5482.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.66" + "212.102.40.50" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6722, - "hostname": "us6722.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5483, + "hostname": "us5483.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.71" + "212.102.40.45" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6722, - "hostname": "us6722.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5483, + "hostname": "us5483.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.71" + "212.102.40.45" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6723, - "hostname": "us6723.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5484, + "hostname": "us5484.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.76" + "212.102.40.40" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6723, - "hostname": "us6723.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5484, + "hostname": "us5484.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.76" + "212.102.40.40" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6860, - "hostname": "us6860.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5485, + "hostname": "us5485.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.140.11" + "212.102.40.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6860, - "hostname": "us6860.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5485, + "hostname": "us5485.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "64.44.140.11" + "212.102.40.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6861, - "hostname": "us6861.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6587, + "hostname": "us6587.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.140.27" + "89.187.175.47" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6861, - "hostname": "us6861.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6587, + "hostname": "us6587.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "64.44.140.27" + "89.187.175.47" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6862, - "hostname": "us6862.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6588, + "hostname": "us6588.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.140.35" + "89.187.175.42" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6862, - "hostname": "us6862.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6588, + "hostname": "us6588.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "64.44.140.35" + "89.187.175.42" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6863, - "hostname": "us6863.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6589, + "hostname": "us6589.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.140.19" + "89.187.175.37" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6863, - "hostname": "us6863.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6589, + "hostname": "us6589.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "64.44.140.19" + "89.187.175.37" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6864, - "hostname": "us6864.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6590, + "hostname": "us6590.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.140.51" + "89.187.175.32" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6864, - "hostname": "us6864.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6590, + "hostname": "us6590.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "64.44.140.51" + "89.187.175.32" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6865, - "hostname": "us6865.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6591, + "hostname": "us6591.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.140.59" + "89.187.175.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6865, - "hostname": "us6865.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6591, + "hostname": "us6591.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "64.44.140.59" + "89.187.175.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6866, - "hostname": "us6866.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6592, + "hostname": "us6592.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.140.43" + "89.187.175.22" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6866, - "hostname": "us6866.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6592, + "hostname": "us6592.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "64.44.140.43" + "89.187.175.22" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6867, - "hostname": "us6867.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6593, + "hostname": "us6593.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.140.3" + "89.187.175.17" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6867, - "hostname": "us6867.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6593, + "hostname": "us6593.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "64.44.140.3" + "89.187.175.17" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6880, - "hostname": "us6880.nordvpn.com", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6724, + "hostname": "us6724.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.81" + "89.187.175.12" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6880, - "hostname": "us6880.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6724, + "hostname": "us6724.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.81" + "89.187.175.12" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6881, - "hostname": "us6881.nordvpn.com", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6725, + "hostname": "us6725.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.86" + "89.187.175.7" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6881, - "hostname": "us6881.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6725, + "hostname": "us6725.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.86" + "89.187.175.7" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6882, - "hostname": "us6882.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8095, + "hostname": "us8095.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.91" + "185.247.70.3" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6882, - "hostname": "us6882.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8095, + "hostname": "us8095.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.91" + "185.247.70.3" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6883, - "hostname": "us6883.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8096, + "hostname": "us8096.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.96" + "185.247.70.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6883, - "hostname": "us6883.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8096, + "hostname": "us8096.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.96" + "185.247.70.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6945, - "hostname": "us6945.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8097, + "hostname": "us8097.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.101" + "185.247.70.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 6945, - "hostname": "us6945.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8097, + "hostname": "us8097.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.101" + "185.247.70.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8382, - "hostname": "us8382.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8098, + "hostname": "us8098.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.182.121" + "185.247.70.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8382, - "hostname": "us8382.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8098, + "hostname": "us8098.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.182.121" + "185.247.70.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8383, - "hostname": "us8383.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8099, + "hostname": "us8099.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.186" + "185.247.70.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8383, - "hostname": "us8383.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8099, + "hostname": "us8099.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.183.186" + "185.247.70.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8384, - "hostname": "us8384.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8100, + "hostname": "us8100.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.226" + "185.247.70.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8384, - "hostname": "us8384.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8100, + "hostname": "us8100.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.226" + "185.247.70.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8385, - "hostname": "us8385.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8101, + "hostname": "us8101.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.135" + "185.247.70.51" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8385, - "hostname": "us8385.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8101, + "hostname": "us8101.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.183.135" + "185.247.70.51" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8386, - "hostname": "us8386.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8102, + "hostname": "us8102.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.183.138" + "185.247.70.59" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8386, - "hostname": "us8386.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8102, + "hostname": "us8102.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.183.138" + "185.247.70.59" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8387, - "hostname": "us8387.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8103, + "hostname": "us8103.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.229" + "185.247.70.67" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8387, - "hostname": "us8387.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8103, + "hostname": "us8103.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.229" + "185.247.70.67" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8388, - "hostname": "us8388.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8104, + "hostname": "us8104.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.232" + "185.247.70.75" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8388, - "hostname": "us8388.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8104, + "hostname": "us8104.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.232" + "185.247.70.75" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8389, - "hostname": "us8389.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8105, + "hostname": "us8105.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.235" + "185.247.70.83" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8389, - "hostname": "us8389.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8105, + "hostname": "us8105.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.235" + "185.247.70.83" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8390, - "hostname": "us8390.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8106, + "hostname": "us8106.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.238" + "185.247.70.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8390, - "hostname": "us8390.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8106, + "hostname": "us8106.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.238" + "185.247.70.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8391, - "hostname": "us8391.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8107, + "hostname": "us8107.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.241" + "185.247.70.99" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8391, - "hostname": "us8391.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8107, + "hostname": "us8107.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.241" + "185.247.70.99" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8780, - "hostname": "us8780.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8108, + "hostname": "us8108.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.65" + "185.247.70.107" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8780, - "hostname": "us8780.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8108, + "hostname": "us8108.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.65" + "185.247.70.107" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8781, - "hostname": "us8781.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8109, + "hostname": "us8109.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.67" + "185.247.70.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8781, - "hostname": "us8781.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8109, + "hostname": "us8109.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.67" + "185.247.70.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8782, - "hostname": "us8782.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8110, + "hostname": "us8110.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.249" + "185.247.70.123" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8782, - "hostname": "us8782.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8110, + "hostname": "us8110.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.249" + "185.247.70.123" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8783, - "hostname": "us8783.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8111, + "hostname": "us8111.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.70" + "185.247.70.131" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8783, - "hostname": "us8783.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8111, + "hostname": "us8111.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.70" + "185.247.70.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8784, - "hostname": "us8784.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8112, + "hostname": "us8112.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.71" + "185.247.70.139" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8784, - "hostname": "us8784.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8112, + "hostname": "us8112.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.71" + "185.247.70.139" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8785, - "hostname": "us8785.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8113, + "hostname": "us8113.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.73" + "185.247.70.147" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8785, - "hostname": "us8785.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8113, + "hostname": "us8113.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.73" + "185.247.70.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8792, - "hostname": "us8792.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8114, + "hostname": "us8114.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.42.226" + "185.247.70.155" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8792, - "hostname": "us8792.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8114, + "hostname": "us8114.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "138.199.42.226" + "185.247.70.155" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8793, - "hostname": "us8793.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8115, + "hostname": "us8115.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.42.231" + "185.247.70.163" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8793, - "hostname": "us8793.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8115, + "hostname": "us8115.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "138.199.42.231" + "185.247.70.163" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8794, - "hostname": "us8794.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8116, + "hostname": "us8116.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.42.236" + "185.247.70.171" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8794, - "hostname": "us8794.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8116, + "hostname": "us8116.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "138.199.42.236" + "185.247.70.171" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8795, - "hostname": "us8795.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8117, + "hostname": "us8117.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.42.241" + "185.247.70.179" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8795, - "hostname": "us8795.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8117, + "hostname": "us8117.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "138.199.42.241" + "185.247.70.179" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8796, - "hostname": "us8796.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8118, + "hostname": "us8118.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.42.246" + "185.247.70.187" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8796, - "hostname": "us8796.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8118, + "hostname": "us8118.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "138.199.42.246" + "185.247.70.187" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8797, - "hostname": "us8797.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8119, + "hostname": "us8119.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.42.251" + "185.247.70.195" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8797, - "hostname": "us8797.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8119, + "hostname": "us8119.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "138.199.42.251" + "185.247.70.195" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8798, - "hostname": "us8798.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8120, + "hostname": "us8120.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "143.244.61.80" + "185.247.70.203" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 8798, - "hostname": "us8798.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8120, + "hostname": "us8120.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "143.244.61.80" + "185.247.70.203" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9295, - "hostname": "us9295.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8121, + "hostname": "us8121.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.100" + "185.247.70.211" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9295, - "hostname": "us9295.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8121, + "hostname": "us8121.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.100" + "185.247.70.211" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9296, - "hostname": "us9296.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8122, + "hostname": "us8122.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.102" + "185.247.70.219" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9296, - "hostname": "us9296.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8122, + "hostname": "us8122.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.102" + "185.247.70.219" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9297, - "hostname": "us9297.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8123, + "hostname": "us8123.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.104" + "185.247.70.227" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9297, - "hostname": "us9297.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8123, + "hostname": "us8123.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.104" + "185.247.70.227" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9298, - "hostname": "us9298.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8124, + "hostname": "us8124.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.106" + "185.247.70.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9298, - "hostname": "us9298.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8124, + "hostname": "us8124.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.106" + "185.247.70.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9299, - "hostname": "us9299.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8125, + "hostname": "us8125.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.108" + "185.247.70.243" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9299, - "hostname": "us9299.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8125, + "hostname": "us8125.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.108" + "185.247.70.243" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9300, - "hostname": "us9300.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8126, + "hostname": "us8126.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.110" + "185.247.70.251" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9300, - "hostname": "us9300.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8126, + "hostname": "us8126.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.110" + "185.247.70.251" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9301, - "hostname": "us9301.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8127, + "hostname": "us8127.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.112" + "194.110.112.131" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9301, - "hostname": "us9301.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8127, + "hostname": "us8127.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.112" + "194.110.112.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9302, - "hostname": "us9302.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8128, + "hostname": "us8128.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.114" + "194.110.112.139" ] }, { "vpn": "wireguard", - "country": "United States", - "region": "The Americas", - "city": "Chicago", - "number": 9302, - "hostname": "us9302.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "country": "United States", + "region": "The Americas", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8128, + "hostname": "us8128.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.114" + "194.110.112.139" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9303, - "hostname": "us9303.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8129, + "hostname": "us8129.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.116" + "194.110.112.147" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9303, - "hostname": "us9303.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8129, + "hostname": "us8129.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.116" + "194.110.112.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9304, - "hostname": "us9304.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8130, + "hostname": "us8130.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.118" + "194.110.112.155" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9304, - "hostname": "us9304.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8130, + "hostname": "us8130.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.118" + "194.110.112.155" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9305, - "hostname": "us9305.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8131, + "hostname": "us8131.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.120" + "194.110.112.163" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9305, - "hostname": "us9305.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8131, + "hostname": "us8131.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.120" + "194.110.112.163" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9306, - "hostname": "us9306.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8132, + "hostname": "us8132.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.122" + "194.110.112.171" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9306, - "hostname": "us9306.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8132, + "hostname": "us8132.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.122" + "194.110.112.171" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9307, - "hostname": "us9307.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8133, + "hostname": "us8133.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.124" + "194.110.112.179" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9307, - "hostname": "us9307.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8133, + "hostname": "us8133.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.124" + "194.110.112.179" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9308, - "hostname": "us9308.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8134, + "hostname": "us8134.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.126" + "194.110.112.187" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9308, - "hostname": "us9308.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8134, + "hostname": "us8134.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.126" + "194.110.112.187" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9309, - "hostname": "us9309.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9143, + "hostname": "us9143.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.128" + "2.56.190.6" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9309, - "hostname": "us9309.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9143, + "hostname": "us9143.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.128" + "2.56.190.6" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9310, - "hostname": "us9310.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9144, + "hostname": "us9144.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.130" + "2.56.190.12" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9310, - "hostname": "us9310.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9144, + "hostname": "us9144.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.130" + "2.56.190.12" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9311, - "hostname": "us9311.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9145, + "hostname": "us9145.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.132" + "2.56.190.18" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9311, - "hostname": "us9311.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9145, + "hostname": "us9145.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.132" + "2.56.190.18" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9312, - "hostname": "us9312.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9146, + "hostname": "us9146.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.134" + "2.56.190.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9312, - "hostname": "us9312.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9146, + "hostname": "us9146.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.134" + "2.56.190.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9313, - "hostname": "us9313.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9147, + "hostname": "us9147.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.136" + "2.56.190.8" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9313, - "hostname": "us9313.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9147, + "hostname": "us9147.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.136" + "2.56.190.8" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9314, - "hostname": "us9314.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9148, + "hostname": "us9148.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.138" + "2.56.190.14" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9314, - "hostname": "us9314.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9148, + "hostname": "us9148.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.138" + "2.56.190.14" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9315, - "hostname": "us9315.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9149, + "hostname": "us9149.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.140" + "2.56.190.20" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9315, - "hostname": "us9315.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9149, + "hostname": "us9149.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.140" + "2.56.190.20" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9316, - "hostname": "us9316.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9150, + "hostname": "us9150.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.142" + "2.56.190.26" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9316, - "hostname": "us9316.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9150, + "hostname": "us9150.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.142" + "2.56.190.26" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9317, - "hostname": "us9317.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9151, + "hostname": "us9151.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.144" + "2.56.190.32" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9317, - "hostname": "us9317.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9151, + "hostname": "us9151.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.144" + "2.56.190.32" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9318, - "hostname": "us9318.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9152, + "hostname": "us9152.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.146" + "2.56.190.38" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9318, - "hostname": "us9318.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9152, + "hostname": "us9152.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.146" + "2.56.190.38" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9319, - "hostname": "us9319.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9153, + "hostname": "us9153.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.148" + "2.56.190.45" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9319, - "hostname": "us9319.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9153, + "hostname": "us9153.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.148" + "2.56.190.45" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9320, - "hostname": "us9320.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9154, + "hostname": "us9154.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.150" + "2.56.190.52" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9320, - "hostname": "us9320.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9154, + "hostname": "us9154.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.150" + "2.56.190.52" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9321, - "hostname": "us9321.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9155, + "hostname": "us9155.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.152" + "2.56.190.59" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9321, - "hostname": "us9321.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9155, + "hostname": "us9155.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.152" + "2.56.190.59" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9322, - "hostname": "us9322.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9156, + "hostname": "us9156.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.154" + "2.56.190.66" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9322, - "hostname": "us9322.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9156, + "hostname": "us9156.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.154" + "2.56.190.66" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9323, - "hostname": "us9323.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9157, + "hostname": "us9157.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.156" + "2.56.190.73" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9323, - "hostname": "us9323.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9157, + "hostname": "us9157.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.156" + "2.56.190.73" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9324, - "hostname": "us9324.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9158, + "hostname": "us9158.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.158" + "2.56.190.80" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9324, - "hostname": "us9324.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9158, + "hostname": "us9158.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.158" + "2.56.190.80" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9325, - "hostname": "us9325.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9159, + "hostname": "us9159.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.160" + "2.56.190.87" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9325, - "hostname": "us9325.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9159, + "hostname": "us9159.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.160" + "2.56.190.87" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9326, - "hostname": "us9326.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9160, + "hostname": "us9160.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.219.162" + "2.56.190.94" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9326, - "hostname": "us9326.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9160, + "hostname": "us9160.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.203.219.162" + "2.56.190.94" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9718, - "hostname": "us9718.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9161, + "hostname": "us9161.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.4" + "2.56.190.101" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9718, - "hostname": "us9718.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9161, + "hostname": "us9161.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.4" + "2.56.190.101" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9719, - "hostname": "us9719.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9162, + "hostname": "us9162.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.20" + "2.56.190.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9719, - "hostname": "us9719.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9162, + "hostname": "us9162.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.20" + "2.56.190.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9720, - "hostname": "us9720.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9163, + "hostname": "us9163.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.36" + "2.56.190.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9720, - "hostname": "us9720.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9163, + "hostname": "us9163.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.36" + "2.56.190.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9721, - "hostname": "us9721.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9164, + "hostname": "us9164.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.52" + "2.56.190.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9721, - "hostname": "us9721.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9164, + "hostname": "us9164.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.52" + "2.56.190.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9722, - "hostname": "us9722.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9165, + "hostname": "us9165.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.68" + "2.56.190.129" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9722, - "hostname": "us9722.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9165, + "hostname": "us9165.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.68" + "2.56.190.129" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9723, - "hostname": "us9723.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9166, + "hostname": "us9166.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.84" + "2.56.190.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9723, - "hostname": "us9723.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9166, + "hostname": "us9166.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.84" + "2.56.190.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9724, - "hostname": "us9724.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9167, + "hostname": "us9167.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.100" + "2.56.190.143" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9724, - "hostname": "us9724.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9167, + "hostname": "us9167.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.100" + "2.56.190.143" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9725, - "hostname": "us9725.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9168, + "hostname": "us9168.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.116" + "2.56.190.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9725, - "hostname": "us9725.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9168, + "hostname": "us9168.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.116" + "2.56.190.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9726, - "hostname": "us9726.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9169, + "hostname": "us9169.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.132" + "2.56.190.157" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9726, - "hostname": "us9726.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9169, + "hostname": "us9169.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.132" + "2.56.190.157" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9727, - "hostname": "us9727.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9170, + "hostname": "us9170.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.148" + "2.56.190.164" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9727, - "hostname": "us9727.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9170, + "hostname": "us9170.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.148" + "2.56.190.164" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9728, - "hostname": "us9728.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9171, + "hostname": "us9171.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.164" + "2.56.190.171" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9728, - "hostname": "us9728.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9171, + "hostname": "us9171.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.164" + "2.56.190.171" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9729, - "hostname": "us9729.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9172, + "hostname": "us9172.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.180" + "2.56.190.178" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9729, - "hostname": "us9729.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9172, + "hostname": "us9172.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.180" + "2.56.190.178" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9730, - "hostname": "us9730.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9173, + "hostname": "us9173.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.195" + "2.56.190.185" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9730, - "hostname": "us9730.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9173, + "hostname": "us9173.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.195" + "2.56.190.185" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9731, - "hostname": "us9731.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9174, + "hostname": "us9174.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.210" + "2.56.190.192" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9731, - "hostname": "us9731.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9174, + "hostname": "us9174.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.210" + "2.56.190.192" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9732, - "hostname": "us9732.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9175, + "hostname": "us9175.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.225" + "2.56.190.199" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9732, - "hostname": "us9732.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9175, + "hostname": "us9175.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.225" + "2.56.190.199" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9733, - "hostname": "us9733.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9176, + "hostname": "us9176.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.172.240" + "2.56.190.206" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9733, - "hostname": "us9733.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9176, + "hostname": "us9176.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.172.240" + "2.56.190.206" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9734, - "hostname": "us9734.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9177, + "hostname": "us9177.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.4" + "2.56.190.213" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9734, - "hostname": "us9734.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9177, + "hostname": "us9177.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.4" + "2.56.190.213" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9735, - "hostname": "us9735.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9178, + "hostname": "us9178.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.20" + "2.56.190.220" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9735, - "hostname": "us9735.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9178, + "hostname": "us9178.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.20" + "2.56.190.220" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9736, - "hostname": "us9736.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9179, + "hostname": "us9179.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.36" + "2.56.190.227" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9736, - "hostname": "us9736.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9179, + "hostname": "us9179.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.36" + "2.56.190.227" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9737, - "hostname": "us9737.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9180, + "hostname": "us9180.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.52" + "2.56.190.234" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9737, - "hostname": "us9737.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9180, + "hostname": "us9180.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.52" + "2.56.190.234" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9833, - "hostname": "us9833.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9181, + "hostname": "us9181.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.68" + "2.56.190.241" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9833, - "hostname": "us9833.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9181, + "hostname": "us9181.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.68" + "2.56.190.241" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9834, - "hostname": "us9834.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9182, + "hostname": "us9182.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.84" + "2.56.190.248" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9834, - "hostname": "us9834.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9182, + "hostname": "us9182.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.84" + "2.56.190.248" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9835, - "hostname": "us9835.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9621, + "hostname": "us9621.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.100" + "145.14.135.79" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9835, - "hostname": "us9835.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9621, + "hostname": "us9621.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.100" + "145.14.135.79" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9836, - "hostname": "us9836.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9622, + "hostname": "us9622.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.116" + "145.14.135.66" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9836, - "hostname": "us9836.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9622, + "hostname": "us9622.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.116" + "145.14.135.66" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9837, - "hostname": "us9837.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9623, + "hostname": "us9623.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.132" + "145.14.135.53" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9837, - "hostname": "us9837.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9623, + "hostname": "us9623.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.132" + "145.14.135.53" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9838, - "hostname": "us9838.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9624, + "hostname": "us9624.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.148" + "145.14.135.40" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9838, - "hostname": "us9838.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9624, + "hostname": "us9624.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.148" + "145.14.135.40" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9839, - "hostname": "us9839.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9625, + "hostname": "us9625.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.164" + "145.14.135.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9839, - "hostname": "us9839.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9625, + "hostname": "us9625.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.164" + "145.14.135.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9840, - "hostname": "us9840.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9626, + "hostname": "us9626.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.180" + "145.14.135.14" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9840, - "hostname": "us9840.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9626, + "hostname": "us9626.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.180" + "145.14.135.14" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9841, - "hostname": "us9841.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9698, + "hostname": "us9698.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.195" + "181.214.196.4" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9841, - "hostname": "us9841.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9698, + "hostname": "us9698.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.195" + "181.214.196.4" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9842, - "hostname": "us9842.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9699, + "hostname": "us9699.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.210" + "181.214.196.20" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9842, - "hostname": "us9842.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9699, + "hostname": "us9699.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.210" + "181.214.196.20" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9843, - "hostname": "us9843.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9700, + "hostname": "us9700.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.225" + "181.214.196.36" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9843, - "hostname": "us9843.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9700, + "hostname": "us9700.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.225" + "181.214.196.36" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9844, - "hostname": "us9844.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9701, + "hostname": "us9701.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.195.240" + "181.214.196.52" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9844, - "hostname": "us9844.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9701, + "hostname": "us9701.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "181.215.195.240" + "181.214.196.52" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9885, - "hostname": "us9885.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9702, + "hostname": "us9702.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.142" + "181.214.196.68" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9885, - "hostname": "us9885.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9702, + "hostname": "us9702.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.142" + "181.214.196.68" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9886, - "hostname": "us9886.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9703, + "hostname": "us9703.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.144" + "181.214.196.84" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9886, - "hostname": "us9886.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9703, + "hostname": "us9703.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.144" + "181.214.196.84" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9887, - "hostname": "us9887.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9704, + "hostname": "us9704.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.146" + "181.214.196.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9887, - "hostname": "us9887.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9704, + "hostname": "us9704.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.146" + "181.214.196.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9888, - "hostname": "us9888.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9705, + "hostname": "us9705.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.148" + "181.214.196.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9888, - "hostname": "us9888.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9705, + "hostname": "us9705.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.148" + "181.214.196.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9889, - "hostname": "us9889.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9706, + "hostname": "us9706.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.150" + "181.214.196.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9889, - "hostname": "us9889.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9706, + "hostname": "us9706.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.150" + "181.214.196.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9890, - "hostname": "us9890.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9707, + "hostname": "us9707.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.152" + "181.214.196.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9890, - "hostname": "us9890.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9707, + "hostname": "us9707.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.152" + "181.214.196.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9891, - "hostname": "us9891.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9708, + "hostname": "us9708.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.154" + "181.214.196.164" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9891, - "hostname": "us9891.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9708, + "hostname": "us9708.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.154" + "181.214.196.164" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9892, - "hostname": "us9892.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9709, + "hostname": "us9709.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.156" + "181.214.196.180" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9892, - "hostname": "us9892.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9709, + "hostname": "us9709.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.156" + "181.214.196.180" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9893, - "hostname": "us9893.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9710, + "hostname": "us9710.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.158" + "181.214.196.195" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9893, - "hostname": "us9893.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9710, + "hostname": "us9710.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.158" + "181.214.196.195" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9894, - "hostname": "us9894.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9711, + "hostname": "us9711.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.160" + "181.214.196.210" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9894, - "hostname": "us9894.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9711, + "hostname": "us9711.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.160" + "181.214.196.210" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9895, - "hostname": "us9895.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9712, + "hostname": "us9712.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.162" + "181.214.196.225" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9895, - "hostname": "us9895.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9712, + "hostname": "us9712.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.162" + "181.214.196.225" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9896, - "hostname": "us9896.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9714, + "hostname": "us9714.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.164" + "181.214.226.4" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9896, - "hostname": "us9896.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9714, + "hostname": "us9714.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.164" + "181.214.226.4" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9897, - "hostname": "us9897.nordvpn.com", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9715, + "hostname": "us9715.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "169.150.232.166" + "181.214.226.20" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Chicago", - "number": 9897, - "hostname": "us9897.nordvpn.com", - "wgpubkey": "VHEKsP+aWtvlhaR1AN8mo1TNOSNJ8knV3kS1vQjN8Rk=", + "city": "Dallas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9715, + "hostname": "us9715.nordvpn.com", + "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "169.150.232.166" + "181.214.226.20" ] }, { @@ -145319,12 +200206,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5055, - "hostname": "us5055.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9716, + "hostname": "us9716.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.2" + "181.214.226.36" ] }, { @@ -145332,11 +200223,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5055, - "hostname": "us5055.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9716, + "hostname": "us9716.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.2" + "181.214.226.36" ] }, { @@ -145344,12 +200239,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5482, - "hostname": "us5482.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9717, + "hostname": "us9717.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.40.50" + "181.214.226.52" ] }, { @@ -145357,11 +200256,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5482, - "hostname": "us5482.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9717, + "hostname": "us9717.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "212.102.40.50" + "181.214.226.52" ] }, { @@ -145369,12 +200272,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5483, - "hostname": "us5483.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9770, + "hostname": "us9770.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.40.45" + "181.214.226.68" ] }, { @@ -145382,11 +200289,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5483, - "hostname": "us5483.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9770, + "hostname": "us9770.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "212.102.40.45" + "181.214.226.68" ] }, { @@ -145394,12 +200305,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5484, - "hostname": "us5484.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9771, + "hostname": "us9771.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.40.40" + "181.214.226.84" ] }, { @@ -145407,11 +200322,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5484, - "hostname": "us5484.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9771, + "hostname": "us9771.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "212.102.40.40" + "181.214.226.84" ] }, { @@ -145419,12 +200338,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5485, - "hostname": "us5485.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9772, + "hostname": "us9772.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.40.35" + "181.214.226.100" ] }, { @@ -145432,11 +200355,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 5485, - "hostname": "us5485.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9772, + "hostname": "us9772.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "212.102.40.35" + "181.214.226.100" ] }, { @@ -145444,12 +200371,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6587, - "hostname": "us6587.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9773, + "hostname": "us9773.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.47" + "181.214.226.116" ] }, { @@ -145457,11 +200388,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6587, - "hostname": "us6587.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9773, + "hostname": "us9773.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.47" + "181.214.226.116" ] }, { @@ -145469,12 +200404,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6588, - "hostname": "us6588.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9774, + "hostname": "us9774.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.42" + "181.214.226.132" ] }, { @@ -145482,11 +200421,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6588, - "hostname": "us6588.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9774, + "hostname": "us9774.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.42" + "181.214.226.132" ] }, { @@ -145494,12 +200437,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6589, - "hostname": "us6589.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9775, + "hostname": "us9775.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.37" + "181.214.226.148" ] }, { @@ -145507,11 +200454,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6589, - "hostname": "us6589.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9775, + "hostname": "us9775.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.37" + "181.214.226.148" ] }, { @@ -145519,12 +200470,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6590, - "hostname": "us6590.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9776, + "hostname": "us9776.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.32" + "181.214.226.164" ] }, { @@ -145532,11 +200487,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6590, - "hostname": "us6590.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9776, + "hostname": "us9776.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.32" + "181.214.226.164" ] }, { @@ -145544,12 +200503,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6591, - "hostname": "us6591.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9777, + "hostname": "us9777.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.27" + "181.214.226.180" ] }, { @@ -145557,11 +200520,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6591, - "hostname": "us6591.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9777, + "hostname": "us9777.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.27" + "181.214.226.180" ] }, { @@ -145569,12 +200536,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6592, - "hostname": "us6592.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9778, + "hostname": "us9778.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.22" + "181.214.226.195" ] }, { @@ -145582,11 +200553,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6592, - "hostname": "us6592.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9778, + "hostname": "us9778.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.22" + "181.214.226.195" ] }, { @@ -145594,12 +200569,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6593, - "hostname": "us6593.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9779, + "hostname": "us9779.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.17" + "181.214.226.210" ] }, { @@ -145607,11 +200586,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6593, - "hostname": "us6593.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9779, + "hostname": "us9779.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.17" + "181.214.226.210" ] }, { @@ -145619,12 +200602,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6724, - "hostname": "us6724.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9780, + "hostname": "us9780.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.12" + "181.214.226.225" ] }, { @@ -145632,11 +200619,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6724, - "hostname": "us6724.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9780, + "hostname": "us9780.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.12" + "181.214.226.225" ] }, { @@ -145644,12 +200635,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6725, - "hostname": "us6725.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9781, + "hostname": "us9781.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.175.7" + "181.214.226.240" ] }, { @@ -145657,11 +200652,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 6725, - "hostname": "us6725.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9781, + "hostname": "us9781.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "89.187.175.7" + "181.214.226.240" ] }, { @@ -145669,12 +200668,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8095, - "hostname": "us8095.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9898, + "hostname": "us9898.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.3" + "2.56.191.2" ] }, { @@ -145682,11 +200685,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8095, - "hostname": "us8095.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9898, + "hostname": "us9898.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.3" + "2.56.191.2" ] }, { @@ -145694,12 +200701,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8096, - "hostname": "us8096.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9899, + "hostname": "us9899.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.11" + "2.56.191.4" ] }, { @@ -145707,11 +200718,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8096, - "hostname": "us8096.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9899, + "hostname": "us9899.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.11" + "2.56.191.4" ] }, { @@ -145719,12 +200734,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8097, - "hostname": "us8097.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9900, + "hostname": "us9900.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.19" + "2.56.191.6" ] }, { @@ -145732,11 +200751,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8097, - "hostname": "us8097.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9900, + "hostname": "us9900.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.19" + "2.56.191.6" ] }, { @@ -145744,12 +200767,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8098, - "hostname": "us8098.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9901, + "hostname": "us9901.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.27" + "2.56.191.8" ] }, { @@ -145757,11 +200784,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8098, - "hostname": "us8098.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9901, + "hostname": "us9901.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.27" + "2.56.191.8" ] }, { @@ -145769,12 +200800,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8099, - "hostname": "us8099.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9902, + "hostname": "us9902.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.35" + "2.56.191.10" ] }, { @@ -145782,11 +200817,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8099, - "hostname": "us8099.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9902, + "hostname": "us9902.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.35" + "2.56.191.10" ] }, { @@ -145794,12 +200833,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8100, - "hostname": "us8100.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9903, + "hostname": "us9903.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.43" + "2.56.191.12" ] }, { @@ -145807,11 +200850,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8100, - "hostname": "us8100.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9903, + "hostname": "us9903.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.43" + "2.56.191.12" ] }, { @@ -145819,12 +200866,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8101, - "hostname": "us8101.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9904, + "hostname": "us9904.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.51" + "2.56.191.14" ] }, { @@ -145832,11 +200883,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8101, - "hostname": "us8101.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9904, + "hostname": "us9904.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.51" + "2.56.191.14" ] }, { @@ -145844,12 +200899,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8102, - "hostname": "us8102.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9905, + "hostname": "us9905.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.59" + "2.56.191.16" ] }, { @@ -145857,11 +200916,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8102, - "hostname": "us8102.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9905, + "hostname": "us9905.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.59" + "2.56.191.16" ] }, { @@ -145869,12 +200932,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8103, - "hostname": "us8103.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9906, + "hostname": "us9906.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.67" + "2.56.191.18" ] }, { @@ -145882,11 +200949,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8103, - "hostname": "us8103.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9906, + "hostname": "us9906.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.67" + "2.56.191.18" ] }, { @@ -145894,12 +200965,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8104, - "hostname": "us8104.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9907, + "hostname": "us9907.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.75" + "2.56.191.20" ] }, { @@ -145907,11 +200982,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8104, - "hostname": "us8104.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9907, + "hostname": "us9907.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.75" + "2.56.191.20" ] }, { @@ -145919,12 +200998,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8105, - "hostname": "us8105.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10052, + "hostname": "us10052.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.83" + "181.214.196.240" ] }, { @@ -145932,11 +201015,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8105, - "hostname": "us8105.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10052, + "hostname": "us10052.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.83" + "181.214.196.240" ] }, { @@ -145944,12 +201031,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8106, - "hostname": "us8106.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10053, + "hostname": "us10053.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.91" + "145.14.135.1" ] }, { @@ -145957,11 +201048,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8106, - "hostname": "us8106.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10053, + "hostname": "us10053.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.91" + "145.14.135.1" ] }, { @@ -145969,24 +201064,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8107, - "hostname": "us8107.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10110, + "hostname": "us10110.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.99" + "37.19.200.226" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8107, - "hostname": "us8107.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10111, + "hostname": "us10111.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.247.70.99" + "37.19.200.228" ] }, { @@ -145994,24 +201096,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8108, - "hostname": "us8108.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10112, + "hostname": "us10112.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.107" + "37.19.200.231" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8108, - "hostname": "us8108.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10113, + "hostname": "us10113.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.247.70.107" + "37.19.200.233" ] }, { @@ -146019,12 +201128,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8109, - "hostname": "us8109.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10116, + "hostname": "us10116.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.115" + "185.255.130.101" ] }, { @@ -146032,11 +201145,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8109, - "hostname": "us8109.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10116, + "hostname": "us10116.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.115" + "185.255.130.101" ] }, { @@ -146044,12 +201161,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8110, - "hostname": "us8110.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10117, + "hostname": "us10117.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.123" + "185.255.130.103" ] }, { @@ -146057,11 +201178,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8110, - "hostname": "us8110.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10117, + "hostname": "us10117.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.123" + "185.255.130.103" ] }, { @@ -146069,12 +201194,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8111, - "hostname": "us8111.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10118, + "hostname": "us10118.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.131" + "185.255.130.105" ] }, { @@ -146082,11 +201211,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8111, - "hostname": "us8111.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10118, + "hostname": "us10118.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.131" + "185.255.130.105" ] }, { @@ -146094,12 +201227,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8112, - "hostname": "us8112.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10119, + "hostname": "us10119.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.139" + "185.255.130.107" ] }, { @@ -146107,11 +201244,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8112, - "hostname": "us8112.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10119, + "hostname": "us10119.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.139" + "185.255.130.107" ] }, { @@ -146119,12 +201260,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8113, - "hostname": "us8113.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10120, + "hostname": "us10120.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.147" + "185.255.130.109" ] }, { @@ -146132,11 +201277,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8113, - "hostname": "us8113.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10120, + "hostname": "us10120.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.147" + "185.255.130.109" ] }, { @@ -146144,12 +201293,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8114, - "hostname": "us8114.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10121, + "hostname": "us10121.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.155" + "185.255.130.111" ] }, { @@ -146157,11 +201310,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8114, - "hostname": "us8114.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10121, + "hostname": "us10121.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.155" + "185.255.130.111" ] }, { @@ -146169,12 +201326,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8115, - "hostname": "us8115.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10122, + "hostname": "us10122.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.163" + "185.255.130.113" ] }, { @@ -146182,11 +201343,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8115, - "hostname": "us8115.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10122, + "hostname": "us10122.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.163" + "185.255.130.113" ] }, { @@ -146194,12 +201359,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8116, - "hostname": "us8116.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10123, + "hostname": "us10123.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.171" + "185.255.130.115" ] }, { @@ -146207,11 +201376,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8116, - "hostname": "us8116.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10123, + "hostname": "us10123.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.171" + "185.255.130.115" ] }, { @@ -146219,12 +201392,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8117, - "hostname": "us8117.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10124, + "hostname": "us10124.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.179" + "185.255.130.117" ] }, { @@ -146232,11 +201409,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8117, - "hostname": "us8117.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10124, + "hostname": "us10124.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.179" + "185.255.130.117" ] }, { @@ -146244,12 +201425,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8118, - "hostname": "us8118.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10125, + "hostname": "us10125.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.187" + "185.255.130.119" ] }, { @@ -146257,11 +201442,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8118, - "hostname": "us8118.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10125, + "hostname": "us10125.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.187" + "185.255.130.119" ] }, { @@ -146269,12 +201458,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8119, - "hostname": "us8119.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10126, + "hostname": "us10126.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.195" + "185.255.130.121" ] }, { @@ -146282,11 +201475,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8119, - "hostname": "us8119.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10126, + "hostname": "us10126.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.195" + "185.255.130.121" ] }, { @@ -146294,12 +201491,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8120, - "hostname": "us8120.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10127, + "hostname": "us10127.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.203" + "185.255.130.123" ] }, { @@ -146307,11 +201508,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8120, - "hostname": "us8120.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10127, + "hostname": "us10127.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.203" + "185.255.130.123" ] }, { @@ -146319,12 +201524,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8121, - "hostname": "us8121.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10128, + "hostname": "us10128.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.211" + "185.255.130.125" ] }, { @@ -146332,11 +201541,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8121, - "hostname": "us8121.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10128, + "hostname": "us10128.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.211" + "185.255.130.125" ] }, { @@ -146344,12 +201557,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8122, - "hostname": "us8122.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10129, + "hostname": "us10129.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.219" + "185.255.130.127" ] }, { @@ -146357,11 +201574,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8122, - "hostname": "us8122.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10129, + "hostname": "us10129.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.219" + "185.255.130.127" ] }, { @@ -146369,12 +201590,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8123, - "hostname": "us8123.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10130, + "hostname": "us10130.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.227" + "185.255.130.129" ] }, { @@ -146382,11 +201607,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8123, - "hostname": "us8123.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10130, + "hostname": "us10130.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.227" + "185.255.130.129" ] }, { @@ -146394,12 +201623,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8124, - "hostname": "us8124.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10131, + "hostname": "us10131.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.235" + "185.255.130.131" ] }, { @@ -146407,11 +201640,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8124, - "hostname": "us8124.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10131, + "hostname": "us10131.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.235" + "185.255.130.131" ] }, { @@ -146419,12 +201656,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8125, - "hostname": "us8125.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10132, + "hostname": "us10132.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.243" + "185.255.130.133" ] }, { @@ -146432,11 +201673,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8125, - "hostname": "us8125.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10132, + "hostname": "us10132.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.243" + "185.255.130.133" ] }, { @@ -146444,12 +201689,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8126, - "hostname": "us8126.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10133, + "hostname": "us10133.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.247.70.251" + "185.255.130.135" ] }, { @@ -146457,11 +201706,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8126, - "hostname": "us8126.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10133, + "hostname": "us10133.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "185.247.70.251" + "185.255.130.135" ] }, { @@ -146469,12 +201722,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8127, - "hostname": "us8127.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10134, + "hostname": "us10134.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.112.131" + "185.255.130.137" ] }, { @@ -146482,11 +201739,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8127, - "hostname": "us8127.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10134, + "hostname": "us10134.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "194.110.112.131" + "185.255.130.137" ] }, { @@ -146494,12 +201755,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8128, - "hostname": "us8128.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10135, + "hostname": "us10135.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.112.139" + "185.255.130.139" ] }, { @@ -146507,11 +201772,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8128, - "hostname": "us8128.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10135, + "hostname": "us10135.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "194.110.112.139" + "185.255.130.139" ] }, { @@ -146519,12 +201788,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8129, - "hostname": "us8129.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10136, + "hostname": "us10136.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.112.147" + "185.255.130.141" ] }, { @@ -146532,11 +201805,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8129, - "hostname": "us8129.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10136, + "hostname": "us10136.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "194.110.112.147" + "185.255.130.141" ] }, { @@ -146544,12 +201821,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8130, - "hostname": "us8130.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10137, + "hostname": "us10137.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.112.155" + "185.255.130.143" ] }, { @@ -146557,11 +201838,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8130, - "hostname": "us8130.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10137, + "hostname": "us10137.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "194.110.112.155" + "185.255.130.143" ] }, { @@ -146569,12 +201854,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8131, - "hostname": "us8131.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10138, + "hostname": "us10138.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.112.163" + "185.255.130.145" ] }, { @@ -146582,11 +201871,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8131, - "hostname": "us8131.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10138, + "hostname": "us10138.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "194.110.112.163" + "185.255.130.145" ] }, { @@ -146594,12 +201887,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8132, - "hostname": "us8132.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10139, + "hostname": "us10139.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.112.171" + "185.255.130.147" ] }, { @@ -146607,11 +201904,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8132, - "hostname": "us8132.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10139, + "hostname": "us10139.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "194.110.112.171" + "185.255.130.147" ] }, { @@ -146619,12 +201920,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8133, - "hostname": "us8133.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10140, + "hostname": "us10140.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.112.179" + "185.255.130.149" ] }, { @@ -146632,11 +201937,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8133, - "hostname": "us8133.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10140, + "hostname": "us10140.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "194.110.112.179" + "185.255.130.149" ] }, { @@ -146644,12 +201953,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8134, - "hostname": "us8134.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10141, + "hostname": "us10141.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.110.112.187" + "185.255.130.151" ] }, { @@ -146657,11 +201970,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 8134, - "hostname": "us8134.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10141, + "hostname": "us10141.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "194.110.112.187" + "185.255.130.151" ] }, { @@ -146669,12 +201986,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9143, - "hostname": "us9143.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10142, + "hostname": "us10142.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.6" + "185.255.130.153" ] }, { @@ -146682,11 +202003,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9143, - "hostname": "us9143.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10142, + "hostname": "us10142.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.6" + "185.255.130.153" ] }, { @@ -146694,12 +202019,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9144, - "hostname": "us9144.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10143, + "hostname": "us10143.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.12" + "185.255.130.155" ] }, { @@ -146707,11 +202036,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9144, - "hostname": "us9144.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10143, + "hostname": "us10143.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.12" + "185.255.130.155" ] }, { @@ -146719,12 +202052,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9145, - "hostname": "us9145.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10144, + "hostname": "us10144.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.18" + "185.255.130.157" ] }, { @@ -146732,11 +202069,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9145, - "hostname": "us9145.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10144, + "hostname": "us10144.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.18" + "185.255.130.157" ] }, { @@ -146744,12 +202085,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9146, - "hostname": "us9146.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10145, + "hostname": "us10145.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.2" + "185.255.130.159" ] }, { @@ -146757,11 +202102,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9146, - "hostname": "us9146.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10145, + "hostname": "us10145.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.2" + "185.255.130.159" ] }, { @@ -146769,12 +202118,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9147, - "hostname": "us9147.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10146, + "hostname": "us10146.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.8" + "185.255.130.161" ] }, { @@ -146782,11 +202135,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9147, - "hostname": "us9147.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10146, + "hostname": "us10146.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.8" + "185.255.130.161" ] }, { @@ -146794,12 +202151,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9148, - "hostname": "us9148.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10147, + "hostname": "us10147.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.14" + "185.255.130.163" ] }, { @@ -146807,11 +202168,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9148, - "hostname": "us9148.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10147, + "hostname": "us10147.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.14" + "185.255.130.163" ] }, { @@ -146819,12 +202184,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9149, - "hostname": "us9149.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10148, + "hostname": "us10148.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.20" + "185.255.130.165" ] }, { @@ -146832,11 +202201,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9149, - "hostname": "us9149.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10148, + "hostname": "us10148.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.20" + "185.255.130.165" ] }, { @@ -146844,12 +202217,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9150, - "hostname": "us9150.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10149, + "hostname": "us10149.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.26" + "185.255.130.167" ] }, { @@ -146857,11 +202234,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9150, - "hostname": "us9150.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10149, + "hostname": "us10149.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.26" + "185.255.130.167" ] }, { @@ -146869,12 +202250,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9151, - "hostname": "us9151.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10150, + "hostname": "us10150.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.32" + "185.255.130.169" ] }, { @@ -146882,11 +202267,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9151, - "hostname": "us9151.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10150, + "hostname": "us10150.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.32" + "185.255.130.169" ] }, { @@ -146894,12 +202283,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9152, - "hostname": "us9152.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10151, + "hostname": "us10151.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.38" + "185.255.130.171" ] }, { @@ -146907,11 +202300,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9152, - "hostname": "us9152.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10151, + "hostname": "us10151.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.38" + "185.255.130.171" ] }, { @@ -146919,12 +202316,16 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9153, - "hostname": "us9153.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10152, + "hostname": "us10152.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.45" + "185.255.130.173" ] }, { @@ -146932,11 +202333,15 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9153, - "hostname": "us9153.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10152, + "hostname": "us10152.nordvpn.com", "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", "ips": [ - "2.56.190.45" + "185.255.130.173" ] }, { @@ -146944,24 +202349,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9154, - "hostname": "us9154.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10167, + "hostname": "us10167.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.52" + "37.19.200.236" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9154, - "hostname": "us9154.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10168, + "hostname": "us10168.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.52" + "37.19.200.238" ] }, { @@ -146969,24 +202381,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9155, - "hostname": "us9155.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10173, + "hostname": "us10173.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.59" + "37.19.200.241" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9155, - "hostname": "us9155.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10174, + "hostname": "us10174.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.59" + "37.19.200.243" ] }, { @@ -146994,24 +202413,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9156, - "hostname": "us9156.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10175, + "hostname": "us10175.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.66" + "37.19.200.56" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9156, - "hostname": "us9156.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10176, + "hostname": "us10176.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.66" + "37.19.200.58" ] }, { @@ -147019,24 +202445,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9157, - "hostname": "us9157.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10179, + "hostname": "us10179.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.73" + "169.150.254.9" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9157, - "hostname": "us9157.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10180, + "hostname": "us10180.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.73" + "169.150.254.11" ] }, { @@ -147044,24 +202477,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9158, - "hostname": "us9158.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10254, + "hostname": "us10254.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.80" + "169.150.254.5" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9158, - "hostname": "us9158.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10255, + "hostname": "us10255.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.80" + "169.150.254.7" ] }, { @@ -147069,24 +202509,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9159, - "hostname": "us9159.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10256, + "hostname": "us10256.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.87" + "169.150.254.1" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9159, - "hostname": "us9159.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10257, + "hostname": "us10257.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.87" + "169.150.254.3" ] }, { @@ -147094,24 +202541,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9160, - "hostname": "us9160.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10269, + "hostname": "us10269.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.94" + "169.150.254.146" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9160, - "hostname": "us9160.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10270, + "hostname": "us10270.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.94" + "169.150.254.148" ] }, { @@ -147119,24 +202573,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9161, - "hostname": "us9161.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10275, + "hostname": "us10275.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.101" + "169.150.254.150" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9161, - "hostname": "us9161.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10276, + "hostname": "us10276.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.101" + "169.150.254.153" ] }, { @@ -147144,24 +202605,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9162, - "hostname": "us9162.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10277, + "hostname": "us10277.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.108" + "169.150.254.16" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9162, - "hostname": "us9162.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10278, + "hostname": "us10278.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.108" + "169.150.254.18" ] }, { @@ -147169,24 +202637,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9163, - "hostname": "us9163.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10349, + "hostname": "us10349.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.115" + "169.150.254.21" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9163, - "hostname": "us9163.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10350, + "hostname": "us10350.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.115" + "169.150.254.23" ] }, { @@ -147194,24 +202669,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9164, - "hostname": "us9164.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10452, + "hostname": "us10452.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.122" + "149.50.223.23" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9164, - "hostname": "us9164.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10453, + "hostname": "us10453.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.122" + "149.50.223.25" ] }, { @@ -147219,24 +202701,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9165, - "hostname": "us9165.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10454, + "hostname": "us10454.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.129" + "149.50.223.18" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9165, - "hostname": "us9165.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10455, + "hostname": "us10455.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.129" + "149.50.223.20" ] }, { @@ -147244,24 +202733,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9166, - "hostname": "us9166.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10462, + "hostname": "us10462.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.136" + "149.50.223.34" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9166, - "hostname": "us9166.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10463, + "hostname": "us10463.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.136" + "149.50.223.36" ] }, { @@ -147269,24 +202765,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9167, - "hostname": "us9167.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10480, + "hostname": "us10480.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.143" + "149.50.223.39" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9167, - "hostname": "us9167.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10481, + "hostname": "us10481.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.143" + "149.50.223.41" ] }, { @@ -147294,24 +202797,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9168, - "hostname": "us9168.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10482, + "hostname": "us10482.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.150" + "149.50.223.66" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9168, - "hostname": "us9168.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10483, + "hostname": "us10483.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.150" + "149.50.223.68" ] }, { @@ -147319,24 +202829,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9169, - "hostname": "us9169.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10538, + "hostname": "us10538.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.157" + "149.88.100.226" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9169, - "hostname": "us9169.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10539, + "hostname": "us10539.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.157" + "149.88.100.228" ] }, { @@ -147344,24 +202861,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9170, - "hostname": "us9170.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10540, + "hostname": "us10540.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.164" + "149.88.100.231" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9170, - "hostname": "us9170.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10541, + "hostname": "us10541.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.164" + "149.88.100.233" ] }, { @@ -147369,24 +202893,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9171, - "hostname": "us9171.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10542, + "hostname": "us10542.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.171" + "149.88.100.236" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9171, - "hostname": "us9171.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10543, + "hostname": "us10543.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.171" + "149.88.100.238" ] }, { @@ -147394,24 +202925,31 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9172, - "hostname": "us9172.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10572, + "hostname": "us10572.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.178" + "149.88.100.242" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9172, - "hostname": "us9172.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10573, + "hostname": "us10573.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.178" + "149.88.100.244" ] }, { @@ -147419,5624 +202957,7414 @@ "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9173, - "hostname": "us9173.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10578, + "hostname": "us10578.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.185" + "149.50.223.71" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Dallas", - "number": 9173, - "hostname": "us9173.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "categories": [ + "Dedicated IP" + ], + "number": 10579, + "hostname": "us10579.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "2.56.190.185" + "149.50.223.73" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9174, - "hostname": "us9174.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5066, + "hostname": "us5066.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.192" + "212.102.45.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9174, - "hostname": "us9174.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5066, + "hostname": "us5066.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.192" + "212.102.45.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9175, - "hostname": "us9175.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5067, + "hostname": "us5067.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.199" + "212.102.45.7" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9175, - "hostname": "us9175.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5067, + "hostname": "us5067.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.199" + "212.102.45.7" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9176, - "hostname": "us9176.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5068, + "hostname": "us5068.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.206" + "212.102.45.12" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9176, - "hostname": "us9176.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5068, + "hostname": "us5068.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.206" + "212.102.45.12" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9177, - "hostname": "us9177.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5069, + "hostname": "us5069.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.213" + "212.102.45.17" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9177, - "hostname": "us9177.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5069, + "hostname": "us5069.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.213" + "212.102.45.17" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9178, - "hostname": "us9178.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5070, + "hostname": "us5070.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.220" + "212.102.45.22" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9178, - "hostname": "us9178.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5070, + "hostname": "us5070.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.220" + "212.102.45.22" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9179, - "hostname": "us9179.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5071, + "hostname": "us5071.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.227" + "212.102.45.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9179, - "hostname": "us9179.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5071, + "hostname": "us5071.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.227" + "212.102.45.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9180, - "hostname": "us9180.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5072, + "hostname": "us5072.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.234" + "212.102.45.32" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9180, - "hostname": "us9180.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5072, + "hostname": "us5072.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.234" + "212.102.45.32" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9181, - "hostname": "us9181.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5073, + "hostname": "us5073.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.241" + "212.102.45.37" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9181, - "hostname": "us9181.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5073, + "hostname": "us5073.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.241" + "212.102.45.37" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9182, - "hostname": "us9182.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5074, + "hostname": "us5074.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.190.248" + "212.102.45.42" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9182, - "hostname": "us9182.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5074, + "hostname": "us5074.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.190.248" + "212.102.45.42" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9621, - "hostname": "us9621.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5075, + "hostname": "us5075.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "145.14.135.79" + "212.102.45.47" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9621, - "hostname": "us9621.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5075, + "hostname": "us5075.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "145.14.135.79" + "212.102.45.47" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9622, - "hostname": "us9622.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5076, + "hostname": "us5076.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "145.14.135.66" + "212.102.45.52" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9622, - "hostname": "us9622.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5076, + "hostname": "us5076.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "145.14.135.66" + "212.102.45.52" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9623, - "hostname": "us9623.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5077, + "hostname": "us5077.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "145.14.135.53" + "212.102.45.57" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9623, - "hostname": "us9623.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5077, + "hostname": "us5077.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "145.14.135.53" + "212.102.45.57" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9624, - "hostname": "us9624.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5078, + "hostname": "us5078.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "145.14.135.40" + "212.102.45.62" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9624, - "hostname": "us9624.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5078, + "hostname": "us5078.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "145.14.135.40" + "212.102.45.62" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9625, - "hostname": "us9625.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5079, + "hostname": "us5079.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "145.14.135.27" + "212.102.45.67" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9625, - "hostname": "us9625.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5079, + "hostname": "us5079.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "145.14.135.27" + "212.102.45.67" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9626, - "hostname": "us9626.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5080, + "hostname": "us5080.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "145.14.135.14" + "212.102.45.72" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9626, - "hostname": "us9626.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5080, + "hostname": "us5080.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "145.14.135.14" + "212.102.45.72" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9698, - "hostname": "us9698.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5081, + "hostname": "us5081.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.4" + "212.102.45.77" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9698, - "hostname": "us9698.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5081, + "hostname": "us5081.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.4" + "212.102.45.77" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9699, - "hostname": "us9699.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5082, + "hostname": "us5082.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.20" + "212.102.45.82" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9699, - "hostname": "us9699.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5082, + "hostname": "us5082.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.20" + "212.102.45.82" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9700, - "hostname": "us9700.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5083, + "hostname": "us5083.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.36" + "212.102.45.87" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9700, - "hostname": "us9700.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5083, + "hostname": "us5083.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.36" + "212.102.45.87" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9701, - "hostname": "us9701.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5084, + "hostname": "us5084.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.52" + "212.102.45.92" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9701, - "hostname": "us9701.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5084, + "hostname": "us5084.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.52" + "212.102.45.92" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9702, - "hostname": "us9702.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5085, + "hostname": "us5085.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.68" + "212.102.45.97" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9702, - "hostname": "us9702.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5085, + "hostname": "us5085.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.68" + "212.102.45.97" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9703, - "hostname": "us9703.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6657, + "hostname": "us6657.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.84" + "64.44.80.3" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9703, - "hostname": "us9703.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6657, + "hostname": "us6657.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.84" + "64.44.80.3" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9704, - "hostname": "us9704.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6658, + "hostname": "us6658.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.100" + "64.44.80.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9704, - "hostname": "us9704.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6658, + "hostname": "us6658.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.100" + "64.44.80.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9705, - "hostname": "us9705.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6659, + "hostname": "us6659.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.116" + "64.44.80.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9705, - "hostname": "us9705.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6659, + "hostname": "us6659.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.116" + "64.44.80.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9706, - "hostname": "us9706.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6660, + "hostname": "us6660.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.132" + "64.44.80.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9706, - "hostname": "us9706.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6660, + "hostname": "us6660.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.132" + "64.44.80.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9707, - "hostname": "us9707.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6661, + "hostname": "us6661.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.148" + "64.44.80.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9707, - "hostname": "us9707.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6661, + "hostname": "us6661.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.148" + "64.44.80.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9708, - "hostname": "us9708.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6662, + "hostname": "us6662.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.164" + "64.44.80.51" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9708, - "hostname": "us9708.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6662, + "hostname": "us6662.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.164" + "64.44.80.51" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9709, - "hostname": "us9709.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6663, + "hostname": "us6663.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.180" + "64.44.80.59" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9709, - "hostname": "us9709.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6663, + "hostname": "us6663.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.180" + "64.44.80.59" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9710, - "hostname": "us9710.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6664, + "hostname": "us6664.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.195" + "64.44.80.67" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9710, - "hostname": "us9710.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6664, + "hostname": "us6664.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.195" + "64.44.80.67" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9711, - "hostname": "us9711.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6741, + "hostname": "us6741.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.210" + "64.44.80.75" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9711, - "hostname": "us9711.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6741, + "hostname": "us6741.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.210" + "64.44.80.75" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9712, - "hostname": "us9712.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6742, + "hostname": "us6742.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.225" + "64.44.80.83" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9712, - "hostname": "us9712.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6742, + "hostname": "us6742.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.225" + "64.44.80.83" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9714, - "hostname": "us9714.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6743, + "hostname": "us6743.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.4" + "64.44.80.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9714, - "hostname": "us9714.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6743, + "hostname": "us6743.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.4" + "64.44.80.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9715, - "hostname": "us9715.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6744, + "hostname": "us6744.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.20" + "64.44.80.99" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9715, - "hostname": "us9715.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6744, + "hostname": "us6744.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.20" + "64.44.80.99" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9716, - "hostname": "us9716.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6745, + "hostname": "us6745.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.36" + "64.44.80.107" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9716, - "hostname": "us9716.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6745, + "hostname": "us6745.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.36" + "64.44.80.107" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9717, - "hostname": "us9717.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6746, + "hostname": "us6746.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.52" + "64.44.80.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9717, - "hostname": "us9717.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6746, + "hostname": "us6746.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.52" + "64.44.80.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9770, - "hostname": "us9770.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6747, + "hostname": "us6747.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.68" + "64.44.80.123" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9770, - "hostname": "us9770.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6747, + "hostname": "us6747.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.68" + "64.44.80.123" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9771, - "hostname": "us9771.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6748, + "hostname": "us6748.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.84" + "64.44.80.139" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9771, - "hostname": "us9771.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6748, + "hostname": "us6748.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.84" + "64.44.80.139" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9772, - "hostname": "us9772.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6749, + "hostname": "us6749.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.100" + "64.44.80.147" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9772, - "hostname": "us9772.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6749, + "hostname": "us6749.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.100" + "64.44.80.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9773, - "hostname": "us9773.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6750, + "hostname": "us6750.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.116" + "64.44.80.155" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9773, - "hostname": "us9773.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6750, + "hostname": "us6750.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.116" + "64.44.80.155" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9774, - "hostname": "us9774.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6901, + "hostname": "us6901.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.132" + "64.44.80.163" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9774, - "hostname": "us9774.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6901, + "hostname": "us6901.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.132" + "64.44.80.163" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9775, - "hostname": "us9775.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6902, + "hostname": "us6902.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.148" + "64.44.80.171" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9775, - "hostname": "us9775.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6902, + "hostname": "us6902.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.148" + "64.44.80.171" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9776, - "hostname": "us9776.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6903, + "hostname": "us6903.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.164" + "64.44.80.179" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9776, - "hostname": "us9776.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6903, + "hostname": "us6903.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.164" + "64.44.80.179" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9777, - "hostname": "us9777.nordvpn.com", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6904, + "hostname": "us6904.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.180" + "64.44.80.187" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9777, - "hostname": "us9777.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6904, + "hostname": "us6904.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.180" + "64.44.80.187" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9778, - "hostname": "us9778.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8227, + "hostname": "us8227.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.195" + "212.102.45.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9778, - "hostname": "us9778.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8227, + "hostname": "us8227.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.195" + "212.102.45.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9779, - "hostname": "us9779.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8228, + "hostname": "us8228.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.210" + "212.102.45.105" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9779, - "hostname": "us9779.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8228, + "hostname": "us8228.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.210" + "212.102.45.105" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9780, - "hostname": "us9780.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8229, + "hostname": "us8229.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.225" + "212.102.45.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9780, - "hostname": "us9780.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8229, + "hostname": "us8229.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.225" + "212.102.45.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9781, - "hostname": "us9781.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8230, + "hostname": "us8230.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.226.240" + "212.102.45.120" ] }, { "vpn": "wireguard", - "country": "United States", - "region": "The Americas", - "city": "Dallas", - "number": 9781, - "hostname": "us9781.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "country": "United States", + "region": "The Americas", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8230, + "hostname": "us8230.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.226.240" + "212.102.45.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9898, - "hostname": "us9898.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8231, + "hostname": "us8231.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.2" + "212.102.44.38" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9898, - "hostname": "us9898.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8231, + "hostname": "us8231.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.2" + "212.102.44.38" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9899, - "hostname": "us9899.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8232, + "hostname": "us8232.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.4" + "212.102.45.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9899, - "hostname": "us9899.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8232, + "hostname": "us8232.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.4" + "212.102.45.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9900, - "hostname": "us9900.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8233, + "hostname": "us8233.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.6" + "212.102.44.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9900, - "hostname": "us9900.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8233, + "hostname": "us8233.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.6" + "212.102.44.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9901, - "hostname": "us9901.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8234, + "hostname": "us8234.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.8" + "212.102.45.111" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9901, - "hostname": "us9901.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8234, + "hostname": "us8234.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.8" + "212.102.45.111" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9902, - "hostname": "us9902.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8235, + "hostname": "us8235.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.10" + "212.102.45.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9902, - "hostname": "us9902.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8235, + "hostname": "us8235.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.10" + "212.102.45.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9903, - "hostname": "us9903.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8236, + "hostname": "us8236.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.12" + "212.102.45.117" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9903, - "hostname": "us9903.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8236, + "hostname": "us8236.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.12" + "212.102.45.117" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9904, - "hostname": "us9904.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8282, + "hostname": "us8282.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.14" + "212.102.44.58" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9904, - "hostname": "us9904.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8282, + "hostname": "us8282.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.14" + "212.102.44.58" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9905, - "hostname": "us9905.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8283, + "hostname": "us8283.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.16" + "212.102.44.56" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9905, - "hostname": "us9905.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8283, + "hostname": "us8283.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.16" + "212.102.44.56" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9906, - "hostname": "us9906.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8284, + "hostname": "us8284.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.18" + "212.102.44.54" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9906, - "hostname": "us9906.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8284, + "hostname": "us8284.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.18" + "212.102.44.54" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9907, - "hostname": "us9907.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8285, + "hostname": "us8285.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "2.56.191.20" + "212.102.44.52" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 9907, - "hostname": "us9907.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8285, + "hostname": "us8285.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "2.56.191.20" + "212.102.44.52" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10052, - "hostname": "us10052.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8286, + "hostname": "us8286.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.196.240" + "212.102.44.50" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10052, - "hostname": "us10052.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8286, + "hostname": "us8286.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "181.214.196.240" + "212.102.44.50" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10053, - "hostname": "us10053.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8287, + "hostname": "us8287.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "145.14.135.1" + "212.102.44.137" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10053, - "hostname": "us10053.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8287, + "hostname": "us8287.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "145.14.135.1" + "212.102.44.137" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10116, - "hostname": "us10116.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8288, + "hostname": "us8288.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.101" + "212.102.44.135" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10116, - "hostname": "us10116.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8288, + "hostname": "us8288.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.101" + "212.102.44.135" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10117, - "hostname": "us10117.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8289, + "hostname": "us8289.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.103" + "212.102.44.133" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10117, - "hostname": "us10117.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8289, + "hostname": "us8289.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.103" + "212.102.44.133" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10118, - "hostname": "us10118.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8290, + "hostname": "us8290.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.105" + "212.102.44.131" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10118, - "hostname": "us10118.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8290, + "hostname": "us8290.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.105" + "212.102.44.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10119, - "hostname": "us10119.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8291, + "hostname": "us8291.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.107" + "212.102.44.129" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10119, - "hostname": "us10119.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8291, + "hostname": "us8291.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.107" + "212.102.44.129" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10120, - "hostname": "us10120.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9183, + "hostname": "us9183.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.109" + "83.136.182.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10120, - "hostname": "us10120.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9183, + "hostname": "us9183.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.109" + "83.136.182.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10121, - "hostname": "us10121.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9184, + "hostname": "us9184.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.111" + "83.136.182.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10121, - "hostname": "us10121.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9184, + "hostname": "us9184.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.111" + "83.136.182.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10122, - "hostname": "us10122.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9185, + "hostname": "us9185.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.113" + "83.136.182.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10122, - "hostname": "us10122.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9185, + "hostname": "us9185.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.113" + "83.136.182.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10123, - "hostname": "us10123.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9186, + "hostname": "us9186.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.115" + "83.136.182.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10123, - "hostname": "us10123.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9186, + "hostname": "us9186.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.115" + "83.136.182.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10124, - "hostname": "us10124.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9187, + "hostname": "us9187.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.117" + "83.136.182.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10124, - "hostname": "us10124.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9187, + "hostname": "us9187.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.117" + "83.136.182.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10125, - "hostname": "us10125.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9188, + "hostname": "us9188.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.119" + "83.136.182.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10125, - "hostname": "us10125.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9188, + "hostname": "us9188.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.119" + "83.136.182.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10126, - "hostname": "us10126.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9189, + "hostname": "us9189.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.121" + "83.136.182.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10126, - "hostname": "us10126.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9189, + "hostname": "us9189.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.121" + "83.136.182.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10127, - "hostname": "us10127.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9190, + "hostname": "us9190.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.123" + "83.136.182.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10127, - "hostname": "us10127.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9190, + "hostname": "us9190.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.123" + "83.136.182.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10128, - "hostname": "us10128.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9191, + "hostname": "us9191.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.125" + "83.136.182.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10128, - "hostname": "us10128.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9191, + "hostname": "us9191.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.125" + "83.136.182.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10129, - "hostname": "us10129.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9192, + "hostname": "us9192.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.127" + "83.136.182.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10129, - "hostname": "us10129.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9192, + "hostname": "us9192.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.127" + "83.136.182.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10130, - "hostname": "us10130.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9193, + "hostname": "us9193.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.129" + "83.136.182.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10130, - "hostname": "us10130.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9193, + "hostname": "us9193.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.129" + "83.136.182.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10131, - "hostname": "us10131.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9194, + "hostname": "us9194.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.131" + "83.136.182.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10131, - "hostname": "us10131.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9194, + "hostname": "us9194.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.131" + "83.136.182.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10132, - "hostname": "us10132.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9195, + "hostname": "us9195.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.133" + "83.136.182.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10132, - "hostname": "us10132.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9195, + "hostname": "us9195.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.133" + "83.136.182.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10133, - "hostname": "us10133.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9196, + "hostname": "us9196.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.135" + "83.136.182.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10133, - "hostname": "us10133.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9196, + "hostname": "us9196.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.135" + "83.136.182.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10134, - "hostname": "us10134.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9197, + "hostname": "us9197.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.137" + "83.136.182.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10134, - "hostname": "us10134.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9197, + "hostname": "us9197.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.137" + "83.136.182.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10135, - "hostname": "us10135.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9198, + "hostname": "us9198.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.139" + "83.136.182.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10135, - "hostname": "us10135.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9198, + "hostname": "us9198.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.139" + "83.136.182.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10136, - "hostname": "us10136.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9199, + "hostname": "us9199.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.141" + "83.136.182.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10136, - "hostname": "us10136.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9199, + "hostname": "us9199.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.141" + "83.136.182.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10137, - "hostname": "us10137.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9200, + "hostname": "us9200.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.143" + "83.136.182.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10137, - "hostname": "us10137.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9200, + "hostname": "us9200.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.143" + "83.136.182.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10138, - "hostname": "us10138.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9201, + "hostname": "us9201.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.145" + "83.136.182.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10138, - "hostname": "us10138.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9201, + "hostname": "us9201.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.145" + "83.136.182.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10139, - "hostname": "us10139.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9202, + "hostname": "us9202.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.147" + "83.136.182.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10139, - "hostname": "us10139.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9202, + "hostname": "us9202.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.147" + "83.136.182.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10140, - "hostname": "us10140.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9203, + "hostname": "us9203.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.149" + "83.136.182.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10140, - "hostname": "us10140.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9203, + "hostname": "us9203.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.149" + "83.136.182.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10141, - "hostname": "us10141.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9204, + "hostname": "us9204.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.151" + "83.136.182.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10141, - "hostname": "us10141.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9204, + "hostname": "us9204.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.151" + "83.136.182.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10142, - "hostname": "us10142.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9205, + "hostname": "us9205.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.153" + "83.136.182.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10142, - "hostname": "us10142.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9205, + "hostname": "us9205.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.153" + "83.136.182.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10143, - "hostname": "us10143.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9206, + "hostname": "us9206.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.155" + "83.136.182.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10143, - "hostname": "us10143.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9206, + "hostname": "us9206.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.155" + "83.136.182.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10144, - "hostname": "us10144.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9207, + "hostname": "us9207.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.157" + "83.136.182.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10144, - "hostname": "us10144.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9207, + "hostname": "us9207.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.157" + "83.136.182.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10145, - "hostname": "us10145.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9208, + "hostname": "us9208.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.159" + "83.136.182.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10145, - "hostname": "us10145.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9208, + "hostname": "us9208.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.159" + "83.136.182.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10146, - "hostname": "us10146.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9209, + "hostname": "us9209.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.161" + "83.136.182.152" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10146, - "hostname": "us10146.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9209, + "hostname": "us9209.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.161" + "83.136.182.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10147, - "hostname": "us10147.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9210, + "hostname": "us9210.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.163" + "83.136.182.154" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10147, - "hostname": "us10147.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9210, + "hostname": "us9210.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.163" + "83.136.182.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10148, - "hostname": "us10148.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9211, + "hostname": "us9211.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.165" + "83.136.182.156" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10148, - "hostname": "us10148.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9211, + "hostname": "us9211.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.165" + "83.136.182.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10149, - "hostname": "us10149.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9212, + "hostname": "us9212.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.167" + "83.136.182.158" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10149, - "hostname": "us10149.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9212, + "hostname": "us9212.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.167" + "83.136.182.158" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10150, - "hostname": "us10150.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9443, + "hostname": "us9443.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.169" + "64.44.80.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10150, - "hostname": "us10150.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9443, + "hostname": "us9443.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.169" + "64.44.80.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10151, - "hostname": "us10151.nordvpn.com", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9444, + "hostname": "us9444.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.171" + "64.44.80.131" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10151, - "hostname": "us10151.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Denver", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9444, + "hostname": "us9444.nordvpn.com", + "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", "ips": [ - "185.255.130.171" + "64.44.80.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10152, - "hostname": "us10152.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9573, + "hostname": "us9573.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.255.130.173" + "185.229.59.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Dallas", - "number": 10152, - "hostname": "us10152.nordvpn.com", - "wgpubkey": "8pRFH/FfMBs3eBJCM2ABFoOs/13n78LYQvoovZVLdgI=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9573, + "hostname": "us9573.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "185.255.130.173" + "185.229.59.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5066, - "hostname": "us5066.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9574, + "hostname": "us9574.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.2" + "185.229.59.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5066, - "hostname": "us5066.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9574, + "hostname": "us9574.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.2" + "185.229.59.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5067, - "hostname": "us5067.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9575, + "hostname": "us9575.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.7" + "185.229.59.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5067, - "hostname": "us5067.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9575, + "hostname": "us9575.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.7" + "185.229.59.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5068, - "hostname": "us5068.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9576, + "hostname": "us9576.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.12" + "185.229.59.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5068, - "hostname": "us5068.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9576, + "hostname": "us9576.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.12" + "185.229.59.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5069, - "hostname": "us5069.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9577, + "hostname": "us9577.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.17" + "185.229.59.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5069, - "hostname": "us5069.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9577, + "hostname": "us9577.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.17" + "185.229.59.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5070, - "hostname": "us5070.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9578, + "hostname": "us9578.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.22" + "185.229.59.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5070, - "hostname": "us5070.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9578, + "hostname": "us9578.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.22" + "185.229.59.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5071, - "hostname": "us5071.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9579, + "hostname": "us9579.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.27" + "185.229.59.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5071, - "hostname": "us5071.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9579, + "hostname": "us9579.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.27" + "185.229.59.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5072, - "hostname": "us5072.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9580, + "hostname": "us9580.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.32" + "185.229.59.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5072, - "hostname": "us5072.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9580, + "hostname": "us9580.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.32" + "185.229.59.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5073, - "hostname": "us5073.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9581, + "hostname": "us9581.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.37" + "185.229.59.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5073, - "hostname": "us5073.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9581, + "hostname": "us9581.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.37" + "185.229.59.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5074, - "hostname": "us5074.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9582, + "hostname": "us9582.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.42" + "185.229.59.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5074, - "hostname": "us5074.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9582, + "hostname": "us9582.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.42" + "185.229.59.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5075, - "hostname": "us5075.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9583, + "hostname": "us9583.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.47" + "185.229.59.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5075, - "hostname": "us5075.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9583, + "hostname": "us9583.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.47" + "185.229.59.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5076, - "hostname": "us5076.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9584, + "hostname": "us9584.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.52" + "185.229.59.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5076, - "hostname": "us5076.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9584, + "hostname": "us9584.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.52" + "185.229.59.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5077, - "hostname": "us5077.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9585, + "hostname": "us9585.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.57" + "185.229.59.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5077, - "hostname": "us5077.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9585, + "hostname": "us9585.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.57" + "185.229.59.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5078, - "hostname": "us5078.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9586, + "hostname": "us9586.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.62" + "185.229.59.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5078, - "hostname": "us5078.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9586, + "hostname": "us9586.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.62" + "185.229.59.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5079, - "hostname": "us5079.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9588, + "hostname": "us9588.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.67" + "185.229.59.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5079, - "hostname": "us5079.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9588, + "hostname": "us9588.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.67" + "185.229.59.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5080, - "hostname": "us5080.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9814, + "hostname": "us9814.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.72" + "185.229.59.6" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5080, - "hostname": "us5080.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9814, + "hostname": "us9814.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.72" + "185.229.59.6" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5081, - "hostname": "us5081.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9815, + "hostname": "us9815.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.77" + "185.229.59.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5081, - "hostname": "us5081.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9815, + "hostname": "us9815.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.77" + "185.229.59.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5082, - "hostname": "us5082.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9816, + "hostname": "us9816.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.82" + "185.229.59.32" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5082, - "hostname": "us5082.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9816, + "hostname": "us9816.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.82" + "185.229.59.32" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5083, - "hostname": "us5083.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9817, + "hostname": "us9817.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.87" + "185.229.59.45" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5083, - "hostname": "us5083.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9817, + "hostname": "us9817.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.87" + "185.229.59.45" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5084, - "hostname": "us5084.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9818, + "hostname": "us9818.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.92" + "185.229.59.58" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5084, - "hostname": "us5084.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9818, + "hostname": "us9818.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.92" + "185.229.59.58" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5085, - "hostname": "us5085.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9819, + "hostname": "us9819.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.97" + "185.229.59.71" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 5085, - "hostname": "us5085.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9819, + "hostname": "us9819.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "212.102.45.97" + "185.229.59.71" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6657, - "hostname": "us6657.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9820, + "hostname": "us9820.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.3" + "185.229.59.84" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6657, - "hostname": "us6657.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9820, + "hostname": "us9820.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.3" + "185.229.59.84" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6658, - "hostname": "us6658.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10002, + "hostname": "us10002.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.11" + "194.156.136.77" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6658, - "hostname": "us6658.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10002, + "hostname": "us10002.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.11" + "194.156.136.77" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6659, - "hostname": "us6659.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10003, + "hostname": "us10003.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.19" + "194.156.136.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6659, - "hostname": "us6659.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10003, + "hostname": "us10003.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.19" + "194.156.136.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6660, - "hostname": "us6660.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10004, + "hostname": "us10004.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.27" + "194.156.136.105" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6660, - "hostname": "us6660.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10004, + "hostname": "us10004.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.27" + "194.156.136.105" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6661, - "hostname": "us6661.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10005, + "hostname": "us10005.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.43" + "194.156.136.119" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6661, - "hostname": "us6661.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10005, + "hostname": "us10005.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.43" + "194.156.136.119" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6662, - "hostname": "us6662.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10006, + "hostname": "us10006.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.51" + "194.156.136.133" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6662, - "hostname": "us6662.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10006, + "hostname": "us10006.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.51" + "194.156.136.133" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6663, - "hostname": "us6663.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10007, + "hostname": "us10007.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.59" + "194.156.136.147" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6663, - "hostname": "us6663.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10007, + "hostname": "us10007.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.59" + "194.156.136.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6664, - "hostname": "us6664.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10008, + "hostname": "us10008.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.67" + "194.156.136.161" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6664, - "hostname": "us6664.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10008, + "hostname": "us10008.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.67" + "194.156.136.161" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6741, - "hostname": "us6741.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10009, + "hostname": "us10009.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.75" + "194.156.136.175" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6741, - "hostname": "us6741.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10009, + "hostname": "us10009.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.75" + "194.156.136.175" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6742, - "hostname": "us6742.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10010, + "hostname": "us10010.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.83" + "194.156.136.189" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6742, - "hostname": "us6742.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10010, + "hostname": "us10010.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.83" + "194.156.136.189" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6743, - "hostname": "us6743.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10011, + "hostname": "us10011.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.91" + "194.156.136.214" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6743, - "hostname": "us6743.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10011, + "hostname": "us10011.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.91" + "194.156.136.214" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6744, - "hostname": "us6744.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10012, + "hostname": "us10012.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.99" + "194.156.136.228" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6744, - "hostname": "us6744.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10012, + "hostname": "us10012.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.99" + "194.156.136.228" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6745, - "hostname": "us6745.nordvpn.com", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10013, + "hostname": "us10013.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.107" + "194.156.136.242" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6745, - "hostname": "us6745.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Kansas City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10013, + "hostname": "us10013.nordvpn.com", + "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", "ips": [ - "64.44.80.107" + "194.156.136.242" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6746, - "hostname": "us6746.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 2945, + "hostname": "us2945.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.115" + "89.187.185.86" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6746, - "hostname": "us6746.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 2946, + "hostname": "us2946.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.115" + "89.187.185.97" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6747, - "hostname": "us6747.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4950, + "hostname": "us4950.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.123" + "84.17.44.121" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6747, - "hostname": "us6747.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4951, + "hostname": "us4951.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.123" + "84.17.44.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6748, - "hostname": "us6748.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4957, + "hostname": "us4957.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.139" + "84.17.45.194" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6748, - "hostname": "us6748.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4958, + "hostname": "us4958.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.139" + "84.17.45.195" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6749, - "hostname": "us6749.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4963, + "hostname": "us4963.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.147" + "138.199.9.130" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6749, - "hostname": "us6749.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4964, + "hostname": "us4964.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.147" + "138.199.9.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6750, - "hostname": "us6750.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4969, + "hostname": "us4969.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.155" + "138.199.9.133" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6750, - "hostname": "us6750.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4970, + "hostname": "us4970.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.155" + "138.199.9.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6901, - "hostname": "us6901.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4975, + "hostname": "us4975.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.163" + "143.244.49.136" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6901, - "hostname": "us6901.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4976, + "hostname": "us4976.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.163" + "143.244.49.137" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6902, - "hostname": "us6902.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4982, + "hostname": "us4982.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.171" + "143.244.49.151" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6902, - "hostname": "us6902.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4983, + "hostname": "us4983.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.171" + "143.244.49.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6903, - "hostname": "us6903.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4988, + "hostname": "us4988.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.179" + "169.150.203.162" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6903, - "hostname": "us6903.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4989, + "hostname": "us4989.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.179" + "169.150.203.163" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6904, - "hostname": "us6904.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4990, + "hostname": "us4990.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.187" + "143.244.49.154" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 6904, - "hostname": "us6904.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Dedicated IP" + ], + "number": 4991, + "hostname": "us4991.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "64.44.80.187" + "169.150.203.161" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8227, - "hostname": "us8227.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5063, + "hostname": "us5063.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.102" + "185.245.87.59" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8227, - "hostname": "us8227.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5063, + "hostname": "us5063.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.45.102" + "185.245.87.59" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8228, - "hostname": "us8228.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5064, + "hostname": "us5064.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.105" + "195.206.104.156" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8228, - "hostname": "us8228.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5064, + "hostname": "us5064.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.45.105" + "195.206.104.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8229, - "hostname": "us8229.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5349, + "hostname": "us5349.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.108" + "185.245.87.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8229, - "hostname": "us8229.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5349, + "hostname": "us5349.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.45.108" + "185.245.87.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8230, - "hostname": "us8230.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5350, + "hostname": "us5350.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.120" + "185.245.87.23" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8230, - "hostname": "us8230.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5350, + "hostname": "us5350.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.45.120" + "185.245.87.23" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8231, - "hostname": "us8231.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5359, + "hostname": "us5359.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.38" + "84.17.44.149" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8231, - "hostname": "us8231.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5359, + "hostname": "us5359.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.38" + "84.17.44.149" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8232, - "hostname": "us8232.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5360, + "hostname": "us5360.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.122" + "84.17.44.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8232, - "hostname": "us8232.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5360, + "hostname": "us5360.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.45.122" + "84.17.44.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8233, - "hostname": "us8233.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5381, + "hostname": "us5381.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.35" + "91.207.175.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8233, - "hostname": "us8233.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5381, + "hostname": "us5381.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.35" + "91.207.175.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8234, - "hostname": "us8234.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5386, + "hostname": "us5386.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.111" + "45.83.89.203" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8234, - "hostname": "us8234.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5386, + "hostname": "us5386.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.45.111" + "45.83.89.203" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8235, - "hostname": "us8235.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5387, + "hostname": "us5387.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.114" + "45.83.89.211" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8235, - "hostname": "us8235.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5387, + "hostname": "us5387.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.45.114" + "45.83.89.211" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8236, - "hostname": "us8236.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5490, + "hostname": "us5490.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.45.117" + "185.245.87.48" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8236, - "hostname": "us8236.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5490, + "hostname": "us5490.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.45.117" + "185.245.87.48" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8282, - "hostname": "us8282.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5491, + "hostname": "us5491.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.58" + "185.245.87.13" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8282, - "hostname": "us8282.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5491, + "hostname": "us5491.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.58" + "185.245.87.13" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8283, - "hostname": "us8283.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5492, + "hostname": "us5492.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.56" + "185.245.87.18" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8283, - "hostname": "us8283.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5492, + "hostname": "us5492.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.56" + "185.245.87.18" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8284, - "hostname": "us8284.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5594, + "hostname": "us5594.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.54" + "185.245.87.8" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8284, - "hostname": "us8284.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5594, + "hostname": "us5594.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.54" + "185.245.87.8" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8285, - "hostname": "us8285.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5597, + "hostname": "us5597.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.52" + "185.245.87.28" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8285, - "hostname": "us8285.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5597, + "hostname": "us5597.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.52" + "185.245.87.28" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8286, - "hostname": "us8286.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5725, + "hostname": "us5725.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.50" + "185.245.87.243" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8286, - "hostname": "us8286.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5725, + "hostname": "us5725.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.50" + "185.245.87.243" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8287, - "hostname": "us8287.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5726, + "hostname": "us5726.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.137" + "185.236.200.203" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8287, - "hostname": "us8287.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5726, + "hostname": "us5726.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.137" + "185.236.200.203" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8288, - "hostname": "us8288.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5727, + "hostname": "us5727.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.135" + "185.236.200.195" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8288, - "hostname": "us8288.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5727, + "hostname": "us5727.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.135" + "185.236.200.195" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8289, - "hostname": "us8289.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5728, + "hostname": "us5728.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.133" + "185.236.200.147" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8289, - "hostname": "us8289.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5728, + "hostname": "us5728.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.133" + "185.236.200.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8290, - "hostname": "us8290.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5729, + "hostname": "us5729.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.131" + "185.236.200.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8290, - "hostname": "us8290.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5729, + "hostname": "us5729.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.131" + "185.236.200.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8291, - "hostname": "us8291.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5781, + "hostname": "us5781.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.44.129" + "84.17.45.199" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 8291, - "hostname": "us8291.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5781, + "hostname": "us5781.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "212.102.44.129" + "84.17.45.199" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9183, - "hostname": "us9183.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5782, + "hostname": "us5782.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.100" + "84.17.45.202" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9183, - "hostname": "us9183.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 5782, + "hostname": "us5782.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.100" + "84.17.45.202" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9184, - "hostname": "us9184.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5848, + "hostname": "us5848.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.102" + "152.89.204.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9184, - "hostname": "us9184.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5848, + "hostname": "us5848.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.102" + "152.89.204.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9185, - "hostname": "us9185.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5849, + "hostname": "us5849.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.104" + "152.89.204.152" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9185, - "hostname": "us9185.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5849, + "hostname": "us5849.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.104" + "152.89.204.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9186, - "hostname": "us9186.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5850, + "hostname": "us5850.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.106" + "152.89.204.154" ] }, { - "vpn": "wireguard", - "country": "United States", - "region": "The Americas", - "city": "Denver", - "number": 9186, - "hostname": "us9186.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5850, + "hostname": "us5850.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.106" + "152.89.204.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9187, - "hostname": "us9187.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5851, + "hostname": "us5851.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.108" + "152.89.204.156" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9187, - "hostname": "us9187.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5851, + "hostname": "us5851.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.108" + "152.89.204.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9188, - "hostname": "us9188.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5852, + "hostname": "us5852.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.110" + "152.89.204.158" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9188, - "hostname": "us9188.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5852, + "hostname": "us5852.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.110" + "152.89.204.158" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9189, - "hostname": "us9189.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5853, + "hostname": "us5853.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.112" + "152.89.204.160" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9189, - "hostname": "us9189.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5853, + "hostname": "us5853.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.112" + "152.89.204.160" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9190, - "hostname": "us9190.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5854, + "hostname": "us5854.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.114" + "152.89.204.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9190, - "hostname": "us9190.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5854, + "hostname": "us5854.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.114" + "152.89.204.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9191, - "hostname": "us9191.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5855, + "hostname": "us5855.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.116" + "152.89.204.164" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9191, - "hostname": "us9191.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5855, + "hostname": "us5855.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.116" + "152.89.204.164" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9192, - "hostname": "us9192.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5856, + "hostname": "us5856.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.118" + "152.89.204.166" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9192, - "hostname": "us9192.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5856, + "hostname": "us5856.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.118" + "152.89.204.166" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9193, - "hostname": "us9193.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5857, + "hostname": "us5857.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.120" + "152.89.204.168" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9193, - "hostname": "us9193.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5857, + "hostname": "us5857.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.120" + "152.89.204.168" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9194, - "hostname": "us9194.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5858, + "hostname": "us5858.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.122" + "152.89.204.170" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9194, - "hostname": "us9194.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5858, + "hostname": "us5858.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.122" + "152.89.204.170" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9195, - "hostname": "us9195.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5859, + "hostname": "us5859.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.124" + "152.89.204.172" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9195, - "hostname": "us9195.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5859, + "hostname": "us5859.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.124" + "152.89.204.172" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9196, - "hostname": "us9196.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5860, + "hostname": "us5860.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.126" + "152.89.204.174" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9196, - "hostname": "us9196.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5860, + "hostname": "us5860.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.126" + "152.89.204.174" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9197, - "hostname": "us9197.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5861, + "hostname": "us5861.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.128" + "152.89.204.176" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9197, - "hostname": "us9197.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5861, + "hostname": "us5861.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.128" + "152.89.204.176" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9198, - "hostname": "us9198.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5862, + "hostname": "us5862.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.130" + "152.89.204.178" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9198, - "hostname": "us9198.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5862, + "hostname": "us5862.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.130" + "152.89.204.178" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9199, - "hostname": "us9199.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5863, + "hostname": "us5863.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.132" + "152.89.204.180" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9199, - "hostname": "us9199.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5863, + "hostname": "us5863.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.132" + "152.89.204.180" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9200, - "hostname": "us9200.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5864, + "hostname": "us5864.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.134" + "152.89.204.182" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9200, - "hostname": "us9200.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5864, + "hostname": "us5864.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.134" + "152.89.204.182" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9201, - "hostname": "us9201.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5865, + "hostname": "us5865.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.136" + "152.89.204.184" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9201, - "hostname": "us9201.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5865, + "hostname": "us5865.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.136" + "152.89.204.184" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9202, - "hostname": "us9202.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5866, + "hostname": "us5866.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.138" + "152.89.204.186" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9202, - "hostname": "us9202.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5866, + "hostname": "us5866.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.138" + "152.89.204.186" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9203, - "hostname": "us9203.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5867, + "hostname": "us5867.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.140" + "152.89.204.188" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9203, - "hostname": "us9203.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5867, + "hostname": "us5867.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.140" + "152.89.204.188" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9204, - "hostname": "us9204.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5922, + "hostname": "us5922.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.142" + "185.245.87.33" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9204, - "hostname": "us9204.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5922, + "hostname": "us5922.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.142" + "185.245.87.33" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9205, - "hostname": "us9205.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5925, + "hostname": "us5925.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.144" + "185.236.200.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9205, - "hostname": "us9205.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5925, + "hostname": "us5925.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.144" + "185.236.200.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9206, - "hostname": "us9206.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5926, + "hostname": "us5926.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.146" + "185.236.200.131" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9206, - "hostname": "us9206.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5926, + "hostname": "us5926.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.146" + "185.236.200.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9207, - "hostname": "us9207.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5927, + "hostname": "us5927.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.148" + "185.236.200.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9207, - "hostname": "us9207.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5927, + "hostname": "us5927.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.148" + "185.236.200.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9208, - "hostname": "us9208.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5993, + "hostname": "us5993.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.150" + "185.245.87.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9208, - "hostname": "us9208.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5993, + "hostname": "us5993.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.150" + "185.245.87.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9209, - "hostname": "us9209.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5994, + "hostname": "us5994.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.152" + "185.245.87.63" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9209, - "hostname": "us9209.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5994, + "hostname": "us5994.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.152" + "185.245.87.63" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9210, - "hostname": "us9210.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5995, + "hostname": "us5995.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.154" + "139.28.216.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9210, - "hostname": "us9210.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5995, + "hostname": "us5995.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.154" + "139.28.216.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9211, - "hostname": "us9211.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5996, + "hostname": "us5996.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.156" + "139.28.216.243" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9211, - "hostname": "us9211.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5996, + "hostname": "us5996.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.156" + "139.28.216.243" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9212, - "hostname": "us9212.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5997, + "hostname": "us5997.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "83.136.182.158" + "139.28.216.251" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9212, - "hostname": "us9212.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5997, + "hostname": "us5997.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "83.136.182.158" + "139.28.216.251" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9443, - "hostname": "us9443.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5998, + "hostname": "us5998.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.35" + "139.28.216.99" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9443, - "hostname": "us9443.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5998, + "hostname": "us5998.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "64.44.80.35" + "139.28.216.99" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9444, - "hostname": "us9444.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5999, + "hostname": "us5999.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "64.44.80.131" + "37.120.132.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Denver", - "number": 9444, - "hostname": "us9444.nordvpn.com", - "wgpubkey": "mohrVW5iptcR0gt3Y/R8dcgmonn9ZAlsVwvxf60OdCM=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5999, + "hostname": "us5999.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "64.44.80.131" + "37.120.132.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9573, - "hostname": "us9573.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6000, + "hostname": "us6000.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.100" + "45.83.89.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9573, - "hostname": "us9573.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6000, + "hostname": "us6000.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.100" + "45.83.89.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9574, - "hostname": "us9574.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6001, + "hostname": "us6001.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.102" + "45.83.89.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9574, - "hostname": "us9574.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6001, + "hostname": "us6001.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.102" + "45.83.89.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9575, - "hostname": "us9575.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6002, + "hostname": "us6002.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.104" + "45.83.89.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9575, - "hostname": "us9575.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6002, + "hostname": "us6002.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.104" + "45.83.89.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9576, - "hostname": "us9576.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6003, + "hostname": "us6003.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.106" + "45.83.89.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9576, - "hostname": "us9576.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6003, + "hostname": "us6003.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.106" + "45.83.89.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9577, - "hostname": "us9577.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6004, + "hostname": "us6004.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.108" + "45.83.89.51" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9577, - "hostname": "us9577.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6004, + "hostname": "us6004.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.108" + "45.83.89.51" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9578, - "hostname": "us9578.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6458, + "hostname": "us6458.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.110" + "84.17.44.96" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9578, - "hostname": "us9578.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6458, + "hostname": "us6458.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.110" + "84.17.44.96" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9579, - "hostname": "us9579.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6459, + "hostname": "us6459.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.112" + "84.17.44.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9579, - "hostname": "us9579.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6459, + "hostname": "us6459.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.112" + "84.17.44.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9580, - "hostname": "us9580.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6460, + "hostname": "us6460.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.114" + "84.17.44.86" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9580, - "hostname": "us9580.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6460, + "hostname": "us6460.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.114" + "84.17.44.86" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9581, - "hostname": "us9581.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6461, + "hostname": "us6461.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.116" + "84.17.44.81" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9581, - "hostname": "us9581.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6461, + "hostname": "us6461.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.116" + "84.17.44.81" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9582, - "hostname": "us9582.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6462, + "hostname": "us6462.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.118" + "84.17.44.76" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9582, - "hostname": "us9582.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6462, + "hostname": "us6462.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.118" + "84.17.44.76" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9583, - "hostname": "us9583.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6665, + "hostname": "us6665.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.120" + "84.17.44.71" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9583, - "hostname": "us9583.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6665, + "hostname": "us6665.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.120" + "84.17.44.71" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9584, - "hostname": "us9584.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6668, + "hostname": "us6668.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.122" + "84.17.44.66" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9584, - "hostname": "us9584.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6668, + "hostname": "us6668.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.122" + "84.17.44.66" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9585, - "hostname": "us9585.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6670, + "hostname": "us6670.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.124" + "84.17.44.131" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9585, - "hostname": "us9585.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6670, + "hostname": "us6670.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.124" + "84.17.44.131" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9586, - "hostname": "us9586.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6671, + "hostname": "us6671.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.126" + "84.17.44.141" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9586, - "hostname": "us9586.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6671, + "hostname": "us6671.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.126" + "84.17.44.141" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9587, - "hostname": "us9587.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6672, + "hostname": "us6672.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.128" + "84.17.44.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9587, - "hostname": "us9587.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6672, + "hostname": "us6672.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.128" + "84.17.44.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9588, - "hostname": "us9588.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6751, + "hostname": "us6751.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.130" + "84.17.44.111" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9588, - "hostname": "us9588.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6751, + "hostname": "us6751.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.130" + "84.17.44.111" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9814, - "hostname": "us9814.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6752, + "hostname": "us6752.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.6" + "84.17.44.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9814, - "hostname": "us9814.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6752, + "hostname": "us6752.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.6" + "84.17.44.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9815, - "hostname": "us9815.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6757, + "hostname": "us6757.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.19" + "45.83.89.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9815, - "hostname": "us9815.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6757, + "hostname": "us6757.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.19" + "45.83.89.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9816, - "hostname": "us9816.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8502, + "hostname": "us8502.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.32" + "152.89.204.194" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9816, - "hostname": "us9816.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8502, + "hostname": "us8502.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.32" + "152.89.204.194" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9817, - "hostname": "us9817.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8506, + "hostname": "us8506.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.45" + "152.89.204.199" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9817, - "hostname": "us9817.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8506, + "hostname": "us8506.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.45" + "152.89.204.199" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9818, - "hostname": "us9818.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8507, + "hostname": "us8507.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.58" + "152.89.204.201" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9818, - "hostname": "us9818.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8507, + "hostname": "us8507.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.58" + "152.89.204.201" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9819, - "hostname": "us9819.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8508, + "hostname": "us8508.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.71" + "152.89.204.203" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9819, - "hostname": "us9819.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8508, + "hostname": "us8508.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.71" + "152.89.204.203" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9820, - "hostname": "us9820.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8557, + "hostname": "us8557.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.229.59.84" + "152.89.204.245" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 9820, - "hostname": "us9820.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8557, + "hostname": "us8557.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.229.59.84" + "152.89.204.245" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10002, - "hostname": "us10002.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8558, + "hostname": "us8558.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.77" + "152.89.204.247" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10002, - "hostname": "us10002.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8558, + "hostname": "us8558.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.77" + "152.89.204.247" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10003, - "hostname": "us10003.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8559, + "hostname": "us8559.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.91" + "152.89.204.249" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10003, - "hostname": "us10003.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8559, + "hostname": "us8559.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.91" + "152.89.204.249" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10004, - "hostname": "us10004.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8561, + "hostname": "us8561.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.105" + "152.89.204.253" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10004, - "hostname": "us10004.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8561, + "hostname": "us8561.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.105" + "152.89.204.253" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10005, - "hostname": "us10005.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8562, + "hostname": "us8562.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.119" + "91.196.220.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10005, - "hostname": "us10005.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8562, + "hostname": "us8562.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.119" + "91.196.220.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10006, - "hostname": "us10006.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8563, + "hostname": "us8563.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.133" + "91.196.220.4" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10006, - "hostname": "us10006.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8563, + "hostname": "us8563.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.133" + "91.196.220.4" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10007, - "hostname": "us10007.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8564, + "hostname": "us8564.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.147" + "91.196.220.6" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10007, - "hostname": "us10007.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8564, + "hostname": "us8564.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.147" + "91.196.220.6" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10008, - "hostname": "us10008.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8565, + "hostname": "us8565.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.161" + "91.196.220.8" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10008, - "hostname": "us10008.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8565, + "hostname": "us8565.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.161" + "91.196.220.8" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10009, - "hostname": "us10009.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8566, + "hostname": "us8566.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.175" + "91.196.220.10" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10009, - "hostname": "us10009.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8566, + "hostname": "us8566.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.175" + "91.196.220.10" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10010, - "hostname": "us10010.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8567, + "hostname": "us8567.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.189" + "91.196.220.12" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10010, - "hostname": "us10010.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8567, + "hostname": "us8567.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.189" + "91.196.220.12" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10011, - "hostname": "us10011.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8568, + "hostname": "us8568.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.214" + "91.196.220.14" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10011, - "hostname": "us10011.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8568, + "hostname": "us8568.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.214" + "91.196.220.14" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10012, - "hostname": "us10012.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8569, + "hostname": "us8569.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.228" + "91.196.220.16" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10012, - "hostname": "us10012.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8569, + "hostname": "us8569.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.228" + "91.196.220.16" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10013, - "hostname": "us10013.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8570, + "hostname": "us8570.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.156.136.242" + "91.196.220.18" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Kansas City", - "number": 10013, - "hostname": "us10013.nordvpn.com", - "wgpubkey": "3+GtC5RoZ6musIqN7WyU6i1A2n3pQwgKOoSOMNZuEwU=", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8570, + "hostname": "us8570.nordvpn.com", + "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "194.156.136.242" + "91.196.220.18" ] }, { @@ -153044,12 +210372,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5063, - "hostname": "us5063.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8571, + "hostname": "us8571.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.59" + "91.196.220.20" ] }, { @@ -153057,11 +210389,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5063, - "hostname": "us5063.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8571, + "hostname": "us8571.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.59" + "91.196.220.20" ] }, { @@ -153069,12 +210405,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5064, - "hostname": "us5064.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8572, + "hostname": "us8572.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.104.156" + "91.196.220.22" ] }, { @@ -153082,11 +210422,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5064, - "hostname": "us5064.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8572, + "hostname": "us8572.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "195.206.104.156" + "91.196.220.22" ] }, { @@ -153094,12 +210438,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5349, - "hostname": "us5349.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8573, + "hostname": "us8573.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.43" + "91.196.220.24" ] }, { @@ -153107,11 +210455,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5349, - "hostname": "us5349.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8573, + "hostname": "us8573.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.43" + "91.196.220.24" ] }, { @@ -153119,12 +210471,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5350, - "hostname": "us5350.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8574, + "hostname": "us8574.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.23" + "91.196.220.26" ] }, { @@ -153132,11 +210488,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5350, - "hostname": "us5350.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8574, + "hostname": "us8574.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.23" + "91.196.220.26" ] }, { @@ -153144,12 +210504,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5359, - "hostname": "us5359.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8575, + "hostname": "us8575.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.149" + "91.196.220.28" ] }, { @@ -153157,11 +210521,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5359, - "hostname": "us5359.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8575, + "hostname": "us8575.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.149" + "91.196.220.28" ] }, { @@ -153169,12 +210537,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5360, - "hostname": "us5360.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8576, + "hostname": "us8576.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.146" + "91.196.220.30" ] }, { @@ -153182,11 +210554,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5360, - "hostname": "us5360.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8576, + "hostname": "us8576.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.146" + "91.196.220.30" ] }, { @@ -153194,12 +210570,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5381, - "hostname": "us5381.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8577, + "hostname": "us8577.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.207.175.27" + "91.196.220.32" ] }, { @@ -153207,11 +210587,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5381, - "hostname": "us5381.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8577, + "hostname": "us8577.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.207.175.27" + "91.196.220.32" ] }, { @@ -153219,12 +210603,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5386, - "hostname": "us5386.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8578, + "hostname": "us8578.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.89.203" + "91.196.220.34" ] }, { @@ -153232,11 +210620,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5386, - "hostname": "us5386.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8578, + "hostname": "us8578.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "45.83.89.203" + "91.196.220.34" ] }, { @@ -153244,12 +210636,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5387, - "hostname": "us5387.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8579, + "hostname": "us8579.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.89.211" + "91.196.220.36" ] }, { @@ -153257,11 +210653,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5387, - "hostname": "us5387.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8579, + "hostname": "us8579.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "45.83.89.211" + "91.196.220.36" ] }, { @@ -153269,12 +210669,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5490, - "hostname": "us5490.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8580, + "hostname": "us8580.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.48" + "91.196.220.38" ] }, { @@ -153282,11 +210686,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5490, - "hostname": "us5490.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8580, + "hostname": "us8580.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.48" + "91.196.220.38" ] }, { @@ -153294,12 +210702,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5491, - "hostname": "us5491.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8581, + "hostname": "us8581.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.13" + "91.196.220.40" ] }, { @@ -153307,11 +210719,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5491, - "hostname": "us5491.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8581, + "hostname": "us8581.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.13" + "91.196.220.40" ] }, { @@ -153319,12 +210735,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5492, - "hostname": "us5492.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8582, + "hostname": "us8582.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.18" + "91.196.220.42" ] }, { @@ -153332,11 +210752,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5492, - "hostname": "us5492.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8582, + "hostname": "us8582.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.18" + "91.196.220.42" ] }, { @@ -153344,12 +210768,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5594, - "hostname": "us5594.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8583, + "hostname": "us8583.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.8" + "91.196.220.44" ] }, { @@ -153357,11 +210785,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5594, - "hostname": "us5594.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8583, + "hostname": "us8583.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.8" + "91.196.220.44" ] }, { @@ -153369,12 +210801,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5597, - "hostname": "us5597.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8584, + "hostname": "us8584.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.28" + "91.196.220.46" ] }, { @@ -153382,11 +210818,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5597, - "hostname": "us5597.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8584, + "hostname": "us8584.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.28" + "91.196.220.46" ] }, { @@ -153394,12 +210834,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5725, - "hostname": "us5725.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8585, + "hostname": "us8585.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.243" + "91.196.220.48" ] }, { @@ -153407,11 +210851,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5725, - "hostname": "us5725.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8585, + "hostname": "us8585.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.243" + "91.196.220.48" ] }, { @@ -153419,12 +210867,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5726, - "hostname": "us5726.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8586, + "hostname": "us8586.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.200.203" + "91.196.220.50" ] }, { @@ -153432,11 +210884,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5726, - "hostname": "us5726.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8586, + "hostname": "us8586.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.236.200.203" + "91.196.220.50" ] }, { @@ -153444,12 +210900,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5727, - "hostname": "us5727.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8587, + "hostname": "us8587.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.200.195" + "91.196.220.52" ] }, { @@ -153457,11 +210917,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5727, - "hostname": "us5727.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8587, + "hostname": "us8587.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.236.200.195" + "91.196.220.52" ] }, { @@ -153469,12 +210933,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5728, - "hostname": "us5728.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8588, + "hostname": "us8588.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.200.147" + "91.196.220.54" ] }, { @@ -153482,11 +210950,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5728, - "hostname": "us5728.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8588, + "hostname": "us8588.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.236.200.147" + "91.196.220.54" ] }, { @@ -153494,12 +210966,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5729, - "hostname": "us5729.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8589, + "hostname": "us8589.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.200.115" + "91.196.220.56" ] }, { @@ -153507,11 +210983,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5729, - "hostname": "us5729.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8589, + "hostname": "us8589.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.236.200.115" + "91.196.220.56" ] }, { @@ -153519,12 +210999,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5781, - "hostname": "us5781.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8590, + "hostname": "us8590.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.45.199" + "91.196.220.58" ] }, { @@ -153532,11 +211016,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5781, - "hostname": "us5781.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8590, + "hostname": "us8590.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.45.199" + "91.196.220.58" ] }, { @@ -153544,12 +211032,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5782, - "hostname": "us5782.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8591, + "hostname": "us8591.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.45.202" + "91.196.220.60" ] }, { @@ -153557,11 +211049,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5782, - "hostname": "us5782.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8591, + "hostname": "us8591.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.45.202" + "91.196.220.60" ] }, { @@ -153569,12 +211065,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5848, - "hostname": "us5848.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8592, + "hostname": "us8592.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.150" + "91.196.220.62" ] }, { @@ -153582,11 +211082,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5848, - "hostname": "us5848.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8592, + "hostname": "us8592.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.150" + "91.196.220.62" ] }, { @@ -153594,12 +211098,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5849, - "hostname": "us5849.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8697, + "hostname": "us8697.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.152" + "195.206.104.91" ] }, { @@ -153607,11 +211115,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5849, - "hostname": "us5849.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8697, + "hostname": "us8697.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.152" + "195.206.104.91" ] }, { @@ -153619,12 +211131,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5850, - "hostname": "us5850.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9273, + "hostname": "us9273.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.154" + "185.216.74.186" ] }, { @@ -153632,11 +211148,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5850, - "hostname": "us5850.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9273, + "hostname": "us9273.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.154" + "185.216.74.186" ] }, { @@ -153644,12 +211164,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5851, - "hostname": "us5851.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9274, + "hostname": "us9274.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.156" + "185.216.74.144" ] }, { @@ -153657,11 +211181,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5851, - "hostname": "us5851.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9274, + "hostname": "us9274.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.156" + "185.216.74.144" ] }, { @@ -153669,12 +211197,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5852, - "hostname": "us5852.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9275, + "hostname": "us9275.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.158" + "185.216.74.152" ] }, { @@ -153682,11 +211214,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5852, - "hostname": "us5852.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9275, + "hostname": "us9275.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.158" + "185.216.74.152" ] }, { @@ -153694,12 +211230,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5853, - "hostname": "us5853.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9276, + "hostname": "us9276.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.160" + "185.216.74.160" ] }, { @@ -153707,11 +211247,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5853, - "hostname": "us5853.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9276, + "hostname": "us9276.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.160" + "185.216.74.160" ] }, { @@ -153719,12 +211263,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5854, - "hostname": "us5854.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9277, + "hostname": "us9277.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.162" + "185.216.74.168" ] }, { @@ -153732,11 +211280,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5854, - "hostname": "us5854.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9277, + "hostname": "us9277.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.162" + "185.216.74.168" ] }, { @@ -153744,12 +211296,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5855, - "hostname": "us5855.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9278, + "hostname": "us9278.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.164" + "185.216.74.176" ] }, { @@ -153757,11 +211313,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5855, - "hostname": "us5855.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9278, + "hostname": "us9278.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.164" + "185.216.74.176" ] }, { @@ -153769,12 +211329,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5856, - "hostname": "us5856.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9279, + "hostname": "us9279.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.166" + "185.216.74.184" ] }, { @@ -153782,11 +211346,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5856, - "hostname": "us5856.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9279, + "hostname": "us9279.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.166" + "185.216.74.184" ] }, { @@ -153794,12 +211362,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5857, - "hostname": "us5857.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9280, + "hostname": "us9280.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.168" + "138.199.9.143" ] }, { @@ -153807,11 +211379,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5857, - "hostname": "us5857.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9280, + "hostname": "us9280.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.168" + "138.199.9.143" ] }, { @@ -153819,12 +211395,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5858, - "hostname": "us5858.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9281, + "hostname": "us9281.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.170" + "84.17.44.106" ] }, { @@ -153832,11 +211412,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5858, - "hostname": "us5858.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9281, + "hostname": "us9281.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.170" + "84.17.44.106" ] }, { @@ -153844,12 +211428,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5859, - "hostname": "us5859.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9282, + "hostname": "us9282.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.172" + "84.17.44.101" ] }, { @@ -153857,24 +211445,32 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5859, - "hostname": "us5859.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9282, + "hostname": "us9282.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.172" + "84.17.44.101" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 5860, - "hostname": "us5860.nordvpn.com", + "city": "Los Angeles", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9283, + "hostname": "us9283.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.174" + "138.199.9.148" ] }, { @@ -153882,11 +211478,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5860, - "hostname": "us5860.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9283, + "hostname": "us9283.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.174" + "138.199.9.148" ] }, { @@ -153894,12 +211494,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5861, - "hostname": "us5861.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9284, + "hostname": "us9284.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.176" + "138.199.9.152" ] }, { @@ -153907,11 +211511,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5861, - "hostname": "us5861.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9284, + "hostname": "us9284.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.176" + "138.199.9.152" ] }, { @@ -153919,12 +211527,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5862, - "hostname": "us5862.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9402, + "hostname": "us9402.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.178" + "185.202.221.100" ] }, { @@ -153932,11 +211544,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5862, - "hostname": "us5862.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9402, + "hostname": "us9402.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.178" + "185.202.221.100" ] }, { @@ -153944,12 +211560,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5863, - "hostname": "us5863.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9403, + "hostname": "us9403.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.180" + "185.202.221.102" ] }, { @@ -153957,11 +211577,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5863, - "hostname": "us5863.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9403, + "hostname": "us9403.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.180" + "185.202.221.102" ] }, { @@ -153969,12 +211593,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5864, - "hostname": "us5864.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9404, + "hostname": "us9404.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.182" + "185.202.221.104" ] }, { @@ -153982,11 +211610,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5864, - "hostname": "us5864.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9404, + "hostname": "us9404.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.182" + "185.202.221.104" ] }, { @@ -153994,12 +211626,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5865, - "hostname": "us5865.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9405, + "hostname": "us9405.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.184" + "185.202.221.106" ] }, { @@ -154007,11 +211643,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5865, - "hostname": "us5865.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9405, + "hostname": "us9405.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.184" + "185.202.221.106" ] }, { @@ -154019,12 +211659,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5866, - "hostname": "us5866.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9406, + "hostname": "us9406.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.186" + "185.202.221.108" ] }, { @@ -154032,11 +211676,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5866, - "hostname": "us5866.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9406, + "hostname": "us9406.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.186" + "185.202.221.108" ] }, { @@ -154044,12 +211692,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5867, - "hostname": "us5867.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9407, + "hostname": "us9407.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.188" + "185.202.221.110" ] }, { @@ -154057,11 +211709,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5867, - "hostname": "us5867.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9407, + "hostname": "us9407.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.188" + "185.202.221.110" ] }, { @@ -154069,12 +211725,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5922, - "hostname": "us5922.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9408, + "hostname": "us9408.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.33" + "185.202.221.112" ] }, { @@ -154082,11 +211742,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5922, - "hostname": "us5922.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9408, + "hostname": "us9408.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.33" + "185.202.221.112" ] }, { @@ -154094,12 +211758,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5925, - "hostname": "us5925.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9409, + "hostname": "us9409.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.200.120" + "185.202.221.114" ] }, { @@ -154107,11 +211775,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5925, - "hostname": "us5925.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9409, + "hostname": "us9409.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.236.200.120" + "185.202.221.114" ] }, { @@ -154119,12 +211791,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5926, - "hostname": "us5926.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9410, + "hostname": "us9410.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.200.131" + "185.202.221.116" ] }, { @@ -154132,11 +211808,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5926, - "hostname": "us5926.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9410, + "hostname": "us9410.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.236.200.131" + "185.202.221.116" ] }, { @@ -154144,12 +211824,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5927, - "hostname": "us5927.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9411, + "hostname": "us9411.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.236.200.136" + "185.202.221.118" ] }, { @@ -154157,11 +211841,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5927, - "hostname": "us5927.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9411, + "hostname": "us9411.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.236.200.136" + "185.202.221.118" ] }, { @@ -154169,12 +211857,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5993, - "hostname": "us5993.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9412, + "hostname": "us9412.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.110" + "185.202.221.120" ] }, { @@ -154182,11 +211874,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5993, - "hostname": "us5993.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9412, + "hostname": "us9412.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.110" + "185.202.221.120" ] }, { @@ -154194,12 +211890,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5994, - "hostname": "us5994.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9413, + "hostname": "us9413.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.87.63" + "185.202.221.122" ] }, { @@ -154207,11 +211907,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5994, - "hostname": "us5994.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9413, + "hostname": "us9413.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "185.245.87.63" + "185.202.221.122" ] }, { @@ -154219,12 +211923,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5995, - "hostname": "us5995.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9414, + "hostname": "us9414.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.216.235" + "185.202.221.124" ] }, { @@ -154232,11 +211940,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5995, - "hostname": "us5995.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9414, + "hostname": "us9414.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "139.28.216.235" + "185.202.221.124" ] }, { @@ -154244,12 +211956,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5996, - "hostname": "us5996.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9415, + "hostname": "us9415.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.216.243" + "185.202.221.126" ] }, { @@ -154257,11 +211973,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5996, - "hostname": "us5996.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9415, + "hostname": "us9415.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "139.28.216.243" + "185.202.221.126" ] }, { @@ -154269,12 +211989,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5997, - "hostname": "us5997.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9416, + "hostname": "us9416.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.216.251" + "185.202.221.128" ] }, { @@ -154282,11 +212006,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5997, - "hostname": "us5997.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9416, + "hostname": "us9416.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "139.28.216.251" + "185.202.221.128" ] }, { @@ -154294,12 +212022,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5998, - "hostname": "us5998.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9417, + "hostname": "us9417.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "139.28.216.99" + "185.202.221.130" ] }, { @@ -154307,11 +212039,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5998, - "hostname": "us5998.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9417, + "hostname": "us9417.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "139.28.216.99" + "185.202.221.130" ] }, { @@ -154319,12 +212055,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5999, - "hostname": "us5999.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9418, + "hostname": "us9418.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.132.115" + "185.202.221.132" ] }, { @@ -154332,11 +212072,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 5999, - "hostname": "us5999.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9418, + "hostname": "us9418.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "37.120.132.115" + "185.202.221.132" ] }, { @@ -154344,12 +212088,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6000, - "hostname": "us6000.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9419, + "hostname": "us9419.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.89.19" + "185.202.221.134" ] }, { @@ -154357,11 +212105,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6000, - "hostname": "us6000.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9419, + "hostname": "us9419.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "45.83.89.19" + "185.202.221.134" ] }, { @@ -154369,12 +212121,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6001, - "hostname": "us6001.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9420, + "hostname": "us9420.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.89.27" + "185.202.221.136" ] }, { @@ -154382,11 +212138,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6001, - "hostname": "us6001.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9420, + "hostname": "us9420.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "45.83.89.27" + "185.202.221.136" ] }, { @@ -154394,12 +212154,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6002, - "hostname": "us6002.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9421, + "hostname": "us9421.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.89.35" + "185.202.221.138" ] }, { @@ -154407,11 +212171,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6002, - "hostname": "us6002.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9421, + "hostname": "us9421.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "45.83.89.35" + "185.202.221.138" ] }, { @@ -154419,12 +212187,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6003, - "hostname": "us6003.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9422, + "hostname": "us9422.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.89.43" + "185.202.221.140" ] }, { @@ -154432,11 +212204,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6003, - "hostname": "us6003.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9422, + "hostname": "us9422.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "45.83.89.43" + "185.202.221.140" ] }, { @@ -154444,12 +212220,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6004, - "hostname": "us6004.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9423, + "hostname": "us9423.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.89.51" + "185.202.221.142" ] }, { @@ -154457,11 +212237,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6004, - "hostname": "us6004.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9423, + "hostname": "us9423.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "45.83.89.51" + "185.202.221.142" ] }, { @@ -154469,12 +212253,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6458, - "hostname": "us6458.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9424, + "hostname": "us9424.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.96" + "185.202.221.144" ] }, { @@ -154482,11 +212270,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6458, - "hostname": "us6458.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9424, + "hostname": "us9424.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.96" + "185.202.221.144" ] }, { @@ -154494,12 +212286,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6459, - "hostname": "us6459.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9425, + "hostname": "us9425.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.91" + "185.202.221.146" ] }, { @@ -154507,11 +212303,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6459, - "hostname": "us6459.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9425, + "hostname": "us9425.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.91" + "185.202.221.146" ] }, { @@ -154519,12 +212319,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6460, - "hostname": "us6460.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9426, + "hostname": "us9426.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.86" + "185.202.221.148" ] }, { @@ -154532,11 +212336,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6460, - "hostname": "us6460.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9426, + "hostname": "us9426.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.86" + "185.202.221.148" ] }, { @@ -154544,12 +212352,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6461, - "hostname": "us6461.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9427, + "hostname": "us9427.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.81" + "185.202.221.150" ] }, { @@ -154557,11 +212369,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6461, - "hostname": "us6461.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9427, + "hostname": "us9427.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.81" + "185.202.221.150" ] }, { @@ -154569,12 +212385,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6462, - "hostname": "us6462.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9428, + "hostname": "us9428.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.76" + "185.202.221.152" ] }, { @@ -154582,11 +212402,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6462, - "hostname": "us6462.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9428, + "hostname": "us9428.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.76" + "185.202.221.152" ] }, { @@ -154594,12 +212418,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6665, - "hostname": "us6665.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9429, + "hostname": "us9429.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.71" + "185.202.221.154" ] }, { @@ -154607,11 +212435,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6665, - "hostname": "us6665.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9429, + "hostname": "us9429.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.71" + "185.202.221.154" ] }, { @@ -154619,12 +212451,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6668, - "hostname": "us6668.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9430, + "hostname": "us9430.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.66" + "185.202.221.156" ] }, { @@ -154632,11 +212468,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6668, - "hostname": "us6668.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9430, + "hostname": "us9430.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.66" + "185.202.221.156" ] }, { @@ -154644,12 +212484,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6670, - "hostname": "us6670.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9431, + "hostname": "us9431.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.131" + "185.202.221.158" ] }, { @@ -154657,11 +212501,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6670, - "hostname": "us6670.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9431, + "hostname": "us9431.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.131" + "185.202.221.158" ] }, { @@ -154669,12 +212517,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6671, - "hostname": "us6671.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9432, + "hostname": "us9432.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.141" + "185.202.221.160" ] }, { @@ -154682,11 +212534,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6671, - "hostname": "us6671.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9432, + "hostname": "us9432.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.141" + "185.202.221.160" ] }, { @@ -154694,12 +212550,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6672, - "hostname": "us6672.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9590, + "hostname": "us9590.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.136" + "195.206.104.179" ] }, { @@ -154707,11 +212567,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6672, - "hostname": "us6672.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9590, + "hostname": "us9590.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.136" + "195.206.104.179" ] }, { @@ -154719,12 +212583,17 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6751, - "hostname": "us6751.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9591, + "hostname": "us9591.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.111" + "195.206.104.187", + "2a0d:5600:8:26a::3" ] }, { @@ -154732,11 +212601,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6751, - "hostname": "us6751.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9591, + "hostname": "us9591.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.111" + "195.206.104.187", + "2a0d:5600:8:26a::3" ] }, { @@ -154744,12 +212618,17 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6752, - "hostname": "us6752.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9592, + "hostname": "us9592.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.116" + "185.230.126.155", + "2a0d:5600:8:27a::3" ] }, { @@ -154757,11 +212636,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6752, - "hostname": "us6752.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9592, + "hostname": "us9592.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "84.17.44.116" + "185.230.126.155", + "2a0d:5600:8:27a::3" ] }, { @@ -154769,12 +212653,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6757, - "hostname": "us6757.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9593, + "hostname": "us9593.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.83.89.115" + "195.206.104.243" ] }, { @@ -154782,11 +212670,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 6757, - "hostname": "us6757.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9593, + "hostname": "us9593.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "45.83.89.115" + "195.206.104.243" ] }, { @@ -154794,12 +212686,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8502, - "hostname": "us8502.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9594, + "hostname": "us9594.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.194" + "146.70.100.27" ] }, { @@ -154807,11 +212703,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8502, - "hostname": "us8502.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9594, + "hostname": "us9594.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.194" + "146.70.100.27" ] }, { @@ -154819,12 +212719,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8506, - "hostname": "us8506.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9750, + "hostname": "us9750.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.199" + "181.214.70.4" ] }, { @@ -154832,11 +212736,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8506, - "hostname": "us8506.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9750, + "hostname": "us9750.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.199" + "181.214.70.4" ] }, { @@ -154844,12 +212752,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8507, - "hostname": "us8507.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9751, + "hostname": "us9751.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.201" + "181.214.70.18" ] }, { @@ -154857,11 +212769,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8507, - "hostname": "us8507.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9751, + "hostname": "us9751.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.201" + "181.214.70.18" ] }, { @@ -154869,12 +212785,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8508, - "hostname": "us8508.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9752, + "hostname": "us9752.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.203" + "181.214.70.34" ] }, { @@ -154882,11 +212802,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8508, - "hostname": "us8508.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9752, + "hostname": "us9752.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.203" + "181.214.70.34" ] }, { @@ -154894,12 +212818,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8557, - "hostname": "us8557.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9753, + "hostname": "us9753.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.245" + "181.214.70.50" ] }, { @@ -154907,11 +212835,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8557, - "hostname": "us8557.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9753, + "hostname": "us9753.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.245" + "181.214.70.50" ] }, { @@ -154919,12 +212851,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8558, - "hostname": "us8558.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9754, + "hostname": "us9754.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.247" + "181.214.70.66" ] }, { @@ -154932,11 +212868,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8558, - "hostname": "us8558.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9754, + "hostname": "us9754.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.247" + "181.214.70.66" ] }, { @@ -154944,12 +212884,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8559, - "hostname": "us8559.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9755, + "hostname": "us9755.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.249" + "181.214.70.82" ] }, { @@ -154957,11 +212901,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8559, - "hostname": "us8559.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9755, + "hostname": "us9755.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.249" + "181.214.70.82" ] }, { @@ -154969,12 +212917,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8560, - "hostname": "us8560.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9756, + "hostname": "us9756.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.251" + "181.214.70.98" ] }, { @@ -154982,11 +212934,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8560, - "hostname": "us8560.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9756, + "hostname": "us9756.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.251" + "181.214.70.98" ] }, { @@ -154994,12 +212950,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8561, - "hostname": "us8561.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9757, + "hostname": "us9757.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "152.89.204.253" + "181.214.70.114" ] }, { @@ -155007,11 +212967,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8561, - "hostname": "us8561.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9757, + "hostname": "us9757.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "152.89.204.253" + "181.214.70.114" ] }, { @@ -155019,12 +212983,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8562, - "hostname": "us8562.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9758, + "hostname": "us9758.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.2" + "181.214.70.130" ] }, { @@ -155032,11 +213000,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8562, - "hostname": "us8562.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9758, + "hostname": "us9758.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.2" + "181.214.70.130" ] }, { @@ -155044,12 +213016,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8563, - "hostname": "us8563.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9759, + "hostname": "us9759.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.4" + "181.214.70.146" ] }, { @@ -155057,11 +213033,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8563, - "hostname": "us8563.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9759, + "hostname": "us9759.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.4" + "181.214.70.146" ] }, { @@ -155069,12 +213049,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8564, - "hostname": "us8564.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9760, + "hostname": "us9760.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.6" + "181.214.70.162" ] }, { @@ -155082,11 +213066,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8564, - "hostname": "us8564.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9760, + "hostname": "us9760.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.6" + "181.214.70.162" ] }, { @@ -155094,12 +213082,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8565, - "hostname": "us8565.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9761, + "hostname": "us9761.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.8" + "181.214.70.178" ] }, { @@ -155107,11 +213099,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8565, - "hostname": "us8565.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9761, + "hostname": "us9761.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.8" + "181.214.70.178" ] }, { @@ -155119,12 +213115,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8566, - "hostname": "us8566.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9762, + "hostname": "us9762.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.10" + "181.214.70.194" ] }, { @@ -155132,11 +213132,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8566, - "hostname": "us8566.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9762, + "hostname": "us9762.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.10" + "181.214.70.194" ] }, { @@ -155144,12 +213148,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8567, - "hostname": "us8567.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9763, + "hostname": "us9763.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.12" + "181.214.70.210" ] }, { @@ -155157,11 +213165,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8567, - "hostname": "us8567.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9763, + "hostname": "us9763.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.12" + "181.214.70.210" ] }, { @@ -155169,12 +213181,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8568, - "hostname": "us8568.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9764, + "hostname": "us9764.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.14" + "181.214.70.225" ] }, { @@ -155182,11 +213198,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8568, - "hostname": "us8568.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9764, + "hostname": "us9764.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.14" + "181.214.70.225" ] }, { @@ -155194,12 +213214,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8569, - "hostname": "us8569.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9765, + "hostname": "us9765.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.16" + "181.214.70.240" ] }, { @@ -155207,11 +213231,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8569, - "hostname": "us8569.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9765, + "hostname": "us9765.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.16" + "181.214.70.240" ] }, { @@ -155219,12 +213247,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8570, - "hostname": "us8570.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9766, + "hostname": "us9766.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.18" + "181.215.169.4" ] }, { @@ -155232,11 +213264,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8570, - "hostname": "us8570.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9766, + "hostname": "us9766.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.18" + "181.215.169.4" ] }, { @@ -155244,12 +213280,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8571, - "hostname": "us8571.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9767, + "hostname": "us9767.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.20" + "181.215.169.18" ] }, { @@ -155257,11 +213297,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8571, - "hostname": "us8571.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9767, + "hostname": "us9767.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.20" + "181.215.169.18" ] }, { @@ -155269,12 +213313,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8572, - "hostname": "us8572.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9768, + "hostname": "us9768.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.22" + "181.215.169.34" ] }, { @@ -155282,11 +213330,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8572, - "hostname": "us8572.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9768, + "hostname": "us9768.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.22" + "181.215.169.34" ] }, { @@ -155294,12 +213346,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8573, - "hostname": "us8573.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9769, + "hostname": "us9769.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.24" + "181.215.169.50" ] }, { @@ -155307,11 +213363,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8573, - "hostname": "us8573.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9769, + "hostname": "us9769.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.24" + "181.215.169.50" ] }, { @@ -155319,12 +213379,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8574, - "hostname": "us8574.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9821, + "hostname": "us9821.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.26" + "181.215.169.66" ] }, { @@ -155332,11 +213396,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8574, - "hostname": "us8574.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9821, + "hostname": "us9821.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.26" + "181.215.169.66" ] }, { @@ -155344,12 +213412,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8575, - "hostname": "us8575.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9822, + "hostname": "us9822.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.28" + "181.215.169.82" ] }, { @@ -155357,11 +213429,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8575, - "hostname": "us8575.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9822, + "hostname": "us9822.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.28" + "181.215.169.82" ] }, { @@ -155369,12 +213445,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8576, - "hostname": "us8576.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9823, + "hostname": "us9823.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.30" + "181.215.169.98" ] }, { @@ -155382,11 +213462,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8576, - "hostname": "us8576.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9823, + "hostname": "us9823.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.30" + "181.215.169.98" ] }, { @@ -155394,12 +213478,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8577, - "hostname": "us8577.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9824, + "hostname": "us9824.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.32" + "181.215.169.114" ] }, { @@ -155407,11 +213495,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8577, - "hostname": "us8577.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9824, + "hostname": "us9824.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.32" + "181.215.169.114" ] }, { @@ -155419,12 +213511,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8578, - "hostname": "us8578.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9825, + "hostname": "us9825.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.34" + "181.215.169.130" ] }, { @@ -155432,11 +213528,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8578, - "hostname": "us8578.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9825, + "hostname": "us9825.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.34" + "181.215.169.130" ] }, { @@ -155444,12 +213544,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8579, - "hostname": "us8579.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9826, + "hostname": "us9826.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.36" + "181.215.169.146" ] }, { @@ -155457,11 +213561,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8579, - "hostname": "us8579.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9826, + "hostname": "us9826.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.36" + "181.215.169.146" ] }, { @@ -155469,12 +213577,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8580, - "hostname": "us8580.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9827, + "hostname": "us9827.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.38" + "181.215.169.162" ] }, { @@ -155482,11 +213594,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8580, - "hostname": "us8580.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9827, + "hostname": "us9827.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.38" + "181.215.169.162" ] }, { @@ -155494,12 +213610,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8581, - "hostname": "us8581.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9828, + "hostname": "us9828.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.40" + "181.215.169.178" ] }, { @@ -155507,11 +213627,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8581, - "hostname": "us8581.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9828, + "hostname": "us9828.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.40" + "181.215.169.178" ] }, { @@ -155519,12 +213643,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8582, - "hostname": "us8582.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9829, + "hostname": "us9829.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.42" + "181.215.169.194" ] }, { @@ -155532,11 +213660,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8582, - "hostname": "us8582.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9829, + "hostname": "us9829.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.42" + "181.215.169.194" ] }, { @@ -155544,12 +213676,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8583, - "hostname": "us8583.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9830, + "hostname": "us9830.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.44" + "181.215.169.210" ] }, { @@ -155557,11 +213693,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8583, - "hostname": "us8583.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9830, + "hostname": "us9830.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.44" + "181.215.169.210" ] }, { @@ -155569,12 +213709,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8584, - "hostname": "us8584.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9831, + "hostname": "us9831.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.46" + "181.215.169.225" ] }, { @@ -155582,11 +213726,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8584, - "hostname": "us8584.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9831, + "hostname": "us9831.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.46" + "181.215.169.225" ] }, { @@ -155594,12 +213742,16 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8585, - "hostname": "us8585.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9832, + "hostname": "us9832.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.48" + "181.215.169.240" ] }, { @@ -155607,11 +213759,15 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8585, - "hostname": "us8585.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9832, + "hostname": "us9832.nordvpn.com", "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", "ips": [ - "91.196.220.48" + "181.215.169.240" ] }, { @@ -155619,24 +213775,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8586, - "hostname": "us8586.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10100, + "hostname": "us10100.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.50" + "169.150.203.166" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8586, - "hostname": "us8586.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10101, + "hostname": "us10101.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.196.220.50" + "169.150.203.168" ] }, { @@ -155644,24 +213807,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8587, - "hostname": "us8587.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10102, + "hostname": "us10102.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.52" + "169.150.203.171" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8587, - "hostname": "us8587.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10103, + "hostname": "us10103.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.196.220.52" + "169.150.203.173" ] }, { @@ -155669,24 +213839,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8588, - "hostname": "us8588.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10104, + "hostname": "us10104.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.54" + "169.150.203.176" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8588, - "hostname": "us8588.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10105, + "hostname": "us10105.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.196.220.54" + "169.150.203.178" ] }, { @@ -155694,24 +213871,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8589, - "hostname": "us8589.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10114, + "hostname": "us10114.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.56" + "149.34.247.34" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8589, - "hostname": "us8589.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10115, + "hostname": "us10115.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.196.220.56" + "149.34.247.36" ] }, { @@ -155719,24 +213903,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8590, - "hostname": "us8590.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10153, + "hostname": "us10153.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.58" + "149.34.247.39" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8590, - "hostname": "us8590.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10154, + "hostname": "us10154.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.196.220.58" + "149.34.247.41" ] }, { @@ -155744,24 +213935,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8591, - "hostname": "us8591.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10155, + "hostname": "us10155.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.60" + "169.150.203.181" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8591, - "hostname": "us8591.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10156, + "hostname": "us10156.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.196.220.60" + "169.150.203.183" ] }, { @@ -155769,24 +213967,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8592, - "hostname": "us8592.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10169, + "hostname": "us10169.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.220.62" + "149.34.247.44" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8592, - "hostname": "us8592.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10170, + "hostname": "us10170.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.196.220.62" + "149.34.247.46" ] }, { @@ -155794,24 +213999,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8697, - "hostname": "us8697.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10171, + "hostname": "us10171.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.104.91" + "149.34.247.49" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 8697, - "hostname": "us8697.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10172, + "hostname": "us10172.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "195.206.104.91" + "149.34.247.51" ] }, { @@ -155819,24 +214031,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9273, - "hostname": "us9273.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10177, + "hostname": "us10177.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.74.186" + "169.150.203.129" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9273, - "hostname": "us9273.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10178, + "hostname": "us10178.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.74.186" + "169.150.203.131" ] }, { @@ -155844,24 +214063,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9274, - "hostname": "us9274.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10193, + "hostname": "us10193.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.74.144" + "169.150.203.137" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9274, - "hostname": "us9274.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10194, + "hostname": "us10194.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.74.144" + "169.150.203.139" ] }, { @@ -155869,24 +214095,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9275, - "hostname": "us9275.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10252, + "hostname": "us10252.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.74.152" + "169.150.203.133" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9275, - "hostname": "us9275.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10253, + "hostname": "us10253.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.74.152" + "169.150.203.135" ] }, { @@ -155894,24 +214127,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9276, - "hostname": "us9276.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10260, + "hostname": "us10260.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.74.160" + "169.150.203.141" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9276, - "hostname": "us9276.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10261, + "hostname": "us10261.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.74.160" + "169.150.203.143" ] }, { @@ -155919,24 +214159,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9277, - "hostname": "us9277.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10262, + "hostname": "us10262.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.74.168" + "169.150.203.145" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9277, - "hostname": "us9277.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10263, + "hostname": "us10263.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.74.168" + "169.150.203.147" ] }, { @@ -155944,24 +214191,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9278, - "hostname": "us9278.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10271, + "hostname": "us10271.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.74.176" + "149.102.243.76" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9278, - "hostname": "us9278.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10272, + "hostname": "us10272.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.74.176" + "149.102.243.78" ] }, { @@ -155969,24 +214223,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9279, - "hostname": "us9279.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10279, + "hostname": "us10279.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.74.184" + "149.102.243.81" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9279, - "hostname": "us9279.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10280, + "hostname": "us10280.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.74.184" + "149.102.243.83" ] }, { @@ -155994,24 +214255,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9280, - "hostname": "us9280.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10347, + "hostname": "us10347.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.9.143" + "149.102.243.86" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9280, - "hostname": "us9280.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10348, + "hostname": "us10348.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "138.199.9.143" + "149.102.243.88" ] }, { @@ -156019,24 +214287,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9281, - "hostname": "us9281.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10405, + "hostname": "us10405.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.106" + "154.47.31.162" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9281, - "hostname": "us9281.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10406, + "hostname": "us10406.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "84.17.44.106" + "154.47.31.164" ] }, { @@ -156044,24 +214319,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9282, - "hostname": "us9282.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10456, + "hostname": "us10456.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.44.101" + "154.47.31.177" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9282, - "hostname": "us9282.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10457, + "hostname": "us10457.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "84.17.44.101" + "154.47.31.179" ] }, { @@ -156069,24 +214351,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9283, - "hostname": "us9283.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10458, + "hostname": "us10458.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.9.148" + "149.40.53.146" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9283, - "hostname": "us9283.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10459, + "hostname": "us10459.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "138.199.9.148" + "149.40.53.148" ] }, { @@ -156094,24 +214383,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9284, - "hostname": "us9284.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10466, + "hostname": "us10466.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.9.152" + "154.47.31.182" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9284, - "hostname": "us9284.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10467, + "hostname": "us10467.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "138.199.9.152" + "154.47.31.184" ] }, { @@ -156119,24 +214415,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9402, - "hostname": "us9402.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10476, + "hostname": "us10476.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.100" + "149.40.53.151" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9402, - "hostname": "us9402.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10477, + "hostname": "us10477.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.100" + "149.40.53.153" ] }, { @@ -156144,24 +214447,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9403, - "hostname": "us9403.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10478, + "hostname": "us10478.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.102" + "149.88.30.130" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9403, - "hostname": "us9403.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10479, + "hostname": "us10479.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.102" + "149.88.30.132" ] }, { @@ -156169,24 +214479,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9404, - "hostname": "us9404.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10500, + "hostname": "us10500.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.104" + "149.88.30.135" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9404, - "hostname": "us9404.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10501, + "hostname": "us10501.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.104" + "149.88.30.137" ] }, { @@ -156194,24 +214511,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9405, - "hostname": "us9405.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10513, + "hostname": "us10513.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.106" + "149.88.30.140" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9405, - "hostname": "us9405.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10514, + "hostname": "us10514.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.106" + "149.88.30.142" ] }, { @@ -156219,24 +214543,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9406, - "hostname": "us9406.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10528, + "hostname": "us10528.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.108" + "149.88.30.145" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9406, - "hostname": "us9406.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10529, + "hostname": "us10529.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.108" + "149.88.30.147" ] }, { @@ -156244,24 +214575,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9407, - "hostname": "us9407.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10530, + "hostname": "us10530.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.110" + "149.88.30.150" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9407, - "hostname": "us9407.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10531, + "hostname": "us10531.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.110" + "149.88.30.152" ] }, { @@ -156269,24 +214607,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9408, - "hostname": "us9408.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10556, + "hostname": "us10556.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.112" + "149.88.30.178" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9408, - "hostname": "us9408.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10557, + "hostname": "us10557.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.112" + "149.88.30.180" ] }, { @@ -156294,24 +214639,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9409, - "hostname": "us9409.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10568, + "hostname": "us10568.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.114" + "149.88.30.154" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9409, - "hostname": "us9409.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10570, + "hostname": "us10570.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.114" + "149.88.30.183" ] }, { @@ -156319,24 +214671,31 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9410, - "hostname": "us9410.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10582, + "hostname": "us10582.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.116" + "149.88.30.226" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9410, - "hostname": "us9410.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10583, + "hostname": "us10583.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.116" + "149.88.30.228" ] }, { @@ -156344,2703 +214703,3558 @@ "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9411, - "hostname": "us9411.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10584, + "hostname": "us10584.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.118" + "169.150.203.185" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Los Angeles", - "number": 9411, - "hostname": "us9411.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "categories": [ + "Dedicated IP" + ], + "number": 10585, + "hostname": "us10585.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.221.118" + "169.150.203.186" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9412, - "hostname": "us9412.nordvpn.com", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "ca-us75.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.120" + "37.19.212.207" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9412, - "hostname": "us9412.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 75, + "hostname": "ca-us75.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.120" + "37.19.212.207" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9413, - "hostname": "us9413.nordvpn.com", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "ca-us76.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.122" + "37.19.212.208" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9413, - "hostname": "us9413.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Double VPN" + ], + "number": 76, + "hostname": "ca-us76.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.122" + "37.19.212.208" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9414, - "hostname": "us9414.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8392, + "hostname": "us8392.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.124" + "192.145.116.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9414, - "hostname": "us9414.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8392, + "hostname": "us8392.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.124" + "192.145.116.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9415, - "hostname": "us9415.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8393, + "hostname": "us8393.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.126" + "192.145.116.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9415, - "hostname": "us9415.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8393, + "hostname": "us8393.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.126" + "192.145.116.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9416, - "hostname": "us9416.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8394, + "hostname": "us8394.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.128" + "192.145.116.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9416, - "hostname": "us9416.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8394, + "hostname": "us8394.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.128" + "192.145.116.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9417, - "hostname": "us9417.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8395, + "hostname": "us8395.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.130" + "192.145.116.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9417, - "hostname": "us9417.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8395, + "hostname": "us8395.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.130" + "192.145.116.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9418, - "hostname": "us9418.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8396, + "hostname": "us8396.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.132" + "192.145.116.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9418, - "hostname": "us9418.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8396, + "hostname": "us8396.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.132" + "192.145.116.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9419, - "hostname": "us9419.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8397, + "hostname": "us8397.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.134" + "192.145.116.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9419, - "hostname": "us9419.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8397, + "hostname": "us8397.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.134" + "192.145.116.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9420, - "hostname": "us9420.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8398, + "hostname": "us8398.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.136" + "192.145.116.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9420, - "hostname": "us9420.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8398, + "hostname": "us8398.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.136" + "192.145.116.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9421, - "hostname": "us9421.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8399, + "hostname": "us8399.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.138" + "192.145.116.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9421, - "hostname": "us9421.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8399, + "hostname": "us8399.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.138" + "192.145.116.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9422, - "hostname": "us9422.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8400, + "hostname": "us8400.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.140" + "192.145.116.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9422, - "hostname": "us9422.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8400, + "hostname": "us8400.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.140" + "192.145.116.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9423, - "hostname": "us9423.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8401, + "hostname": "us8401.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.142" + "192.145.116.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9423, - "hostname": "us9423.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8401, + "hostname": "us8401.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.142" + "192.145.116.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9424, - "hostname": "us9424.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8402, + "hostname": "us8402.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.144" + "192.145.116.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9424, - "hostname": "us9424.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8402, + "hostname": "us8402.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.144" + "192.145.116.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9425, - "hostname": "us9425.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8403, + "hostname": "us8403.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.146" + "192.145.116.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9425, - "hostname": "us9425.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8403, + "hostname": "us8403.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.146" + "192.145.116.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9426, - "hostname": "us9426.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8404, + "hostname": "us8404.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.148" + "192.145.116.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9426, - "hostname": "us9426.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8404, + "hostname": "us8404.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.148" + "192.145.116.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9427, - "hostname": "us9427.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8405, + "hostname": "us8405.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.150" + "192.145.116.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9427, - "hostname": "us9427.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8405, + "hostname": "us8405.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.150" + "192.145.116.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9428, - "hostname": "us9428.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8406, + "hostname": "us8406.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.152" + "192.145.116.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9428, - "hostname": "us9428.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8406, + "hostname": "us8406.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.152" + "192.145.116.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9429, - "hostname": "us9429.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8407, + "hostname": "us8407.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.154" + "192.145.116.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9429, - "hostname": "us9429.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8407, + "hostname": "us8407.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.154" + "192.145.116.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9430, - "hostname": "us9430.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8408, + "hostname": "us8408.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.156" + "192.145.116.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9430, - "hostname": "us9430.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8408, + "hostname": "us8408.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.156" + "192.145.116.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9431, - "hostname": "us9431.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8409, + "hostname": "us8409.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.158" + "192.145.116.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9431, - "hostname": "us9431.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8409, + "hostname": "us8409.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.158" + "192.145.116.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9432, - "hostname": "us9432.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8410, + "hostname": "us8410.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.160" + "192.145.116.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9432, - "hostname": "us9432.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8410, + "hostname": "us8410.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.160" + "192.145.116.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9433, - "hostname": "us9433.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8411, + "hostname": "us8411.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.221.162" + "192.145.116.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9433, - "hostname": "us9433.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8411, + "hostname": "us8411.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.202.221.162" + "192.145.116.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9590, - "hostname": "us9590.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8412, + "hostname": "us8412.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.104.179" + "192.145.116.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9590, - "hostname": "us9590.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8412, + "hostname": "us8412.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "195.206.104.179" + "192.145.116.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9591, - "hostname": "us9591.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8413, + "hostname": "us8413.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.104.187", - "2a0d:5600:8:26a::3" + "192.145.116.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9591, - "hostname": "us9591.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8413, + "hostname": "us8413.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "195.206.104.187", - "2a0d:5600:8:26a::3" + "192.145.116.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9592, - "hostname": "us9592.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8414, + "hostname": "us8414.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.230.126.155", - "2a0d:5600:8:27a::3" + "192.145.116.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9592, - "hostname": "us9592.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8414, + "hostname": "us8414.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "185.230.126.155", - "2a0d:5600:8:27a::3" + "192.145.116.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9593, - "hostname": "us9593.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8415, + "hostname": "us8415.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "195.206.104.243" + "192.145.116.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9593, - "hostname": "us9593.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8415, + "hostname": "us8415.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "195.206.104.243" + "192.145.116.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9594, - "hostname": "us9594.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8416, + "hostname": "us8416.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "146.70.100.27" + "192.145.116.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9594, - "hostname": "us9594.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8416, + "hostname": "us8416.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "146.70.100.27" + "192.145.116.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9750, - "hostname": "us9750.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8417, + "hostname": "us8417.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.4" + "192.145.116.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9750, - "hostname": "us9750.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8417, + "hostname": "us8417.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.4" + "192.145.116.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9751, - "hostname": "us9751.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8418, + "hostname": "us8418.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.18" + "192.145.116.152" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9751, - "hostname": "us9751.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8418, + "hostname": "us8418.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.18" + "192.145.116.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9752, - "hostname": "us9752.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8419, + "hostname": "us8419.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.34" + "192.145.116.154" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9752, - "hostname": "us9752.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8419, + "hostname": "us8419.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.34" + "192.145.116.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9753, - "hostname": "us9753.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8420, + "hostname": "us8420.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.50" + "192.145.116.156" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9753, - "hostname": "us9753.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8420, + "hostname": "us8420.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.50" + "192.145.116.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9754, - "hostname": "us9754.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8421, + "hostname": "us8421.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.66" + "192.145.116.158" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9754, - "hostname": "us9754.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8421, + "hostname": "us8421.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.66" + "192.145.116.158" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9755, - "hostname": "us9755.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8422, + "hostname": "us8422.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.82" + "192.145.116.160" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9755, - "hostname": "us9755.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8422, + "hostname": "us8422.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.82" + "192.145.116.160" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9756, - "hostname": "us9756.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8423, + "hostname": "us8423.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.98" + "192.145.116.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9756, - "hostname": "us9756.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8423, + "hostname": "us8423.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.98" + "192.145.116.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9757, - "hostname": "us9757.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9509, + "hostname": "us9509.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.114" + "217.114.38.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9757, - "hostname": "us9757.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9509, + "hostname": "us9509.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.114" + "217.114.38.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9758, - "hostname": "us9758.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9510, + "hostname": "us9510.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.130" + "217.114.38.10" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9758, - "hostname": "us9758.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9510, + "hostname": "us9510.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.130" + "217.114.38.10" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9759, - "hostname": "us9759.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9511, + "hostname": "us9511.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.146" + "217.114.38.18" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9759, - "hostname": "us9759.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9511, + "hostname": "us9511.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.146" + "217.114.38.18" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9760, - "hostname": "us9760.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9512, + "hostname": "us9512.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.162" + "217.114.38.26" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9760, - "hostname": "us9760.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9512, + "hostname": "us9512.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.162" + "217.114.38.26" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9761, - "hostname": "us9761.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9513, + "hostname": "us9513.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.178" + "217.114.38.34" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9761, - "hostname": "us9761.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9513, + "hostname": "us9513.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.178" + "217.114.38.34" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9762, - "hostname": "us9762.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9514, + "hostname": "us9514.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.194" + "217.114.38.42" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9762, - "hostname": "us9762.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9514, + "hostname": "us9514.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.194" + "217.114.38.42" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9763, - "hostname": "us9763.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9515, + "hostname": "us9515.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.210" + "217.114.38.50" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9763, - "hostname": "us9763.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9515, + "hostname": "us9515.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.210" + "217.114.38.50" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9764, - "hostname": "us9764.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9516, + "hostname": "us9516.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.225" + "217.114.38.58" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9764, - "hostname": "us9764.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9516, + "hostname": "us9516.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.225" + "217.114.38.58" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9765, - "hostname": "us9765.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9517, + "hostname": "us9517.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.70.240" + "217.114.38.66" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9765, - "hostname": "us9765.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9517, + "hostname": "us9517.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.214.70.240" + "217.114.38.66" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9766, - "hostname": "us9766.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9518, + "hostname": "us9518.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.4" + "217.114.38.74" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9766, - "hostname": "us9766.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9518, + "hostname": "us9518.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.4" + "217.114.38.74" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9767, - "hostname": "us9767.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9519, + "hostname": "us9519.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.18" + "217.114.38.82" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9767, - "hostname": "us9767.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9519, + "hostname": "us9519.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.18" + "217.114.38.82" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9768, - "hostname": "us9768.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9520, + "hostname": "us9520.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.34" + "217.114.38.90" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9768, - "hostname": "us9768.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9520, + "hostname": "us9520.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.34" + "217.114.38.90" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9769, - "hostname": "us9769.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9521, + "hostname": "us9521.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.50" + "217.114.38.98" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9769, - "hostname": "us9769.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9521, + "hostname": "us9521.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.50" + "217.114.38.98" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9821, - "hostname": "us9821.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9522, + "hostname": "us9522.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.66" + "217.114.38.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9821, - "hostname": "us9821.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9522, + "hostname": "us9522.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.66" + "217.114.38.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9822, - "hostname": "us9822.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9523, + "hostname": "us9523.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.82" + "217.114.38.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9822, - "hostname": "us9822.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9523, + "hostname": "us9523.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.82" + "217.114.38.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9823, - "hostname": "us9823.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9524, + "hostname": "us9524.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.98" + "217.114.38.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9823, - "hostname": "us9823.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9524, + "hostname": "us9524.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.98" + "217.114.38.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9824, - "hostname": "us9824.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9525, + "hostname": "us9525.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.114" + "217.114.38.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9824, - "hostname": "us9824.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9525, + "hostname": "us9525.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.114" + "217.114.38.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9825, - "hostname": "us9825.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9526, + "hostname": "us9526.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.130" + "217.114.38.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9825, - "hostname": "us9825.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9526, + "hostname": "us9526.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.130" + "217.114.38.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9826, - "hostname": "us9826.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9527, + "hostname": "us9527.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.146" + "217.114.38.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9826, - "hostname": "us9826.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9527, + "hostname": "us9527.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.146" + "217.114.38.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9827, - "hostname": "us9827.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9528, + "hostname": "us9528.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.162" + "217.114.38.154" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9827, - "hostname": "us9827.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9528, + "hostname": "us9528.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.162" + "217.114.38.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9828, - "hostname": "us9828.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9529, + "hostname": "us9529.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.178" + "217.114.38.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9828, - "hostname": "us9828.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9529, + "hostname": "us9529.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.178" + "217.114.38.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9829, - "hostname": "us9829.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9530, + "hostname": "us9530.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.194" + "217.114.38.170" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9829, - "hostname": "us9829.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9530, + "hostname": "us9530.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.194" + "217.114.38.170" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9830, - "hostname": "us9830.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9531, + "hostname": "us9531.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.210" + "217.114.38.178" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9830, - "hostname": "us9830.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9531, + "hostname": "us9531.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.210" + "217.114.38.178" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9831, - "hostname": "us9831.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9532, + "hostname": "us9532.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.225" + "217.114.38.186" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9831, - "hostname": "us9831.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9532, + "hostname": "us9532.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.225" + "217.114.38.186" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9832, - "hostname": "us9832.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9533, + "hostname": "us9533.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.215.169.240" + "217.114.38.194" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 9832, - "hostname": "us9832.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9533, + "hostname": "us9533.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "181.215.169.240" + "217.114.38.194" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10203, - "hostname": "us10203.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9534, + "hostname": "us9534.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.67" + "217.114.38.202" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10203, - "hostname": "us10203.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9534, + "hostname": "us9534.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.67" + "217.114.38.202" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10204, - "hostname": "us10204.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9535, + "hostname": "us9535.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.83" + "217.114.38.210" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10204, - "hostname": "us10204.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9535, + "hostname": "us9535.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.83" + "217.114.38.210" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10205, - "hostname": "us10205.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9536, + "hostname": "us9536.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.91" + "217.114.38.218" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10205, - "hostname": "us10205.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9536, + "hostname": "us9536.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.91" + "217.114.38.218" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10206, - "hostname": "us10206.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9537, + "hostname": "us9537.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.99" + "217.114.38.226" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10206, - "hostname": "us10206.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9537, + "hostname": "us9537.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.99" + "217.114.38.226" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10207, - "hostname": "us10207.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9538, + "hostname": "us9538.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.131" + "217.114.38.233" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10207, - "hostname": "us10207.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9538, + "hostname": "us9538.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.131" + "217.114.38.233" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10208, - "hostname": "us10208.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9539, + "hostname": "us9539.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.139" + "217.114.38.240" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10208, - "hostname": "us10208.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9539, + "hostname": "us9539.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.139" + "217.114.38.240" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10209, - "hostname": "us10209.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9540, + "hostname": "us9540.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.51" + "217.114.38.247" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10209, - "hostname": "us10209.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9540, + "hostname": "us9540.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.51" + "217.114.38.247" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10210, - "hostname": "us10210.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9921, + "hostname": "us9921.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.155" + "45.85.144.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10210, - "hostname": "us10210.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9921, + "hostname": "us9921.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.155" + "45.85.144.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10211, - "hostname": "us10211.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9922, + "hostname": "us9922.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.163" + "45.85.144.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10211, - "hostname": "us10211.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9922, + "hostname": "us9922.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.163" + "45.85.144.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10212, - "hostname": "us10212.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9923, + "hostname": "us9923.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.171" + "45.85.144.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10212, - "hostname": "us10212.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9923, + "hostname": "us9923.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.171" + "45.85.144.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10213, - "hostname": "us10213.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9924, + "hostname": "us9924.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.147" + "45.85.144.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10213, - "hostname": "us10213.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9924, + "hostname": "us9924.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.147" + "45.85.144.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10214, - "hostname": "us10214.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9925, + "hostname": "us9925.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.107" + "45.85.144.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10214, - "hostname": "us10214.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9925, + "hostname": "us9925.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.107" + "45.85.144.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10215, - "hostname": "us10215.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9926, + "hostname": "us9926.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.115" + "45.85.144.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10215, - "hostname": "us10215.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9926, + "hostname": "us9926.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.115" + "45.85.144.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10216, - "hostname": "us10216.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9927, + "hostname": "us9927.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.123" + "45.85.144.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10216, - "hostname": "us10216.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9927, + "hostname": "us9927.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.123" + "45.85.144.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10217, - "hostname": "us10217.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9928, + "hostname": "us9928.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.227" + "45.85.144.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10217, - "hostname": "us10217.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9928, + "hostname": "us9928.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.227" + "45.85.144.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10218, - "hostname": "us10218.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9929, + "hostname": "us9929.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.187" + "45.85.144.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10218, - "hostname": "us10218.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9929, + "hostname": "us9929.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.187" + "45.85.144.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10219, - "hostname": "us10219.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9930, + "hostname": "us9930.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.27" + "45.85.144.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10219, - "hostname": "us10219.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9930, + "hostname": "us9930.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.27" + "45.85.144.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10220, - "hostname": "us10220.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9931, + "hostname": "us9931.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.19" + "45.85.144.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10220, - "hostname": "us10220.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9931, + "hostname": "us9931.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.19" + "45.85.144.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10221, - "hostname": "us10221.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9932, + "hostname": "us9932.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.11" + "45.85.144.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10221, - "hostname": "us10221.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9932, + "hostname": "us9932.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.11" + "45.85.144.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10222, - "hostname": "us10222.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9933, + "hostname": "us9933.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.43" + "45.85.144.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10222, - "hostname": "us10222.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9933, + "hostname": "us9933.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.43" + "45.85.144.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10223, - "hostname": "us10223.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9934, + "hostname": "us9934.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.219" + "45.85.145.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10223, - "hostname": "us10223.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9934, + "hostname": "us9934.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.219" + "45.85.145.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10224, - "hostname": "us10224.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9935, + "hostname": "us9935.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.195" + "45.85.145.15" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10224, - "hostname": "us10224.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9935, + "hostname": "us9935.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.195" + "45.85.145.15" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10225, - "hostname": "us10225.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9936, + "hostname": "us9936.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.235" + "45.85.145.28" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10225, - "hostname": "us10225.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9936, + "hostname": "us9936.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.235" + "45.85.145.28" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10226, - "hostname": "us10226.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9937, + "hostname": "us9937.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.3" + "45.85.145.41" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10226, - "hostname": "us10226.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9937, + "hostname": "us9937.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.3" + "45.85.145.41" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10227, - "hostname": "us10227.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9938, + "hostname": "us9938.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.139" + "45.85.145.54" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10227, - "hostname": "us10227.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9938, + "hostname": "us9938.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.139" + "45.85.145.54" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10228, - "hostname": "us10228.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9939, + "hostname": "us9939.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.131" + "45.85.145.67" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10228, - "hostname": "us10228.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9939, + "hostname": "us9939.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.131" + "45.85.145.67" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10229, - "hostname": "us10229.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9940, + "hostname": "us9940.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.251" + "45.85.145.79" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10229, - "hostname": "us10229.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9940, + "hostname": "us9940.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.251" + "45.85.145.79" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10230, - "hostname": "us10230.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9941, + "hostname": "us9941.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.203" + "45.85.145.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10230, - "hostname": "us10230.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9941, + "hostname": "us9941.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.203" + "45.85.145.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10231, - "hostname": "us10231.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9942, + "hostname": "us9942.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.211" + "45.85.145.103" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10231, - "hostname": "us10231.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9942, + "hostname": "us9942.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.211" + "45.85.145.103" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10232, - "hostname": "us10232.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9943, + "hostname": "us9943.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.3" + "45.85.145.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10232, - "hostname": "us10232.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9943, + "hostname": "us9943.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.3" + "45.85.145.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10233, - "hostname": "us10233.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10031, + "hostname": "us10031.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.11" + "154.47.22.37" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10233, - "hostname": "us10233.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10031, + "hostname": "us10031.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.11" + "154.47.22.37" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10234, - "hostname": "us10234.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10032, + "hostname": "us10032.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.19" + "91.196.69.1" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10234, - "hostname": "us10234.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10032, + "hostname": "us10032.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.19" + "91.196.69.1" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10235, - "hostname": "us10235.nordvpn.com", + "city": "Manassas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 10034, + "hostname": "us10034.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.27" + "91.196.69.5" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10235, - "hostname": "us10235.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 10034, + "hostname": "us10034.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.27" + "91.196.69.5" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10236, - "hostname": "us10236.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10035, + "hostname": "us10035.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.35" + "91.196.69.7" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10236, - "hostname": "us10236.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10035, + "hostname": "us10035.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.35" + "91.196.69.7" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10237, - "hostname": "us10237.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10036, + "hostname": "us10036.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.43" + "91.196.69.9" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10237, - "hostname": "us10237.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10036, + "hostname": "us10036.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.43" + "91.196.69.9" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10238, - "hostname": "us10238.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10037, + "hostname": "us10037.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.51" + "91.196.69.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10238, - "hostname": "us10238.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10037, + "hostname": "us10037.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.51" + "91.196.69.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10239, - "hostname": "us10239.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10038, + "hostname": "us10038.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.59" + "91.196.69.13" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10239, - "hostname": "us10239.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10038, + "hostname": "us10038.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.59" + "91.196.69.13" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10240, - "hostname": "us10240.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10039, + "hostname": "us10039.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.67" + "91.196.69.15" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10240, - "hostname": "us10240.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10039, + "hostname": "us10039.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.67" + "91.196.69.15" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10241, - "hostname": "us10241.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10040, + "hostname": "us10040.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.75" + "91.196.69.17" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10241, - "hostname": "us10241.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10040, + "hostname": "us10040.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.75" + "91.196.69.17" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10242, - "hostname": "us10242.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10041, + "hostname": "us10041.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.83" + "91.196.69.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10242, - "hostname": "us10242.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10041, + "hostname": "us10041.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.83" + "91.196.69.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10243, - "hostname": "us10243.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10042, + "hostname": "us10042.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.91" + "91.196.69.21" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10243, - "hostname": "us10243.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10042, + "hostname": "us10042.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.91" + "91.196.69.21" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10244, - "hostname": "us10244.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10043, + "hostname": "us10043.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.99" + "91.196.69.23" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10244, - "hostname": "us10244.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10043, + "hostname": "us10043.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.99" + "91.196.69.23" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10245, - "hostname": "us10245.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10044, + "hostname": "us10044.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.107" + "91.196.69.25" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10245, - "hostname": "us10245.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10044, + "hostname": "us10044.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.107" + "91.196.69.25" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10246, - "hostname": "us10246.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10045, + "hostname": "us10045.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.115" + "91.196.69.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10246, - "hostname": "us10246.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10045, + "hostname": "us10045.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.115" + "91.196.69.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10247, - "hostname": "us10247.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10046, + "hostname": "us10046.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.215.123" + "91.196.69.29" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10247, - "hostname": "us10247.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10046, + "hostname": "us10046.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.215.123" + "91.196.69.29" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10248, - "hostname": "us10248.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10047, + "hostname": "us10047.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.243" + "91.196.69.31" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10248, - "hostname": "us10248.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10047, + "hostname": "us10047.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.243" + "91.196.69.31" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10249, - "hostname": "us10249.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10048, + "hostname": "us10048.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.35" + "91.196.69.33" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10249, - "hostname": "us10249.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10048, + "hostname": "us10048.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.35" + "91.196.69.33" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10250, - "hostname": "us10250.nordvpn.com", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10049, + "hostname": "us10049.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.188.59" + "91.196.69.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Los Angeles", - "number": 10250, - "hostname": "us10250.nordvpn.com", - "wgpubkey": "V1WC7wt34kcSDyqPuUhN56NJ0v+GlqY9TwZR5WlzzB4=", + "city": "Manassas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10049, + "hostname": "us10049.nordvpn.com", + "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "140.99.188.59" + "91.196.69.35" ] }, { @@ -159048,12 +218262,16 @@ "country": "United States", "region": "The Americas", "city": "Manassas", - "number": 8392, - "hostname": "us8392.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10050, + "hostname": "us10050.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.100" + "91.196.69.37" ] }, { @@ -159061,11 +218279,15 @@ "country": "United States", "region": "The Americas", "city": "Manassas", - "number": 8392, - "hostname": "us8392.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10050, + "hostname": "us10050.nordvpn.com", "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "192.145.116.100" + "91.196.69.37" ] }, { @@ -159073,12 +218295,16 @@ "country": "United States", "region": "The Americas", "city": "Manassas", - "number": 8393, - "hostname": "us8393.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10268, + "hostname": "us10268.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.102" + "154.47.22.44" ] }, { @@ -159086,2636 +218312,3480 @@ "country": "United States", "region": "The Americas", "city": "Manassas", - "number": 8393, - "hostname": "us8393.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10268, + "hostname": "us10268.nordvpn.com", "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", "ips": [ - "192.145.116.102" + "154.47.22.44" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8394, - "hostname": "us8394.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5351, + "hostname": "us5351.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.104" + "185.245.86.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8394, - "hostname": "us8394.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5351, + "hostname": "us5351.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.104" + "185.245.86.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8395, - "hostname": "us8395.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5500, + "hostname": "us5500.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.106" + "37.120.157.3" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8395, - "hostname": "us8395.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5500, + "hostname": "us5500.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.106" + "37.120.157.3" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8396, - "hostname": "us8396.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5501, + "hostname": "us5501.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.108" + "37.120.157.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8396, - "hostname": "us8396.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5501, + "hostname": "us5501.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.108" + "37.120.157.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8397, - "hostname": "us8397.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5502, + "hostname": "us5502.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.110" + "37.120.157.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8397, - "hostname": "us8397.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5502, + "hostname": "us5502.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.110" + "37.120.157.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8398, - "hostname": "us8398.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5605, + "hostname": "us5605.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.112" + "37.120.157.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8398, - "hostname": "us8398.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5605, + "hostname": "us5605.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.112" + "37.120.157.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8399, - "hostname": "us8399.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5606, + "hostname": "us5606.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.114" + "37.120.157.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8399, - "hostname": "us8399.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5606, + "hostname": "us5606.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.114" + "37.120.157.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8401, - "hostname": "us8401.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5741, + "hostname": "us5741.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.118" + "185.245.86.83" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8401, - "hostname": "us8401.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5741, + "hostname": "us5741.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.118" + "185.245.86.83" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8402, - "hostname": "us8402.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5742, + "hostname": "us5742.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.120" + "185.245.86.195" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8402, - "hostname": "us8402.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5742, + "hostname": "us5742.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.120" + "185.245.86.195" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8403, - "hostname": "us8403.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5743, + "hostname": "us5743.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.122" + "185.245.86.155" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8403, - "hostname": "us8403.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5743, + "hostname": "us5743.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.122" + "185.245.86.155" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8404, - "hostname": "us8404.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5744, + "hostname": "us5744.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.124" + "185.245.86.107" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8404, - "hostname": "us8404.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5744, + "hostname": "us5744.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.124" + "185.245.86.107" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8405, - "hostname": "us8405.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5745, + "hostname": "us5745.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.126" + "185.245.86.203" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8405, - "hostname": "us8405.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5745, + "hostname": "us5745.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.126" + "185.245.86.203" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8406, - "hostname": "us8406.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5746, + "hostname": "us5746.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.128" + "185.245.86.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8406, - "hostname": "us8406.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5746, + "hostname": "us5746.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.128" + "185.245.86.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8407, - "hostname": "us8407.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5747, + "hostname": "us5747.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.130" + "185.245.86.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8407, - "hostname": "us8407.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5747, + "hostname": "us5747.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.130" + "185.245.86.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8408, - "hostname": "us8408.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5748, + "hostname": "us5748.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.132" + "185.245.86.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8408, - "hostname": "us8408.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5748, + "hostname": "us5748.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.132" + "185.245.86.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8409, - "hostname": "us8409.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5935, + "hostname": "us5935.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.134" + "37.120.157.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8409, - "hostname": "us8409.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5935, + "hostname": "us5935.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.134" + "37.120.157.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8410, - "hostname": "us8410.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5936, + "hostname": "us5936.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.136" + "37.120.157.203" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8410, - "hostname": "us8410.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5936, + "hostname": "us5936.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.136" + "37.120.157.203" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8411, - "hostname": "us8411.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5937, + "hostname": "us5937.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.138" + "185.245.86.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8411, - "hostname": "us8411.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5937, + "hostname": "us5937.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.138" + "185.245.86.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8412, - "hostname": "us8412.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5938, + "hostname": "us5938.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.140" + "185.245.86.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8412, - "hostname": "us8412.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5938, + "hostname": "us5938.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.140" + "185.245.86.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8413, - "hostname": "us8413.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5939, + "hostname": "us5939.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.142" + "185.245.86.49" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8413, - "hostname": "us8413.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5939, + "hostname": "us5939.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.142" + "185.245.86.49" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8414, - "hostname": "us8414.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5940, + "hostname": "us5940.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.144" + "185.245.86.54" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8414, - "hostname": "us8414.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5940, + "hostname": "us5940.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.144" + "185.245.86.54" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8415, - "hostname": "us8415.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5941, + "hostname": "us5941.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.146" + "185.245.86.40" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8415, - "hostname": "us8415.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5941, + "hostname": "us5941.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.146" + "185.245.86.40" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8416, - "hostname": "us8416.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5942, + "hostname": "us5942.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.148" + "185.245.86.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8416, - "hostname": "us8416.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5942, + "hostname": "us5942.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.148" + "185.245.86.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8417, - "hostname": "us8417.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6126, + "hostname": "us6126.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.150" + "185.245.86.243" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8417, - "hostname": "us8417.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6126, + "hostname": "us6126.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.150" + "185.245.86.243" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8418, - "hostname": "us8418.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6245, + "hostname": "us6245.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.152" + "156.146.43.200" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8418, - "hostname": "us8418.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6245, + "hostname": "us6245.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.152" + "156.146.43.200" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8419, - "hostname": "us8419.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6246, + "hostname": "us6246.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.154" + "156.146.43.197" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8419, - "hostname": "us8419.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6246, + "hostname": "us6246.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.154" + "156.146.43.197" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8420, - "hostname": "us8420.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6247, + "hostname": "us6247.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.156" + "156.146.43.203" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8420, - "hostname": "us8420.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6247, + "hostname": "us6247.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.156" + "156.146.43.203" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8421, - "hostname": "us8421.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6248, + "hostname": "us6248.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.158" + "156.146.43.206" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8421, - "hostname": "us8421.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6248, + "hostname": "us6248.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.158" + "156.146.43.206" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8422, - "hostname": "us8422.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6474, + "hostname": "us6474.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.160" + "45.87.214.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8422, - "hostname": "us8422.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6474, + "hostname": "us6474.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.160" + "45.87.214.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8423, - "hostname": "us8423.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6607, + "hostname": "us6607.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.116.162" + "37.120.215.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 8423, - "hostname": "us8423.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6607, + "hostname": "us6607.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "192.145.116.162" + "37.120.215.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9509, - "hostname": "us9509.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6608, + "hostname": "us6608.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.2" + "37.120.215.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9509, - "hostname": "us9509.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6608, + "hostname": "us6608.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.2" + "37.120.215.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9510, - "hostname": "us9510.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6609, + "hostname": "us6609.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.10" + "37.120.215.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9510, - "hostname": "us9510.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6609, + "hostname": "us6609.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.10" + "37.120.215.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9511, - "hostname": "us9511.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6610, + "hostname": "us6610.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.18" + "37.120.215.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9511, - "hostname": "us9511.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6610, + "hostname": "us6610.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.18" + "37.120.215.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9512, - "hostname": "us9512.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6611, + "hostname": "us6611.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.26" + "37.120.215.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9512, - "hostname": "us9512.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6611, + "hostname": "us6611.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.26" + "37.120.215.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9513, - "hostname": "us9513.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6612, + "hostname": "us6612.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.34" + "37.120.215.51" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9513, - "hostname": "us9513.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6612, + "hostname": "us6612.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.34" + "37.120.215.51" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9514, - "hostname": "us9514.nordvpn.com", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6758, + "hostname": "us6758.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.42" + "37.120.215.59" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9514, - "hostname": "us9514.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6758, + "hostname": "us6758.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.42" + "37.120.215.59" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9515, - "hostname": "us9515.nordvpn.com", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6760, + "hostname": "us6760.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.50" + "37.120.215.75" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9515, - "hostname": "us9515.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6760, + "hostname": "us6760.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.50" + "37.120.215.75" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9516, - "hostname": "us9516.nordvpn.com", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6761, + "hostname": "us6761.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.58" + "37.120.215.83" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9516, - "hostname": "us9516.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6761, + "hostname": "us6761.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.58" + "37.120.215.83" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9517, - "hostname": "us9517.nordvpn.com", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6762, + "hostname": "us6762.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.66" + "37.120.215.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9517, - "hostname": "us9517.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6762, + "hostname": "us6762.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.66" + "37.120.215.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9518, - "hostname": "us9518.nordvpn.com", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6763, + "hostname": "us6763.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.74" + "37.120.215.99" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9518, - "hostname": "us9518.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6763, + "hostname": "us6763.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.74" + "37.120.215.99" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9519, - "hostname": "us9519.nordvpn.com", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6765, + "hostname": "us6765.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.82" + "37.120.215.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9519, - "hostname": "us9519.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6765, + "hostname": "us6765.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.82" + "37.120.215.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9520, - "hostname": "us9520.nordvpn.com", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6766, + "hostname": "us6766.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.90" + "37.120.215.123" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9520, - "hostname": "us9520.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6766, + "hostname": "us6766.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.90" + "37.120.215.123" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9521, - "hostname": "us9521.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8083, + "hostname": "us8083.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.98" + "193.27.12.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9521, - "hostname": "us9521.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8083, + "hostname": "us8083.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.98" + "193.27.12.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9522, - "hostname": "us9522.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8786, + "hostname": "us8786.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.106" + "138.199.50.2" ] }, { - "vpn": "wireguard", - "country": "United States", - "region": "The Americas", - "city": "Manassas", - "number": 9522, - "hostname": "us9522.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8786, + "hostname": "us8786.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.106" + "138.199.50.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9523, - "hostname": "us9523.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8787, + "hostname": "us8787.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.114" + "138.199.50.7" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9523, - "hostname": "us9523.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8787, + "hostname": "us8787.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.114" + "138.199.50.7" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9524, - "hostname": "us9524.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8788, + "hostname": "us8788.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.122" + "138.199.50.12" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9524, - "hostname": "us9524.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8788, + "hostname": "us8788.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.122" + "138.199.50.12" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9525, - "hostname": "us9525.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8789, + "hostname": "us8789.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.130" + "138.199.50.17" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9525, - "hostname": "us9525.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8789, + "hostname": "us8789.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.130" + "138.199.50.17" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9526, - "hostname": "us9526.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8790, + "hostname": "us8790.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.138" + "138.199.50.22" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9526, - "hostname": "us9526.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8790, + "hostname": "us8790.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.138" + "138.199.50.22" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9527, - "hostname": "us9527.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9094, + "hostname": "us9094.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.146" + "94.140.11.1" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9527, - "hostname": "us9527.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9094, + "hostname": "us9094.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.146" + "94.140.11.1" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9528, - "hostname": "us9528.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9095, + "hostname": "us9095.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.154" + "94.140.11.3" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9528, - "hostname": "us9528.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9095, + "hostname": "us9095.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.154" + "94.140.11.3" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9529, - "hostname": "us9529.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9096, + "hostname": "us9096.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.162" + "94.140.11.5" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9529, - "hostname": "us9529.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9096, + "hostname": "us9096.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.162" + "94.140.11.5" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9530, - "hostname": "us9530.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9097, + "hostname": "us9097.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.170" + "94.140.11.7" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9530, - "hostname": "us9530.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9097, + "hostname": "us9097.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.170" + "94.140.11.7" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9531, - "hostname": "us9531.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9098, + "hostname": "us9098.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.178" + "94.140.11.9" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9531, - "hostname": "us9531.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9098, + "hostname": "us9098.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.178" + "94.140.11.9" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9532, - "hostname": "us9532.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9099, + "hostname": "us9099.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.186" + "94.140.11.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9532, - "hostname": "us9532.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9099, + "hostname": "us9099.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.186" + "94.140.11.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9533, - "hostname": "us9533.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9100, + "hostname": "us9100.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.194" + "94.140.11.13" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9533, - "hostname": "us9533.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9100, + "hostname": "us9100.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.194" + "94.140.11.13" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9534, - "hostname": "us9534.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9101, + "hostname": "us9101.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.202" + "94.140.11.15" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9534, - "hostname": "us9534.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9101, + "hostname": "us9101.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.202" + "94.140.11.15" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9535, - "hostname": "us9535.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9102, + "hostname": "us9102.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.210" + "94.140.11.17" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9535, - "hostname": "us9535.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9102, + "hostname": "us9102.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.210" + "94.140.11.17" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9536, - "hostname": "us9536.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9103, + "hostname": "us9103.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.218" + "94.140.11.19" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9536, - "hostname": "us9536.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9103, + "hostname": "us9103.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.218" + "94.140.11.19" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9537, - "hostname": "us9537.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9104, + "hostname": "us9104.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.226" + "94.140.11.21" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9537, - "hostname": "us9537.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9104, + "hostname": "us9104.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.226" + "94.140.11.21" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9538, - "hostname": "us9538.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9105, + "hostname": "us9105.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.233" + "94.140.11.23" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9538, - "hostname": "us9538.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9105, + "hostname": "us9105.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.233" + "94.140.11.23" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9539, - "hostname": "us9539.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9106, + "hostname": "us9106.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.240" + "94.140.11.25" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9539, - "hostname": "us9539.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9106, + "hostname": "us9106.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.240" + "94.140.11.25" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9540, - "hostname": "us9540.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9107, + "hostname": "us9107.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.114.38.247" + "94.140.11.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9540, - "hostname": "us9540.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9107, + "hostname": "us9107.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "217.114.38.247" + "94.140.11.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9921, - "hostname": "us9921.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9108, + "hostname": "us9108.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.100" + "94.140.11.29" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9921, - "hostname": "us9921.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9108, + "hostname": "us9108.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.100" + "94.140.11.29" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9922, - "hostname": "us9922.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9109, + "hostname": "us9109.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.102" + "94.140.11.31" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9922, - "hostname": "us9922.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9109, + "hostname": "us9109.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.102" + "94.140.11.31" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9923, - "hostname": "us9923.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9110, + "hostname": "us9110.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.104" + "94.140.11.33" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9923, - "hostname": "us9923.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9110, + "hostname": "us9110.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.104" + "94.140.11.33" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9924, - "hostname": "us9924.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9111, + "hostname": "us9111.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.106" + "94.140.11.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9924, - "hostname": "us9924.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9111, + "hostname": "us9111.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.106" + "94.140.11.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9925, - "hostname": "us9925.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9112, + "hostname": "us9112.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.108" + "94.140.11.37" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9925, - "hostname": "us9925.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9112, + "hostname": "us9112.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.108" + "94.140.11.37" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9926, - "hostname": "us9926.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9370, + "hostname": "us9370.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.110" + "185.203.218.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9926, - "hostname": "us9926.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9370, + "hostname": "us9370.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.110" + "185.203.218.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9927, - "hostname": "us9927.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9371, + "hostname": "us9371.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.112" + "185.203.218.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9927, - "hostname": "us9927.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9371, + "hostname": "us9371.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.112" + "185.203.218.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9928, - "hostname": "us9928.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9372, + "hostname": "us9372.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.114" + "185.203.218.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9928, - "hostname": "us9928.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9372, + "hostname": "us9372.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.114" + "185.203.218.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9929, - "hostname": "us9929.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9373, + "hostname": "us9373.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.116" + "185.203.218.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9929, - "hostname": "us9929.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9373, + "hostname": "us9373.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.116" + "185.203.218.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9930, - "hostname": "us9930.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9374, + "hostname": "us9374.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.118" + "185.203.218.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9930, - "hostname": "us9930.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9374, + "hostname": "us9374.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.118" + "185.203.218.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9931, - "hostname": "us9931.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9375, + "hostname": "us9375.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.120" + "185.203.218.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9931, - "hostname": "us9931.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9375, + "hostname": "us9375.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.120" + "185.203.218.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9932, - "hostname": "us9932.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9376, + "hostname": "us9376.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.122" + "185.203.218.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9932, - "hostname": "us9932.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9376, + "hostname": "us9376.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.122" + "185.203.218.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9933, - "hostname": "us9933.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9377, + "hostname": "us9377.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.144.124" + "185.203.218.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9933, - "hostname": "us9933.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9377, + "hostname": "us9377.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.144.124" + "185.203.218.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9934, - "hostname": "us9934.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9378, + "hostname": "us9378.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.2" + "185.203.218.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9934, - "hostname": "us9934.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9378, + "hostname": "us9378.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.2" + "185.203.218.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9935, - "hostname": "us9935.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9379, + "hostname": "us9379.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.15" + "185.203.218.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9935, - "hostname": "us9935.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9379, + "hostname": "us9379.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.15" + "185.203.218.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9936, - "hostname": "us9936.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9380, + "hostname": "us9380.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.28" + "185.203.218.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9936, - "hostname": "us9936.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9380, + "hostname": "us9380.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.28" + "185.203.218.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9937, - "hostname": "us9937.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9381, + "hostname": "us9381.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.41" + "185.203.218.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9937, - "hostname": "us9937.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9381, + "hostname": "us9381.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.41" + "185.203.218.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9938, - "hostname": "us9938.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9382, + "hostname": "us9382.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.54" + "185.203.218.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9938, - "hostname": "us9938.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9382, + "hostname": "us9382.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.54" + "185.203.218.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9939, - "hostname": "us9939.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9383, + "hostname": "us9383.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.67" + "185.203.218.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9939, - "hostname": "us9939.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9383, + "hostname": "us9383.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.67" + "185.203.218.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9940, - "hostname": "us9940.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9384, + "hostname": "us9384.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.79" + "185.203.218.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9940, - "hostname": "us9940.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9384, + "hostname": "us9384.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.79" + "185.203.218.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9941, - "hostname": "us9941.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9385, + "hostname": "us9385.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.91" + "185.203.218.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9941, - "hostname": "us9941.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9385, + "hostname": "us9385.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.91" + "185.203.218.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9942, - "hostname": "us9942.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9386, + "hostname": "us9386.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.103" + "185.203.218.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9942, - "hostname": "us9942.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9386, + "hostname": "us9386.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.103" + "185.203.218.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9943, - "hostname": "us9943.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9387, + "hostname": "us9387.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.85.145.115" + "185.203.218.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 9943, - "hostname": "us9943.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9387, + "hostname": "us9387.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "45.85.145.115" + "185.203.218.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10031, - "hostname": "us10031.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9388, + "hostname": "us9388.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.47.22.37" + "185.203.218.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10031, - "hostname": "us10031.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9388, + "hostname": "us9388.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "154.47.22.37" + "185.203.218.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10032, - "hostname": "us10032.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9389, + "hostname": "us9389.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.1" + "185.203.218.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10032, - "hostname": "us10032.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9389, + "hostname": "us9389.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.1" + "185.203.218.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10033, - "hostname": "us10033.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9390, + "hostname": "us9390.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.3" + "185.203.218.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10033, - "hostname": "us10033.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9390, + "hostname": "us9390.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.3" + "185.203.218.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10034, - "hostname": "us10034.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9391, + "hostname": "us9391.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.5" + "185.203.218.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10034, - "hostname": "us10034.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9391, + "hostname": "us9391.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.5" + "185.203.218.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10035, - "hostname": "us10035.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9392, + "hostname": "us9392.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.7" + "185.203.218.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10035, - "hostname": "us10035.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9392, + "hostname": "us9392.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.7" + "185.203.218.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10036, - "hostname": "us10036.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9393, + "hostname": "us9393.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.9" + "185.203.218.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10036, - "hostname": "us10036.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9393, + "hostname": "us9393.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.9" + "185.203.218.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10037, - "hostname": "us10037.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9394, + "hostname": "us9394.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.11" + "185.203.218.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10037, - "hostname": "us10037.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9394, + "hostname": "us9394.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.11" + "185.203.218.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10038, - "hostname": "us10038.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9395, + "hostname": "us9395.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.13" + "185.203.218.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10038, - "hostname": "us10038.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9395, + "hostname": "us9395.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.13" + "185.203.218.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10039, - "hostname": "us10039.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9396, + "hostname": "us9396.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.15" + "185.203.218.152" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10039, - "hostname": "us10039.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9396, + "hostname": "us9396.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.15" + "185.203.218.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10040, - "hostname": "us10040.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9397, + "hostname": "us9397.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.17" + "185.203.218.154" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10040, - "hostname": "us10040.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9397, + "hostname": "us9397.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.17" + "185.203.218.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10041, - "hostname": "us10041.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9398, + "hostname": "us9398.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.19" + "185.203.218.156" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10041, - "hostname": "us10041.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9398, + "hostname": "us9398.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.19" + "185.203.218.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10042, - "hostname": "us10042.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9399, + "hostname": "us9399.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.21" + "185.203.218.158" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10042, - "hostname": "us10042.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9399, + "hostname": "us9399.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.21" + "185.203.218.158" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10043, - "hostname": "us10043.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9400, + "hostname": "us9400.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.23" + "185.203.218.160" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10043, - "hostname": "us10043.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9400, + "hostname": "us9400.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.23" + "185.203.218.160" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10044, - "hostname": "us10044.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9401, + "hostname": "us9401.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.25" + "185.203.218.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10044, - "hostname": "us10044.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9401, + "hostname": "us9401.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.25" + "185.203.218.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10045, - "hostname": "us10045.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9634, + "hostname": "us9634.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.27" + "181.214.150.4" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10045, - "hostname": "us10045.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9634, + "hostname": "us9634.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.27" + "181.214.150.4" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10046, - "hostname": "us10046.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9635, + "hostname": "us9635.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.29" + "181.214.150.18" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10046, - "hostname": "us10046.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9635, + "hostname": "us9635.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.29" + "181.214.150.18" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10047, - "hostname": "us10047.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9636, + "hostname": "us9636.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.31" + "181.214.150.34" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10047, - "hostname": "us10047.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9636, + "hostname": "us9636.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.31" + "181.214.150.34" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10048, - "hostname": "us10048.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9637, + "hostname": "us9637.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.33" + "181.214.150.50" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10048, - "hostname": "us10048.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9637, + "hostname": "us9637.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.33" + "181.214.150.50" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10049, - "hostname": "us10049.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9638, + "hostname": "us9638.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.35" + "181.214.150.66" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10049, - "hostname": "us10049.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9638, + "hostname": "us9638.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.35" + "181.214.150.66" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10050, - "hostname": "us10050.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9639, + "hostname": "us9639.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.196.69.37" + "181.214.150.82" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10050, - "hostname": "us10050.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9639, + "hostname": "us9639.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "91.196.69.37" + "181.214.150.82" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10268, - "hostname": "us10268.nordvpn.com", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9640, + "hostname": "us9640.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.47.22.44" + "181.214.150.98" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Manassas", - "number": 10268, - "hostname": "us10268.nordvpn.com", - "wgpubkey": "vR4DQPU577hI6PbjxmUkhlAEXIGISzmlvr9yqQs5uGc=", + "city": "Miami", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9640, + "hostname": "us9640.nordvpn.com", + "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "154.47.22.44" + "181.214.150.98" ] }, { @@ -161723,12 +221793,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5351, - "hostname": "us5351.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9641, + "hostname": "us9641.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.235" + "181.214.150.114" ] }, { @@ -161736,11 +221810,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5351, - "hostname": "us5351.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9641, + "hostname": "us9641.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.235" + "181.214.150.114" ] }, { @@ -161748,12 +221826,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5500, - "hostname": "us5500.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9642, + "hostname": "us9642.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.157.3" + "181.214.150.130" ] }, { @@ -161761,11 +221843,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5500, - "hostname": "us5500.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9642, + "hostname": "us9642.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "37.120.157.3" + "181.214.150.130" ] }, { @@ -161773,12 +221859,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5501, - "hostname": "us5501.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9643, + "hostname": "us9643.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.157.19" + "181.214.150.146" ] }, { @@ -161786,11 +221876,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5501, - "hostname": "us5501.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9643, + "hostname": "us9643.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "37.120.157.19" + "181.214.150.146" ] }, { @@ -161798,12 +221892,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5502, - "hostname": "us5502.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9644, + "hostname": "us9644.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.157.27" + "181.214.150.162" ] }, { @@ -161811,11 +221909,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5502, - "hostname": "us5502.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9644, + "hostname": "us9644.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "37.120.157.27" + "181.214.150.162" ] }, { @@ -161823,12 +221925,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5605, - "hostname": "us5605.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9645, + "hostname": "us9645.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.157.35" + "181.214.150.178" ] }, { @@ -161836,11 +221942,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5605, - "hostname": "us5605.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9645, + "hostname": "us9645.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "37.120.157.35" + "181.214.150.178" ] }, { @@ -161848,12 +221958,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5606, - "hostname": "us5606.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9646, + "hostname": "us9646.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.157.43" + "181.214.150.194" ] }, { @@ -161861,11 +221975,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5606, - "hostname": "us5606.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9646, + "hostname": "us9646.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "37.120.157.43" + "181.214.150.194" ] }, { @@ -161873,12 +221991,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5741, - "hostname": "us5741.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9647, + "hostname": "us9647.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.83" + "181.214.150.210" ] }, { @@ -161886,11 +222008,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5741, - "hostname": "us5741.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9647, + "hostname": "us9647.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.83" + "181.214.150.210" ] }, { @@ -161898,12 +222024,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5742, - "hostname": "us5742.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9648, + "hostname": "us9648.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.195" + "181.214.150.225" ] }, { @@ -161911,11 +222041,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5742, - "hostname": "us5742.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9648, + "hostname": "us9648.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.195" + "181.214.150.225" ] }, { @@ -161923,12 +222057,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5743, - "hostname": "us5743.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9649, + "hostname": "us9649.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.155" + "181.214.150.240" ] }, { @@ -161936,11 +222074,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5743, - "hostname": "us5743.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9649, + "hostname": "us9649.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.155" + "181.214.150.240" ] }, { @@ -161948,12 +222090,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5744, - "hostname": "us5744.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9650, + "hostname": "us9650.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.107" + "181.214.151.4" ] }, { @@ -161961,11 +222107,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5744, - "hostname": "us5744.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9650, + "hostname": "us9650.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.107" + "181.214.151.4" ] }, { @@ -161973,12 +222123,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5745, - "hostname": "us5745.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9651, + "hostname": "us9651.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.203" + "181.214.151.18" ] }, { @@ -161986,11 +222140,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5745, - "hostname": "us5745.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9651, + "hostname": "us9651.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.203" + "181.214.151.18" ] }, { @@ -161998,12 +222156,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5746, - "hostname": "us5746.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9652, + "hostname": "us9652.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.11" + "181.214.151.34" ] }, { @@ -162011,11 +222173,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5746, - "hostname": "us5746.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9652, + "hostname": "us9652.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.11" + "181.214.151.34" ] }, { @@ -162023,12 +222189,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5747, - "hostname": "us5747.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9653, + "hostname": "us9653.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.19" + "181.214.151.50" ] }, { @@ -162036,11 +222206,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5747, - "hostname": "us5747.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9653, + "hostname": "us9653.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.19" + "181.214.151.50" ] }, { @@ -162048,12 +222222,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5748, - "hostname": "us5748.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9654, + "hostname": "us9654.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.27" + "181.214.151.66" ] }, { @@ -162061,11 +222239,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5748, - "hostname": "us5748.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9654, + "hostname": "us9654.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.27" + "181.214.151.66" ] }, { @@ -162073,12 +222255,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5935, - "hostname": "us5935.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9655, + "hostname": "us9655.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.157.235" + "181.214.151.82" ] }, { @@ -162086,11 +222272,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5935, - "hostname": "us5935.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9655, + "hostname": "us9655.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "37.120.157.235" + "181.214.151.82" ] }, { @@ -162098,12 +222288,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5936, - "hostname": "us5936.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9656, + "hostname": "us9656.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.157.203" + "181.214.151.98" ] }, { @@ -162111,11 +222305,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5936, - "hostname": "us5936.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9656, + "hostname": "us9656.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "37.120.157.203" + "181.214.151.98" ] }, { @@ -162123,12 +222321,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5937, - "hostname": "us5937.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9657, + "hostname": "us9657.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.115" + "181.214.151.114" ] }, { @@ -162136,11 +222338,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5937, - "hostname": "us5937.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9657, + "hostname": "us9657.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.115" + "181.214.151.114" ] }, { @@ -162148,12 +222354,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5938, - "hostname": "us5938.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9658, + "hostname": "us9658.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.120" + "181.214.151.130" ] }, { @@ -162161,11 +222371,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5938, - "hostname": "us5938.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9658, + "hostname": "us9658.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.120" + "181.214.151.130" ] }, { @@ -162173,12 +222387,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5939, - "hostname": "us5939.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9659, + "hostname": "us9659.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.49" + "181.214.151.146" ] }, { @@ -162186,11 +222404,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5939, - "hostname": "us5939.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9659, + "hostname": "us9659.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.49" + "181.214.151.146" ] }, { @@ -162198,12 +222420,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5940, - "hostname": "us5940.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9660, + "hostname": "us9660.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.54" + "181.214.151.162" ] }, { @@ -162211,11 +222437,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5940, - "hostname": "us5940.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9660, + "hostname": "us9660.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.54" + "181.214.151.162" ] }, { @@ -162223,12 +222453,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5941, - "hostname": "us5941.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9661, + "hostname": "us9661.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.40" + "181.214.151.178" ] }, { @@ -162236,11 +222470,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5941, - "hostname": "us5941.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9661, + "hostname": "us9661.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.40" + "181.214.151.178" ] }, { @@ -162248,12 +222486,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5942, - "hostname": "us5942.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9662, + "hostname": "us9662.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.35" + "181.214.151.194" ] }, { @@ -162261,11 +222503,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 5942, - "hostname": "us5942.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9662, + "hostname": "us9662.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.35" + "181.214.151.194" ] }, { @@ -162273,12 +222519,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6126, - "hostname": "us6126.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9663, + "hostname": "us9663.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.245.86.243" + "181.214.151.210" ] }, { @@ -162286,11 +222536,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6126, - "hostname": "us6126.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9663, + "hostname": "us9663.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "185.245.86.243" + "181.214.151.210" ] }, { @@ -162298,12 +222552,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6245, - "hostname": "us6245.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9664, + "hostname": "us9664.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.43.200" + "181.214.151.225" ] }, { @@ -162311,11 +222569,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6245, - "hostname": "us6245.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9664, + "hostname": "us9664.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "156.146.43.200" + "181.214.151.225" ] }, { @@ -162323,12 +222585,16 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6246, - "hostname": "us6246.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9665, + "hostname": "us9665.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.43.197" + "181.214.151.240" ] }, { @@ -162336,11 +222602,15 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6246, - "hostname": "us6246.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9665, + "hostname": "us9665.nordvpn.com", "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", "ips": [ - "156.146.43.197" + "181.214.151.240" ] }, { @@ -162348,24 +222618,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6247, - "hostname": "us6247.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10295, + "hostname": "us10295.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.43.203" + "138.199.50.56" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6247, - "hostname": "us6247.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10296, + "hostname": "us10296.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "156.146.43.203" + "138.199.50.58" ] }, { @@ -162373,24 +222650,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6248, - "hostname": "us6248.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10297, + "hostname": "us10297.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.43.206" + "156.146.43.209" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6248, - "hostname": "us6248.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10298, + "hostname": "us10298.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "156.146.43.206" + "156.146.43.211" ] }, { @@ -162398,24 +222682,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6474, - "hostname": "us6474.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10299, + "hostname": "us10299.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.87.214.235" + "156.146.43.214" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6474, - "hostname": "us6474.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10300, + "hostname": "us10300.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.87.214.235" + "156.146.43.216" ] }, { @@ -162423,24 +222714,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6607, - "hostname": "us6607.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10301, + "hostname": "us10301.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.11" + "149.102.224.225" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6607, - "hostname": "us6607.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10302, + "hostname": "us10302.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.11" + "149.102.224.227" ] }, { @@ -162448,24 +222746,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6608, - "hostname": "us6608.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10307, + "hostname": "us10307.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.19" + "149.102.224.229" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6608, - "hostname": "us6608.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10308, + "hostname": "us10308.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.19" + "149.102.224.231" ] }, { @@ -162473,24 +222778,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6609, - "hostname": "us6609.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10355, + "hostname": "us10355.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.27" + "149.102.224.239" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6609, - "hostname": "us6609.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10356, + "hostname": "us10356.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.27" + "149.102.224.241" ] }, { @@ -162498,24 +222810,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6610, - "hostname": "us6610.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10379, + "hostname": "us10379.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.35" + "149.102.224.244" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6610, - "hostname": "us6610.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10380, + "hostname": "us10380.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.35" + "149.102.224.246" ] }, { @@ -162523,24 +222842,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6611, - "hostname": "us6611.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10407, + "hostname": "us10407.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.43" + "149.88.17.194" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6611, - "hostname": "us6611.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10408, + "hostname": "us10408.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.43" + "149.88.17.196" ] }, { @@ -162548,24 +222874,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6612, - "hostname": "us6612.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10440, + "hostname": "us10440.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.51" + "149.88.17.209" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6612, - "hostname": "us6612.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10441, + "hostname": "us10441.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.51" + "149.88.17.211" ] }, { @@ -162573,24 +222906,47 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6758, - "hostname": "us6758.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10442, + "hostname": "us10442.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.59" + "149.88.17.199" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6758, - "hostname": "us6758.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10443, + "hostname": "us10443.nordvpn.com", + "tcp": true, + "udp": true, + "ips": [ + "149.88.17.201" + ] + }, + { + "vpn": "openvpn", + "country": "United States", + "region": "The Americas", + "city": "Miami", + "categories": [ + "Dedicated IP" + ], + "number": 10444, + "hostname": "us10444.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.59" + "149.88.17.204" ] }, { @@ -162598,24 +222954,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6760, - "hostname": "us6760.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10445, + "hostname": "us10445.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.75" + "149.88.17.206" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6760, - "hostname": "us6760.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10492, + "hostname": "us10492.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.75" + "149.88.17.215" ] }, { @@ -162623,24 +222986,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6761, - "hostname": "us6761.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10493, + "hostname": "us10493.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.83" + "149.88.17.217" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6761, - "hostname": "us6761.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10532, + "hostname": "us10532.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.83" + "149.88.17.66" ] }, { @@ -162648,24 +223018,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6762, - "hostname": "us6762.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10534, + "hostname": "us10534.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.91" + "149.88.17.71" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6762, - "hostname": "us6762.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10535, + "hostname": "us10535.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.91" + "149.88.17.73" ] }, { @@ -162673,24 +223050,31 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6763, - "hostname": "us6763.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10550, + "hostname": "us10550.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.99" + "149.88.17.50" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6763, - "hostname": "us6763.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10551, + "hostname": "us10551.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.99" + "149.88.17.52" ] }, { @@ -162698,2274 +223082,2969 @@ "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6765, - "hostname": "us6765.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10580, + "hostname": "us10580.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.115" + "149.88.17.98" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Miami", - "number": 6765, - "hostname": "us6765.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "categories": [ + "Dedicated IP" + ], + "number": 10581, + "hostname": "us10581.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.215.115" + "149.88.17.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 6766, - "hostname": "us6766.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 63, + "hostname": "ca-us63.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.215.123" + "169.150.204.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 6766, - "hostname": "us6766.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 63, + "hostname": "ca-us63.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.120.215.123" + "169.150.204.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8083, - "hostname": "us8083.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 64, + "hostname": "ca-us64.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.27.12.91" + "169.150.204.3" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8083, - "hostname": "us8083.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 64, + "hostname": "ca-us64.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "193.27.12.91" + "169.150.204.3" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8786, - "hostname": "us8786.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 65, + "hostname": "ca-us65.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.50.2" + "169.150.204.7" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8786, - "hostname": "us8786.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 65, + "hostname": "ca-us65.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.50.2" + "169.150.204.7" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8787, - "hostname": "us8787.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 66, + "hostname": "ca-us66.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.50.7" + "169.150.204.8" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8787, - "hostname": "us8787.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 66, + "hostname": "ca-us66.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.50.7" + "169.150.204.8" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8788, - "hostname": "us8788.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 67, + "hostname": "ca-us67.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.50.12" + "169.150.204.12" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8788, - "hostname": "us8788.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 67, + "hostname": "ca-us67.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.50.12" + "169.150.204.12" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8789, - "hostname": "us8789.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 68, + "hostname": "ca-us68.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.50.17" + "169.150.204.13" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8789, - "hostname": "us8789.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 68, + "hostname": "ca-us68.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.50.17" + "169.150.204.13" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8790, - "hostname": "us8790.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 69, + "hostname": "ca-us69.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.50.22" + "169.150.204.17" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 8790, - "hostname": "us8790.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 69, + "hostname": "ca-us69.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.50.22" + "169.150.204.17" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9094, - "hostname": "us9094.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 70, + "hostname": "ca-us70.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.1" + "169.150.204.18" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9094, - "hostname": "us9094.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 70, + "hostname": "ca-us70.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.1" + "169.150.204.18" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9095, - "hostname": "us9095.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 71, + "hostname": "ca-us71.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.3" + "169.150.204.22" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9095, - "hostname": "us9095.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 71, + "hostname": "ca-us71.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.3" + "169.150.204.22" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9096, - "hostname": "us9096.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 72, + "hostname": "ca-us72.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.5" + "169.150.204.23" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9096, - "hostname": "us9096.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 72, + "hostname": "ca-us72.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.5" + "169.150.204.23" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9097, - "hostname": "us9097.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 73, + "hostname": "ca-us73.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.7" + "169.150.204.27" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9097, - "hostname": "us9097.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 73, + "hostname": "ca-us73.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.7" + "169.150.204.27" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9098, - "hostname": "us9098.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "ca-us74.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.9" + "178.249.214.129" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9098, - "hostname": "us9098.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 74, + "hostname": "ca-us74.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.9" + "178.249.214.129" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9099, - "hostname": "us9099.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 89, + "hostname": "ca-us89.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.11" + "37.19.212.214" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9099, - "hostname": "us9099.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 89, + "hostname": "ca-us89.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.11" + "37.19.212.214" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9100, - "hostname": "us9100.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "ca-us90.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.13" + "37.19.212.225" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9100, - "hostname": "us9100.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 90, + "hostname": "ca-us90.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.13" + "37.19.212.225" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9101, - "hostname": "us9101.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "ca-us91.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.15" + "37.19.212.215" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9101, - "hostname": "us9101.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 91, + "hostname": "ca-us91.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.15" + "37.19.212.215" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9102, - "hostname": "us9102.nordvpn.com", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 92, + "hostname": "ca-us92.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.17" + "37.19.212.224" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9102, - "hostname": "us9102.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Double VPN" + ], + "number": 92, + "hostname": "ca-us92.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.17" + "37.19.212.224" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9103, - "hostname": "us9103.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4735, + "hostname": "us4735.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.19" + "217.138.198.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9103, - "hostname": "us9103.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 4735, + "hostname": "us4735.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.19" + "217.138.198.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9104, - "hostname": "us9104.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5057, + "hostname": "us5057.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.21" + "217.138.208.211" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9104, - "hostname": "us9104.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5057, + "hostname": "us5057.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.21" + "217.138.208.211" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9105, - "hostname": "us9105.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5058, + "hostname": "us5058.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.23" + "217.138.208.219" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9105, - "hostname": "us9105.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5058, + "hostname": "us5058.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.23" + "217.138.208.219" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9106, - "hostname": "us9106.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5059, + "hostname": "us5059.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.25" + "217.138.208.139" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9106, - "hostname": "us9106.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5059, + "hostname": "us5059.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.25" + "217.138.208.139" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9107, - "hostname": "us9107.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5060, + "hostname": "us5060.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.27" + "217.138.208.147" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9107, - "hostname": "us9107.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5060, + "hostname": "us5060.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.27" + "217.138.208.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9108, - "hostname": "us9108.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5099, + "hostname": "us5099.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.29" + "86.107.55.227" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9108, - "hostname": "us9108.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5099, + "hostname": "us5099.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.29" + "86.107.55.227" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9109, - "hostname": "us9109.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5100, + "hostname": "us5100.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.31" + "86.107.55.230" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9109, - "hostname": "us9109.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5100, + "hostname": "us5100.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.31" + "86.107.55.230" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9110, - "hostname": "us9110.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5101, + "hostname": "us5101.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.33" + "86.107.55.233" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9110, - "hostname": "us9110.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5101, + "hostname": "us5101.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.33" + "86.107.55.233" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9111, - "hostname": "us9111.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5102, + "hostname": "us5102.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.35" + "86.107.55.236" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9111, - "hostname": "us9111.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5102, + "hostname": "us5102.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.35" + "86.107.55.236" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9112, - "hostname": "us9112.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5103, + "hostname": "us5103.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "94.140.11.37" + "86.107.55.239" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9112, - "hostname": "us9112.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5103, + "hostname": "us5103.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "94.140.11.37" + "86.107.55.239" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9370, - "hostname": "us9370.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5104, + "hostname": "us5104.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.100" + "86.107.55.242" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9370, - "hostname": "us9370.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5104, + "hostname": "us5104.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.100" + "86.107.55.242" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9371, - "hostname": "us9371.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5105, + "hostname": "us5105.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.102" + "86.107.55.245" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9371, - "hostname": "us9371.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5105, + "hostname": "us5105.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.102" + "86.107.55.245" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9372, - "hostname": "us9372.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5106, + "hostname": "us5106.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.104" + "86.107.55.248" ] }, { "vpn": "wireguard", - "country": "United States", - "region": "The Americas", - "city": "Miami", - "number": 9372, - "hostname": "us9372.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "country": "United States", + "region": "The Americas", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5106, + "hostname": "us5106.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.104" + "86.107.55.248" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9373, - "hostname": "us9373.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5107, + "hostname": "us5107.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.106" + "86.107.55.251" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9373, - "hostname": "us9373.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5107, + "hostname": "us5107.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.106" + "86.107.55.251" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9374, - "hostname": "us9374.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5108, + "hostname": "us5108.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.108" + "86.107.55.253" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9374, - "hostname": "us9374.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5108, + "hostname": "us5108.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.108" + "86.107.55.253" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9375, - "hostname": "us9375.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5339, + "hostname": "us5339.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.110" + "212.102.33.98" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9375, - "hostname": "us9375.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5339, + "hostname": "us5339.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.110" + "212.102.33.98" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9376, - "hostname": "us9376.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5340, + "hostname": "us5340.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.112" + "212.102.33.101" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9376, - "hostname": "us9376.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5340, + "hostname": "us5340.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.112" + "212.102.33.101" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9377, - "hostname": "us9377.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5341, + "hostname": "us5341.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.114" + "212.102.33.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9377, - "hostname": "us9377.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5341, + "hostname": "us5341.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.114" + "212.102.33.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9378, - "hostname": "us9378.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5508, + "hostname": "us5508.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.116" + "5.181.234.75" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9378, - "hostname": "us9378.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5508, + "hostname": "us5508.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.116" + "5.181.234.75" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9379, - "hostname": "us9379.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5509, + "hostname": "us5509.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.118" + "5.181.234.83" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9379, - "hostname": "us9379.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5509, + "hostname": "us5509.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.118" + "5.181.234.83" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9380, - "hostname": "us9380.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5510, + "hostname": "us5510.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.120" + "5.181.234.91" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9380, - "hostname": "us9380.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5510, + "hostname": "us5510.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.120" + "5.181.234.91" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9381, - "hostname": "us9381.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5529, + "hostname": "us5529.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.122" + "212.103.48.171" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9381, - "hostname": "us9381.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5529, + "hostname": "us5529.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.122" + "212.103.48.171" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9382, - "hostname": "us9382.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5530, + "hostname": "us5530.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.124" + "212.103.48.163" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9382, - "hostname": "us9382.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5530, + "hostname": "us5530.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.124" + "212.103.48.163" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9383, - "hostname": "us9383.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5561, + "hostname": "us5561.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.126" + "212.102.33.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9383, - "hostname": "us9383.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5561, + "hostname": "us5561.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.126" + "212.102.33.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9384, - "hostname": "us9384.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5610, + "hostname": "us5610.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.128" + "5.181.234.99" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9384, - "hostname": "us9384.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5610, + "hostname": "us5610.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.128" + "5.181.234.99" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9385, - "hostname": "us9385.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5611, + "hostname": "us5611.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.130" + "5.181.234.107" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9385, - "hostname": "us9385.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5611, + "hostname": "us5611.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.130" + "5.181.234.107" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9386, - "hostname": "us9386.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5612, + "hostname": "us5612.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.132" + "156.146.36.44" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9386, - "hostname": "us9386.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5612, + "hostname": "us5612.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.132" + "156.146.36.44" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9387, - "hostname": "us9387.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5613, + "hostname": "us5613.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.134" + "212.102.33.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9387, - "hostname": "us9387.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5613, + "hostname": "us5613.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.134" + "212.102.33.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9388, - "hostname": "us9388.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5614, + "hostname": "us5614.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.136" + "156.146.36.39" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9388, - "hostname": "us9388.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5614, + "hostname": "us5614.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.136" + "156.146.36.39" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9389, - "hostname": "us9389.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5615, + "hostname": "us5615.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.138" + "156.146.36.34" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9389, - "hostname": "us9389.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5615, + "hostname": "us5615.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.138" + "156.146.36.34" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9390, - "hostname": "us9390.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5818, + "hostname": "us5818.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.140" + "62.182.99.32" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9390, - "hostname": "us9390.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5818, + "hostname": "us5818.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.140" + "62.182.99.32" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9391, - "hostname": "us9391.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5819, + "hostname": "us5819.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.142" + "62.182.99.34" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9391, - "hostname": "us9391.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5819, + "hostname": "us5819.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.142" + "62.182.99.34" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9392, - "hostname": "us9392.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5820, + "hostname": "us5820.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.144" + "62.182.99.36" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9392, - "hostname": "us9392.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5820, + "hostname": "us5820.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.144" + "62.182.99.36" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9393, - "hostname": "us9393.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5821, + "hostname": "us5821.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.146" + "62.182.99.38" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9393, - "hostname": "us9393.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5821, + "hostname": "us5821.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.146" + "62.182.99.38" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9394, - "hostname": "us9394.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5822, + "hostname": "us5822.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.148" + "62.182.99.40" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9394, - "hostname": "us9394.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5822, + "hostname": "us5822.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.148" + "62.182.99.40" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9395, - "hostname": "us9395.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5823, + "hostname": "us5823.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.150" + "62.182.99.42" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9395, - "hostname": "us9395.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5823, + "hostname": "us5823.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.150" + "62.182.99.42" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9396, - "hostname": "us9396.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5824, + "hostname": "us5824.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.152" + "62.182.99.44" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9396, - "hostname": "us9396.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5824, + "hostname": "us5824.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.152" + "62.182.99.44" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9397, - "hostname": "us9397.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5825, + "hostname": "us5825.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.154" + "62.182.99.46" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9397, - "hostname": "us9397.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5825, + "hostname": "us5825.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.154" + "62.182.99.46" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9398, - "hostname": "us9398.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5826, + "hostname": "us5826.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.156" + "62.182.99.48" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9398, - "hostname": "us9398.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5826, + "hostname": "us5826.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.156" + "62.182.99.48" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9399, - "hostname": "us9399.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5827, + "hostname": "us5827.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.158" + "62.182.99.50" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9399, - "hostname": "us9399.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5827, + "hostname": "us5827.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.158" + "62.182.99.50" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9400, - "hostname": "us9400.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5828, + "hostname": "us5828.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.160" + "62.182.99.52" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9400, - "hostname": "us9400.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5828, + "hostname": "us5828.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.160" + "62.182.99.52" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9401, - "hostname": "us9401.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5829, + "hostname": "us5829.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.203.218.162" + "62.182.99.54" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9401, - "hostname": "us9401.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5829, + "hostname": "us5829.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.203.218.162" + "62.182.99.54" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9634, - "hostname": "us9634.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5830, + "hostname": "us5830.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.4" + "62.182.99.56" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9634, - "hostname": "us9634.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5830, + "hostname": "us5830.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.4" + "62.182.99.56" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9635, - "hostname": "us9635.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5831, + "hostname": "us5831.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.18" + "62.182.99.58" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9635, - "hostname": "us9635.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5831, + "hostname": "us5831.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.18" + "62.182.99.58" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9636, - "hostname": "us9636.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5832, + "hostname": "us5832.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.34" + "62.182.99.60" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9636, - "hostname": "us9636.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5832, + "hostname": "us5832.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.34" + "62.182.99.60" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9637, - "hostname": "us9637.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5833, + "hostname": "us5833.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.50" + "62.182.99.62" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9637, - "hostname": "us9637.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5833, + "hostname": "us5833.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.50" + "62.182.99.62" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9638, - "hostname": "us9638.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5834, + "hostname": "us5834.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.66" + "62.182.99.64" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9638, - "hostname": "us9638.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5834, + "hostname": "us5834.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.66" + "62.182.99.64" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9639, - "hostname": "us9639.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5835, + "hostname": "us5835.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.82" + "62.182.99.66" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9639, - "hostname": "us9639.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5835, + "hostname": "us5835.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.82" + "62.182.99.66" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9640, - "hostname": "us9640.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5836, + "hostname": "us5836.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.98" + "62.182.99.68" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9640, - "hostname": "us9640.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5836, + "hostname": "us5836.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.98" + "62.182.99.68" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9641, - "hostname": "us9641.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5837, + "hostname": "us5837.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.114" + "62.182.99.70" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9641, - "hostname": "us9641.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5837, + "hostname": "us5837.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.114" + "62.182.99.70" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9642, - "hostname": "us9642.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5838, + "hostname": "us5838.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.130" + "62.182.99.72" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9642, - "hostname": "us9642.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5838, + "hostname": "us5838.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.130" + "62.182.99.72" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9643, - "hostname": "us9643.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5839, + "hostname": "us5839.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.146" + "62.182.99.74" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9643, - "hostname": "us9643.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5839, + "hostname": "us5839.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.146" + "62.182.99.74" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9644, - "hostname": "us9644.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5840, + "hostname": "us5840.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.162" + "62.182.99.76" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9644, - "hostname": "us9644.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5840, + "hostname": "us5840.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.162" + "62.182.99.76" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9645, - "hostname": "us9645.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5841, + "hostname": "us5841.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.178" + "62.182.99.78" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9645, - "hostname": "us9645.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5841, + "hostname": "us5841.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.178" + "62.182.99.78" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9646, - "hostname": "us9646.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5842, + "hostname": "us5842.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.194" + "62.182.99.80" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9646, - "hostname": "us9646.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5842, + "hostname": "us5842.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.194" + "62.182.99.80" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9647, - "hostname": "us9647.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5843, + "hostname": "us5843.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.210" + "62.182.99.82" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9647, - "hostname": "us9647.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5843, + "hostname": "us5843.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.210" + "62.182.99.82" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9648, - "hostname": "us9648.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5844, + "hostname": "us5844.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.225" + "62.182.99.84" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9648, - "hostname": "us9648.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5844, + "hostname": "us5844.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.225" + "62.182.99.84" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9649, - "hostname": "us9649.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5845, + "hostname": "us5845.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.150.240" + "62.182.99.86" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9649, - "hostname": "us9649.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5845, + "hostname": "us5845.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.150.240" + "62.182.99.86" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9650, - "hostname": "us9650.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5846, + "hostname": "us5846.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.4" + "62.182.99.88" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9650, - "hostname": "us9650.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5846, + "hostname": "us5846.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.4" + "62.182.99.88" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9651, - "hostname": "us9651.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5847, + "hostname": "us5847.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.18" + "62.182.99.90" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9651, - "hostname": "us9651.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5847, + "hostname": "us5847.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.18" + "62.182.99.90" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9652, - "hostname": "us9652.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5946, + "hostname": "us5946.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.34" + "185.244.215.147" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9652, - "hostname": "us9652.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5946, + "hostname": "us5946.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.34" + "185.244.215.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9653, - "hostname": "us9653.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5947, + "hostname": "us5947.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.50" + "185.244.215.155" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9653, - "hostname": "us9653.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5947, + "hostname": "us5947.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.50" + "185.244.215.155" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9654, - "hostname": "us9654.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5953, + "hostname": "us5953.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.66" + "91.132.137.123" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9654, - "hostname": "us9654.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5953, + "hostname": "us5953.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.66" + "91.132.137.123" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9655, - "hostname": "us9655.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5955, + "hostname": "us5955.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.82" + "91.132.137.99" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9655, - "hostname": "us9655.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5955, + "hostname": "us5955.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.82" + "91.132.137.99" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9656, - "hostname": "us9656.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5956, + "hostname": "us5956.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.98" + "91.132.137.75" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9656, - "hostname": "us9656.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5956, + "hostname": "us5956.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.98" + "91.132.137.75" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9657, - "hostname": "us9657.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6045, + "hostname": "us6045.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.114" + "176.113.72.235" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9657, - "hostname": "us9657.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6045, + "hostname": "us6045.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.114" + "176.113.72.235" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9658, - "hostname": "us9658.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6046, + "hostname": "us6046.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.130" + "217.138.206.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9658, - "hostname": "us9658.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6046, + "hostname": "us6046.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.130" + "217.138.206.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9659, - "hostname": "us9659.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6047, + "hostname": "us6047.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.146" + "217.138.206.43" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9659, - "hostname": "us9659.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6047, + "hostname": "us6047.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.146" + "217.138.206.43" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9660, - "hostname": "us9660.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6352, + "hostname": "us6352.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.162" + "91.132.137.115" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9660, - "hostname": "us9660.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6352, + "hostname": "us6352.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.162" + "91.132.137.115" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9661, - "hostname": "us9661.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6480, + "hostname": "us6480.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.178" + "5.181.234.123" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9661, - "hostname": "us9661.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6480, + "hostname": "us6480.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.178" + "5.181.234.123" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9662, - "hostname": "us9662.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6482, + "hostname": "us6482.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.194" + "5.181.234.163" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9662, - "hostname": "us9662.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6482, + "hostname": "us6482.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.194" + "5.181.234.163" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9663, - "hostname": "us9663.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6483, + "hostname": "us6483.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.210" + "5.181.234.171" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9663, - "hostname": "us9663.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6483, + "hostname": "us6483.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.210" + "5.181.234.171" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9664, - "hostname": "us9664.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6484, + "hostname": "us6484.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.225" + "5.181.234.179" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9664, - "hostname": "us9664.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6484, + "hostname": "us6484.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.225" + "5.181.234.179" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9665, - "hostname": "us9665.nordvpn.com", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6485, + "hostname": "us6485.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "181.214.151.240" + "5.181.234.187" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Miami", - "number": 9665, - "hostname": "us9665.nordvpn.com", - "wgpubkey": "e8LKAc+f9xEzq9Ar7+MfKRrs+gZ/4yzvpRJLRJ/VJ1w=", + "city": "New York", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6485, + "hostname": "us6485.nordvpn.com", + "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "181.214.151.240" + "5.181.234.187" ] }, { @@ -164973,12 +226052,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 4735, - "hostname": "us4735.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6486, + "hostname": "us6486.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.235" + "5.181.234.195" ] }, { @@ -164986,11 +226069,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 4735, - "hostname": "us4735.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6486, + "hostname": "us6486.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.235" + "5.181.234.195" ] }, { @@ -164998,12 +226085,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5057, - "hostname": "us5057.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6487, + "hostname": "us6487.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.211" + "5.181.234.203" ] }, { @@ -165011,11 +226102,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5057, - "hostname": "us5057.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6487, + "hostname": "us6487.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.211" + "5.181.234.203" ] }, { @@ -165023,12 +226118,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5058, - "hostname": "us5058.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6488, + "hostname": "us6488.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.219" + "5.181.234.211" ] }, { @@ -165036,11 +226135,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5058, - "hostname": "us5058.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6488, + "hostname": "us6488.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.219" + "5.181.234.211" ] }, { @@ -165048,12 +226151,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5059, - "hostname": "us5059.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6489, + "hostname": "us6489.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.139" + "5.181.234.219" ] }, { @@ -165061,11 +226168,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5059, - "hostname": "us5059.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6489, + "hostname": "us6489.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.139" + "5.181.234.219" ] }, { @@ -165073,12 +226184,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5060, - "hostname": "us5060.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6490, + "hostname": "us6490.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.147" + "89.187.178.7" ] }, { @@ -165086,11 +226201,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5060, - "hostname": "us5060.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6490, + "hostname": "us6490.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.147" + "89.187.178.7" ] }, { @@ -165098,12 +226217,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5099, - "hostname": "us5099.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6491, + "hostname": "us6491.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.227" + "89.187.178.12" ] }, { @@ -165111,11 +226234,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5099, - "hostname": "us5099.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6491, + "hostname": "us6491.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.227" + "89.187.178.12" ] }, { @@ -165123,12 +226250,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5100, - "hostname": "us5100.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6492, + "hostname": "us6492.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.230" + "89.187.178.27" ] }, { @@ -165136,11 +226267,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5100, - "hostname": "us5100.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6492, + "hostname": "us6492.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.230" + "89.187.178.27" ] }, { @@ -165148,12 +226283,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5101, - "hostname": "us5101.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6493, + "hostname": "us6493.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.233" + "89.187.177.231" ] }, { @@ -165161,11 +226300,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5101, - "hostname": "us5101.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6493, + "hostname": "us6493.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.233" + "89.187.177.231" ] }, { @@ -165173,12 +226316,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5102, - "hostname": "us5102.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6494, + "hostname": "us6494.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.236" + "89.187.177.236" ] }, { @@ -165186,11 +226333,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5102, - "hostname": "us5102.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6494, + "hostname": "us6494.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.236" + "89.187.177.236" ] }, { @@ -165198,12 +226349,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5103, - "hostname": "us5103.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6495, + "hostname": "us6495.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.239" + "89.187.178.17" ] }, { @@ -165211,11 +226366,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5103, - "hostname": "us5103.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6495, + "hostname": "us6495.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.239" + "89.187.178.17" ] }, { @@ -165223,12 +226382,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5104, - "hostname": "us5104.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6496, + "hostname": "us6496.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.242" + "89.187.178.37" ] }, { @@ -165236,11 +226399,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5104, - "hostname": "us5104.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6496, + "hostname": "us6496.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.242" + "89.187.178.37" ] }, { @@ -165248,12 +226415,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5105, - "hostname": "us5105.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6497, + "hostname": "us6497.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.245" + "89.187.178.32" ] }, { @@ -165261,11 +226432,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5105, - "hostname": "us5105.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6497, + "hostname": "us6497.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.245" + "89.187.178.32" ] }, { @@ -165273,12 +226448,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5106, - "hostname": "us5106.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6613, + "hostname": "us6613.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.248" + "89.187.178.42" ] }, { @@ -165286,11 +226465,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5106, - "hostname": "us5106.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6613, + "hostname": "us6613.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.248" + "89.187.178.42" ] }, { @@ -165298,12 +226481,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5107, - "hostname": "us5107.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6614, + "hostname": "us6614.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.251" + "89.187.177.226" ] }, { @@ -165311,11 +226498,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5107, - "hostname": "us5107.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6614, + "hostname": "us6614.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.251" + "89.187.177.226" ] }, { @@ -165323,12 +226514,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5108, - "hostname": "us5108.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6620, + "hostname": "us6620.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "86.107.55.253" + "45.152.180.19" ] }, { @@ -165336,11 +226531,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5108, - "hostname": "us5108.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6620, + "hostname": "us6620.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "86.107.55.253" + "45.152.180.19" ] }, { @@ -165348,12 +226547,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5339, - "hostname": "us5339.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6775, + "hostname": "us6775.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.33.98" + "45.152.180.187" ] }, { @@ -165361,11 +226564,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5339, - "hostname": "us5339.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6775, + "hostname": "us6775.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "212.102.33.98" + "45.152.180.187" ] }, { @@ -165373,12 +226580,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5340, - "hostname": "us5340.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6776, + "hostname": "us6776.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.33.101" + "45.152.180.235" ] }, { @@ -165386,11 +226597,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5340, - "hostname": "us5340.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6776, + "hostname": "us6776.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "212.102.33.101" + "45.152.180.235" ] }, { @@ -165398,12 +226613,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5341, - "hostname": "us5341.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6777, + "hostname": "us6777.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.33.104" + "45.152.180.243" ] }, { @@ -165411,11 +226630,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5341, - "hostname": "us5341.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6777, + "hostname": "us6777.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "212.102.33.104" + "45.152.180.243" ] }, { @@ -165423,12 +226646,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5508, - "hostname": "us5508.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6778, + "hostname": "us6778.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.75" + "45.152.180.251" ] }, { @@ -165436,11 +226663,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5508, - "hostname": "us5508.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6778, + "hostname": "us6778.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.75" + "45.152.180.251" ] }, { @@ -165448,12 +226679,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5509, - "hostname": "us5509.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6779, + "hostname": "us6779.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.83" + "217.138.198.155" ] }, { @@ -165461,11 +226696,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5509, - "hostname": "us5509.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6779, + "hostname": "us6779.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.83" + "217.138.198.155" ] }, { @@ -165473,12 +226712,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5510, - "hostname": "us5510.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6780, + "hostname": "us6780.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.91" + "217.138.198.163" ] }, { @@ -165486,11 +226729,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5510, - "hostname": "us5510.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6780, + "hostname": "us6780.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.91" + "217.138.198.163" ] }, { @@ -165498,12 +226745,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5529, - "hostname": "us5529.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6781, + "hostname": "us6781.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.103.48.171" + "217.138.198.171" ] }, { @@ -165511,11 +226762,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5529, - "hostname": "us5529.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6781, + "hostname": "us6781.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "212.103.48.171" + "217.138.198.171" ] }, { @@ -165523,12 +226778,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5530, - "hostname": "us5530.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6782, + "hostname": "us6782.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.103.48.163" + "217.138.198.179" ] }, { @@ -165536,11 +226795,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5530, - "hostname": "us5530.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6782, + "hostname": "us6782.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "212.103.48.163" + "217.138.198.179" ] }, { @@ -165548,12 +226811,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5561, - "hostname": "us5561.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6783, + "hostname": "us6783.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.33.115" + "217.138.198.187" ] }, { @@ -165561,11 +226828,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5561, - "hostname": "us5561.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6783, + "hostname": "us6783.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "212.102.33.115" + "217.138.198.187" ] }, { @@ -165573,12 +226844,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5610, - "hostname": "us5610.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6784, + "hostname": "us6784.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.99" + "217.138.198.195" ] }, { @@ -165586,11 +226861,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5610, - "hostname": "us5610.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6784, + "hostname": "us6784.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.99" + "217.138.198.195" ] }, { @@ -165598,12 +226877,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5611, - "hostname": "us5611.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6821, + "hostname": "us6821.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.107" + "62.182.99.93" ] }, { @@ -165611,11 +226894,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5611, - "hostname": "us5611.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6821, + "hostname": "us6821.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.107" + "62.182.99.93" ] }, { @@ -165623,12 +226910,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5612, - "hostname": "us5612.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6822, + "hostname": "us6822.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.36.44" + "62.182.99.96" ] }, { @@ -165636,11 +226927,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5612, - "hostname": "us5612.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6822, + "hostname": "us6822.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "156.146.36.44" + "62.182.99.96" ] }, { @@ -165648,12 +226943,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5613, - "hostname": "us5613.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6823, + "hostname": "us6823.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.33.120" + "62.182.99.99" ] }, { @@ -165661,11 +226960,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5613, - "hostname": "us5613.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6823, + "hostname": "us6823.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "212.102.33.120" + "62.182.99.99" ] }, { @@ -165673,12 +226976,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5614, - "hostname": "us5614.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6824, + "hostname": "us6824.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.36.39" + "62.182.99.102" ] }, { @@ -165686,11 +226993,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5614, - "hostname": "us5614.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6824, + "hostname": "us6824.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "156.146.36.39" + "62.182.99.102" ] }, { @@ -165698,12 +227009,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5615, - "hostname": "us5615.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6825, + "hostname": "us6825.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.36.34" + "62.182.99.105" ] }, { @@ -165711,11 +227026,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5615, - "hostname": "us5615.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6825, + "hostname": "us6825.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "156.146.36.34" + "62.182.99.105" ] }, { @@ -165723,12 +227042,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5818, - "hostname": "us5818.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6826, + "hostname": "us6826.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.32" + "62.182.99.108" ] }, { @@ -165736,11 +227059,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5818, - "hostname": "us5818.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6826, + "hostname": "us6826.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.32" + "62.182.99.108" ] }, { @@ -165748,12 +227075,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5819, - "hostname": "us5819.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6827, + "hostname": "us6827.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.34" + "62.182.99.111" ] }, { @@ -165761,11 +227092,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5819, - "hostname": "us5819.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6827, + "hostname": "us6827.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.34" + "62.182.99.111" ] }, { @@ -165773,12 +227108,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5820, - "hostname": "us5820.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6828, + "hostname": "us6828.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.36" + "62.182.99.114" ] }, { @@ -165786,11 +227125,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5820, - "hostname": "us5820.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6828, + "hostname": "us6828.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.36" + "62.182.99.114" ] }, { @@ -165798,12 +227141,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5821, - "hostname": "us5821.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6829, + "hostname": "us6829.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.38" + "62.182.99.117" ] }, { @@ -165811,11 +227158,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5821, - "hostname": "us5821.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6829, + "hostname": "us6829.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.38" + "62.182.99.117" ] }, { @@ -165823,12 +227174,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5822, - "hostname": "us5822.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6830, + "hostname": "us6830.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.40" + "62.182.99.120" ] }, { @@ -165836,11 +227191,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5822, - "hostname": "us5822.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6830, + "hostname": "us6830.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.40" + "62.182.99.120" ] }, { @@ -165848,12 +227207,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5823, - "hostname": "us5823.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6911, + "hostname": "us6911.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.42" + "217.138.198.203" ] }, { @@ -165861,11 +227224,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5823, - "hostname": "us5823.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6911, + "hostname": "us6911.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.42" + "217.138.198.203" ] }, { @@ -165873,12 +227240,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5824, - "hostname": "us5824.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6912, + "hostname": "us6912.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.44" + "217.138.198.211" ] }, { @@ -165886,11 +227257,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5824, - "hostname": "us5824.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6912, + "hostname": "us6912.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.44" + "217.138.198.211" ] }, { @@ -165898,12 +227273,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5825, - "hostname": "us5825.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6913, + "hostname": "us6913.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.46" + "217.138.198.219" ] }, { @@ -165911,11 +227290,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5825, - "hostname": "us5825.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6913, + "hostname": "us6913.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.46" + "217.138.198.219" ] }, { @@ -165923,12 +227306,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5826, - "hostname": "us5826.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6914, + "hostname": "us6914.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.48" + "217.138.198.227" ] }, { @@ -165936,11 +227323,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5826, - "hostname": "us5826.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6914, + "hostname": "us6914.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.48" + "217.138.198.227" ] }, { @@ -165948,12 +227339,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5827, - "hostname": "us5827.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6915, + "hostname": "us6915.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.50" + "84.17.35.246" ] }, { @@ -165961,11 +227356,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5827, - "hostname": "us5827.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6915, + "hostname": "us6915.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.50" + "84.17.35.246" ] }, { @@ -165973,12 +227372,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5828, - "hostname": "us5828.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6916, + "hostname": "us6916.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.52" + "84.17.35.226" ] }, { @@ -165986,11 +227389,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5828, - "hostname": "us5828.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6916, + "hostname": "us6916.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.52" + "84.17.35.226" ] }, { @@ -165998,12 +227405,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5829, - "hostname": "us5829.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6917, + "hostname": "us6917.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.54" + "84.17.35.231" ] }, { @@ -166011,11 +227422,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5829, - "hostname": "us5829.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6917, + "hostname": "us6917.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.54" + "84.17.35.231" ] }, { @@ -166023,12 +227438,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5830, - "hostname": "us5830.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6918, + "hostname": "us6918.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.56" + "84.17.35.236" ] }, { @@ -166036,11 +227455,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5830, - "hostname": "us5830.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6918, + "hostname": "us6918.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.56" + "84.17.35.236" ] }, { @@ -166048,12 +227471,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5831, - "hostname": "us5831.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6919, + "hostname": "us6919.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.58" + "84.17.35.241" ] }, { @@ -166061,11 +227488,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5831, - "hostname": "us5831.nordvpn.com", + "categories": [ + "P2P", + "Standard VPN servers" + ], + "number": 6919, + "hostname": "us6919.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.58" + "84.17.35.241" ] }, { @@ -166073,12 +227504,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5832, - "hostname": "us5832.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6944, + "hostname": "us6944.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.60" + "62.182.99.123" ] }, { @@ -166086,11 +227521,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5832, - "hostname": "us5832.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6944, + "hostname": "us6944.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.60" + "62.182.99.123" ] }, { @@ -166098,12 +227537,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5833, - "hostname": "us5833.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6946, + "hostname": "us6946.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.62" + "62.182.99.126" ] }, { @@ -166111,11 +227554,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5833, - "hostname": "us5833.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6946, + "hostname": "us6946.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.62" + "62.182.99.126" ] }, { @@ -166123,12 +227570,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5834, - "hostname": "us5834.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6947, + "hostname": "us6947.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.64" + "62.182.99.129" ] }, { @@ -166136,11 +227587,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5834, - "hostname": "us5834.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6947, + "hostname": "us6947.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.64" + "62.182.99.129" ] }, { @@ -166148,12 +227603,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5835, - "hostname": "us5835.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6948, + "hostname": "us6948.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.66" + "62.182.99.132" ] }, { @@ -166161,11 +227620,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5835, - "hostname": "us5835.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6948, + "hostname": "us6948.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.66" + "62.182.99.132" ] }, { @@ -166173,12 +227636,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5836, - "hostname": "us5836.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6949, + "hostname": "us6949.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.68" + "62.182.99.135" ] }, { @@ -166186,11 +227653,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5836, - "hostname": "us5836.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6949, + "hostname": "us6949.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.68" + "62.182.99.135" ] }, { @@ -166198,12 +227669,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5837, - "hostname": "us5837.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6950, + "hostname": "us6950.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.70" + "62.182.99.138" ] }, { @@ -166211,11 +227686,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5837, - "hostname": "us5837.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6950, + "hostname": "us6950.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.70" + "62.182.99.138" ] }, { @@ -166223,12 +227702,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5838, - "hostname": "us5838.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6951, + "hostname": "us6951.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.72" + "62.182.99.141" ] }, { @@ -166236,11 +227719,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5838, - "hostname": "us5838.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6951, + "hostname": "us6951.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.72" + "62.182.99.141" ] }, { @@ -166248,12 +227735,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5839, - "hostname": "us5839.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6952, + "hostname": "us6952.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.74" + "62.182.99.144" ] }, { @@ -166261,11 +227752,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5839, - "hostname": "us5839.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6952, + "hostname": "us6952.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.74" + "62.182.99.144" ] }, { @@ -166273,12 +227768,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5840, - "hostname": "us5840.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6953, + "hostname": "us6953.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.76" + "62.182.99.147" ] }, { @@ -166286,11 +227785,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5840, - "hostname": "us5840.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6953, + "hostname": "us6953.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.76" + "62.182.99.147" ] }, { @@ -166298,12 +227801,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5841, - "hostname": "us5841.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6954, + "hostname": "us6954.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.78" + "62.182.99.150" ] }, { @@ -166311,11 +227818,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5841, - "hostname": "us5841.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 6954, + "hostname": "us6954.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.78" + "62.182.99.150" ] }, { @@ -166323,12 +227834,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5842, - "hostname": "us5842.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8342, + "hostname": "us8342.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.80" + "138.199.52.2" ] }, { @@ -166336,11 +227851,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5842, - "hostname": "us5842.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8342, + "hostname": "us8342.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.80" + "138.199.52.2" ] }, { @@ -166348,12 +227867,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5843, - "hostname": "us5843.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8343, + "hostname": "us8343.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.82" + "138.199.52.5" ] }, { @@ -166361,11 +227884,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5843, - "hostname": "us5843.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8343, + "hostname": "us8343.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.82" + "138.199.52.5" ] }, { @@ -166373,12 +227900,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5844, - "hostname": "us5844.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8344, + "hostname": "us8344.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.84" + "138.199.52.8" ] }, { @@ -166386,11 +227917,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5844, - "hostname": "us5844.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8344, + "hostname": "us8344.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.84" + "138.199.52.8" ] }, { @@ -166398,12 +227933,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5845, - "hostname": "us5845.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8345, + "hostname": "us8345.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.86" + "138.199.52.14" ] }, { @@ -166411,11 +227950,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5845, - "hostname": "us5845.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8345, + "hostname": "us8345.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.86" + "138.199.52.14" ] }, { @@ -166423,12 +227966,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5846, - "hostname": "us5846.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8346, + "hostname": "us8346.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.88" + "138.199.52.17" ] }, { @@ -166436,11 +227983,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5846, - "hostname": "us5846.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8346, + "hostname": "us8346.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.88" + "138.199.52.17" ] }, { @@ -166448,12 +227999,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5847, - "hostname": "us5847.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8347, + "hostname": "us8347.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.90" + "138.199.52.20" ] }, { @@ -166461,11 +228016,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5847, - "hostname": "us5847.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8347, + "hostname": "us8347.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.90" + "138.199.52.20" ] }, { @@ -166473,12 +228032,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5946, - "hostname": "us5946.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8348, + "hostname": "us8348.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.215.147" + "138.199.52.11" ] }, { @@ -166486,11 +228049,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5946, - "hostname": "us5946.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8348, + "hostname": "us8348.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.244.215.147" + "138.199.52.11" ] }, { @@ -166498,12 +228065,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5947, - "hostname": "us5947.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8349, + "hostname": "us8349.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.215.155" + "138.199.52.26" ] }, { @@ -166511,11 +228082,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5947, - "hostname": "us5947.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8349, + "hostname": "us8349.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.244.215.155" + "138.199.52.26" ] }, { @@ -166523,12 +228098,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5953, - "hostname": "us5953.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8350, + "hostname": "us8350.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.137.123" + "138.199.52.29" ] }, { @@ -166536,11 +228115,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5953, - "hostname": "us5953.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8350, + "hostname": "us8350.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "91.132.137.123" + "138.199.52.29" ] }, { @@ -166548,12 +228131,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5955, - "hostname": "us5955.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8351, + "hostname": "us8351.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.137.99" + "138.199.52.32" ] }, { @@ -166561,11 +228148,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5955, - "hostname": "us5955.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8351, + "hostname": "us8351.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "91.132.137.99" + "138.199.52.32" ] }, { @@ -166573,12 +228164,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5956, - "hostname": "us5956.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8352, + "hostname": "us8352.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.137.75" + "138.199.52.35" ] }, { @@ -166586,11 +228181,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 5956, - "hostname": "us5956.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8352, + "hostname": "us8352.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "91.132.137.75" + "138.199.52.35" ] }, { @@ -166598,12 +228197,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6045, - "hostname": "us6045.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8353, + "hostname": "us8353.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.113.72.235" + "37.19.196.50" ] }, { @@ -166611,11 +228214,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6045, - "hostname": "us6045.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8353, + "hostname": "us8353.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "176.113.72.235" + "37.19.196.50" ] }, { @@ -166623,12 +228230,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6046, - "hostname": "us6046.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8355, + "hostname": "us8355.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.206.35" + "138.199.52.44" ] }, { @@ -166636,11 +228247,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6046, - "hostname": "us6046.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8355, + "hostname": "us8355.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.206.35" + "138.199.52.44" ] }, { @@ -166648,12 +228263,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6047, - "hostname": "us6047.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8356, + "hostname": "us8356.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.206.43" + "138.199.52.47" ] }, { @@ -166661,11 +228280,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6047, - "hostname": "us6047.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8356, + "hostname": "us8356.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.206.43" + "138.199.52.47" ] }, { @@ -166673,12 +228296,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6352, - "hostname": "us6352.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8357, + "hostname": "us8357.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.137.115" + "138.199.52.74" ] }, { @@ -166686,11 +228313,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6352, - "hostname": "us6352.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8357, + "hostname": "us8357.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "91.132.137.115" + "138.199.52.74" ] }, { @@ -166698,12 +228329,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6480, - "hostname": "us6480.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8358, + "hostname": "us8358.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.123" + "138.199.52.77" ] }, { @@ -166711,11 +228346,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6480, - "hostname": "us6480.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8358, + "hostname": "us8358.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.123" + "138.199.52.77" ] }, { @@ -166723,12 +228362,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6482, - "hostname": "us6482.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8359, + "hostname": "us8359.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.163" + "138.199.52.80" ] }, { @@ -166736,11 +228379,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6482, - "hostname": "us6482.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8359, + "hostname": "us8359.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.163" + "138.199.52.80" ] }, { @@ -166748,12 +228395,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6483, - "hostname": "us6483.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8360, + "hostname": "us8360.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.171" + "138.199.52.83" ] }, { @@ -166761,11 +228412,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6483, - "hostname": "us6483.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8360, + "hostname": "us8360.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.171" + "138.199.52.83" ] }, { @@ -166773,12 +228428,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6484, - "hostname": "us6484.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8361, + "hostname": "us8361.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.179" + "138.199.52.86" ] }, { @@ -166786,11 +228445,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6484, - "hostname": "us6484.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8361, + "hostname": "us8361.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.179" + "138.199.52.86" ] }, { @@ -166798,12 +228461,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6485, - "hostname": "us6485.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8362, + "hostname": "us8362.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.187" + "138.199.52.89" ] }, { @@ -166811,11 +228478,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6485, - "hostname": "us6485.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8362, + "hostname": "us8362.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.187" + "138.199.52.89" ] }, { @@ -166823,12 +228494,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6486, - "hostname": "us6486.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8363, + "hostname": "us8363.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.195" + "138.199.52.92" ] }, { @@ -166836,11 +228511,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6486, - "hostname": "us6486.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8363, + "hostname": "us8363.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.195" + "138.199.52.92" ] }, { @@ -166848,12 +228527,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6487, - "hostname": "us6487.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8364, + "hostname": "us8364.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.203" + "138.199.52.95" ] }, { @@ -166861,11 +228544,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6487, - "hostname": "us6487.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8364, + "hostname": "us8364.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.203" + "138.199.52.95" ] }, { @@ -166873,12 +228560,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6488, - "hostname": "us6488.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8365, + "hostname": "us8365.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.211" + "138.199.52.98" ] }, { @@ -166886,11 +228577,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6488, - "hostname": "us6488.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8365, + "hostname": "us8365.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.211" + "138.199.52.98" ] }, { @@ -166898,12 +228593,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6489, - "hostname": "us6489.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8366, + "hostname": "us8366.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "5.181.234.219" + "138.199.52.101" ] }, { @@ -166911,11 +228610,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6489, - "hostname": "us6489.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8366, + "hostname": "us8366.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "5.181.234.219" + "138.199.52.101" ] }, { @@ -166923,12 +228626,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6490, - "hostname": "us6490.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8367, + "hostname": "us8367.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.178.7" + "138.199.52.104" ] }, { @@ -166936,11 +228643,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6490, - "hostname": "us6490.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8367, + "hostname": "us8367.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.178.7" + "138.199.52.104" ] }, { @@ -166948,12 +228659,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6491, - "hostname": "us6491.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8368, + "hostname": "us8368.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.178.12" + "138.199.52.107" ] }, { @@ -166961,11 +228676,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6491, - "hostname": "us6491.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8368, + "hostname": "us8368.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.178.12" + "138.199.52.107" ] }, { @@ -166973,12 +228692,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6492, - "hostname": "us6492.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8369, + "hostname": "us8369.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.178.27" + "138.199.52.110" ] }, { @@ -166986,11 +228709,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6492, - "hostname": "us6492.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8369, + "hostname": "us8369.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.178.27" + "138.199.52.110" ] }, { @@ -166998,12 +228725,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6493, - "hostname": "us6493.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8370, + "hostname": "us8370.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.177.231" + "138.199.52.113" ] }, { @@ -167011,11 +228742,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6493, - "hostname": "us6493.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8370, + "hostname": "us8370.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.177.231" + "138.199.52.113" ] }, { @@ -167023,12 +228758,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6494, - "hostname": "us6494.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8371, + "hostname": "us8371.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.177.236" + "138.199.52.116" ] }, { @@ -167036,11 +228775,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6494, - "hostname": "us6494.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8371, + "hostname": "us8371.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.177.236" + "138.199.52.116" ] }, { @@ -167048,12 +228791,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6495, - "hostname": "us6495.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8372, + "hostname": "us8372.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.178.17" + "138.199.52.119" ] }, { @@ -167061,11 +228808,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6495, - "hostname": "us6495.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8372, + "hostname": "us8372.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.178.17" + "138.199.52.119" ] }, { @@ -167073,12 +228824,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6496, - "hostname": "us6496.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8373, + "hostname": "us8373.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.178.37" + "138.199.52.50" ] }, { @@ -167086,11 +228841,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6496, - "hostname": "us6496.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8373, + "hostname": "us8373.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.178.37" + "138.199.52.50" ] }, { @@ -167098,12 +228857,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6497, - "hostname": "us6497.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8374, + "hostname": "us8374.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.178.32" + "138.199.52.53" ] }, { @@ -167111,11 +228874,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6497, - "hostname": "us6497.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8374, + "hostname": "us8374.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.178.32" + "138.199.52.53" ] }, { @@ -167123,12 +228890,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6613, - "hostname": "us6613.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8375, + "hostname": "us8375.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.178.42" + "138.199.52.56" ] }, { @@ -167136,11 +228907,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6613, - "hostname": "us6613.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8375, + "hostname": "us8375.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.178.42" + "138.199.52.56" ] }, { @@ -167148,12 +228923,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6614, - "hostname": "us6614.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8376, + "hostname": "us8376.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "89.187.177.226" + "138.199.52.59" ] }, { @@ -167161,11 +228940,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6614, - "hostname": "us6614.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8376, + "hostname": "us8376.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "89.187.177.226" + "138.199.52.59" ] }, { @@ -167173,12 +228956,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6620, - "hostname": "us6620.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8377, + "hostname": "us8377.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.180.19" + "138.199.52.62" ] }, { @@ -167186,11 +228973,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6620, - "hostname": "us6620.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8377, + "hostname": "us8377.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "45.152.180.19" + "138.199.52.62" ] }, { @@ -167198,12 +228989,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6775, - "hostname": "us6775.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8378, + "hostname": "us8378.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.180.187" + "138.199.52.65" ] }, { @@ -167211,11 +229006,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6775, - "hostname": "us6775.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8378, + "hostname": "us8378.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "45.152.180.187" + "138.199.52.65" ] }, { @@ -167223,12 +229022,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6776, - "hostname": "us6776.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8379, + "hostname": "us8379.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.180.235" + "138.199.52.68" ] }, { @@ -167236,11 +229039,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6776, - "hostname": "us6776.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8379, + "hostname": "us8379.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "45.152.180.235" + "138.199.52.68" ] }, { @@ -167248,12 +229055,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6777, - "hostname": "us6777.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8380, + "hostname": "us8380.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.180.243" + "138.199.52.71" ] }, { @@ -167261,11 +229072,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6777, - "hostname": "us6777.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8380, + "hostname": "us8380.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "45.152.180.243" + "138.199.52.71" ] }, { @@ -167273,12 +229088,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6778, - "hostname": "us6778.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8381, + "hostname": "us8381.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.152.180.251" + "138.199.52.23" ] }, { @@ -167286,11 +229105,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6778, - "hostname": "us6778.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8381, + "hostname": "us8381.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "45.152.180.251" + "138.199.52.23" ] }, { @@ -167298,12 +229121,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6779, - "hostname": "us6779.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8501, + "hostname": "us8501.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.155" + "62.182.99.162" ] }, { @@ -167311,11 +229138,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6779, - "hostname": "us6779.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8501, + "hostname": "us8501.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.155" + "62.182.99.162" ] }, { @@ -167323,12 +229154,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6780, - "hostname": "us6780.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8641, + "hostname": "us8641.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.163" + "37.19.199.68" ] }, { @@ -167336,11 +229171,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6780, - "hostname": "us6780.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8641, + "hostname": "us8641.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.163" + "37.19.199.68" ] }, { @@ -167348,12 +229187,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6781, - "hostname": "us6781.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8642, + "hostname": "us8642.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.171" + "37.19.199.72" ] }, { @@ -167361,11 +229204,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6781, - "hostname": "us6781.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8642, + "hostname": "us8642.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.171" + "37.19.199.72" ] }, { @@ -167373,12 +229220,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6782, - "hostname": "us6782.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8643, + "hostname": "us8643.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.179" + "37.19.199.76" ] }, { @@ -167386,11 +229237,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6782, - "hostname": "us6782.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8643, + "hostname": "us8643.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.179" + "37.19.199.76" ] }, { @@ -167398,12 +229253,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6783, - "hostname": "us6783.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8644, + "hostname": "us8644.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.187" + "37.19.199.80" ] }, { @@ -167411,11 +229270,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6783, - "hostname": "us6783.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8644, + "hostname": "us8644.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.187" + "37.19.199.80" ] }, { @@ -167423,12 +229286,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6784, - "hostname": "us6784.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8645, + "hostname": "us8645.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.195" + "37.19.199.84" ] }, { @@ -167436,11 +229303,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6784, - "hostname": "us6784.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8645, + "hostname": "us8645.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.195" + "37.19.199.84" ] }, { @@ -167448,12 +229319,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6821, - "hostname": "us6821.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8646, + "hostname": "us8646.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.93" + "37.19.199.34" ] }, { @@ -167461,11 +229336,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6821, - "hostname": "us6821.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8646, + "hostname": "us8646.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.93" + "37.19.199.34" ] }, { @@ -167473,12 +229352,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6822, - "hostname": "us6822.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8647, + "hostname": "us8647.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.96" + "37.19.199.39" ] }, { @@ -167486,11 +229369,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6822, - "hostname": "us6822.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8647, + "hostname": "us8647.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.96" + "37.19.199.39" ] }, { @@ -167498,12 +229385,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6823, - "hostname": "us6823.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8648, + "hostname": "us8648.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.99" + "37.19.199.44" ] }, { @@ -167511,11 +229402,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6823, - "hostname": "us6823.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8648, + "hostname": "us8648.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.99" + "37.19.199.44" ] }, { @@ -167523,12 +229418,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6824, - "hostname": "us6824.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8649, + "hostname": "us8649.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.102" + "62.182.99.218" ] }, { @@ -167536,11 +229435,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6824, - "hostname": "us6824.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8649, + "hostname": "us8649.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.102" + "62.182.99.218" ] }, { @@ -167548,12 +229451,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6825, - "hostname": "us6825.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8650, + "hostname": "us8650.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.105" + "62.182.99.220" ] }, { @@ -167561,11 +229468,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6825, - "hostname": "us6825.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8650, + "hostname": "us8650.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.105" + "62.182.99.220" ] }, { @@ -167573,12 +229484,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6826, - "hostname": "us6826.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8651, + "hostname": "us8651.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.108" + "62.182.99.222" ] }, { @@ -167586,11 +229501,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6826, - "hostname": "us6826.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8651, + "hostname": "us8651.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.108" + "62.182.99.222" ] }, { @@ -167598,12 +229517,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6827, - "hostname": "us6827.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8652, + "hostname": "us8652.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.111" + "62.182.99.224" ] }, { @@ -167611,11 +229534,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6827, - "hostname": "us6827.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8652, + "hostname": "us8652.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.111" + "62.182.99.224" ] }, { @@ -167623,12 +229550,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6828, - "hostname": "us6828.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8653, + "hostname": "us8653.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.114" + "62.182.99.226" ] }, { @@ -167636,11 +229567,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6828, - "hostname": "us6828.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8653, + "hostname": "us8653.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.114" + "62.182.99.226" ] }, { @@ -167648,12 +229583,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6829, - "hostname": "us6829.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8654, + "hostname": "us8654.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.117" + "62.182.99.228" ] }, { @@ -167661,11 +229600,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6829, - "hostname": "us6829.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8654, + "hostname": "us8654.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.117" + "62.182.99.228" ] }, { @@ -167673,12 +229616,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6830, - "hostname": "us6830.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8655, + "hostname": "us8655.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.120" + "62.182.99.230" ] }, { @@ -167686,11 +229633,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6830, - "hostname": "us6830.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8655, + "hostname": "us8655.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.120" + "62.182.99.230" ] }, { @@ -167698,12 +229649,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6911, - "hostname": "us6911.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8656, + "hostname": "us8656.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.203" + "62.182.99.232" ] }, { @@ -167711,11 +229666,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6911, - "hostname": "us6911.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8656, + "hostname": "us8656.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.203" + "62.182.99.232" ] }, { @@ -167723,12 +229682,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6912, - "hostname": "us6912.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8657, + "hostname": "us8657.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.211" + "62.182.99.234" ] }, { @@ -167736,11 +229699,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6912, - "hostname": "us6912.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8657, + "hostname": "us8657.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.211" + "62.182.99.234" ] }, { @@ -167748,12 +229715,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6913, - "hostname": "us6913.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8658, + "hostname": "us8658.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.219" + "62.182.99.236" ] }, { @@ -167761,11 +229732,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6913, - "hostname": "us6913.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8658, + "hostname": "us8658.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.219" + "62.182.99.236" ] }, { @@ -167773,12 +229748,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6914, - "hostname": "us6914.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8659, + "hostname": "us8659.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.198.227" + "62.182.99.238" ] }, { @@ -167786,11 +229765,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6914, - "hostname": "us6914.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8659, + "hostname": "us8659.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.198.227" + "62.182.99.238" ] }, { @@ -167798,12 +229781,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6915, - "hostname": "us6915.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8660, + "hostname": "us8660.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.35.246" + "62.182.99.240" ] }, { @@ -167811,11 +229798,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6915, - "hostname": "us6915.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8660, + "hostname": "us8660.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "84.17.35.246" + "62.182.99.240" ] }, { @@ -167823,12 +229814,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6916, - "hostname": "us6916.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8661, + "hostname": "us8661.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.35.226" + "62.182.99.242" ] }, { @@ -167836,11 +229831,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6916, - "hostname": "us6916.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8661, + "hostname": "us8661.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "84.17.35.226" + "62.182.99.242" ] }, { @@ -167848,12 +229847,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6917, - "hostname": "us6917.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8662, + "hostname": "us8662.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.35.231" + "62.182.99.244" ] }, { @@ -167861,11 +229864,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6917, - "hostname": "us6917.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8662, + "hostname": "us8662.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "84.17.35.231" + "62.182.99.244" ] }, { @@ -167873,12 +229880,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6918, - "hostname": "us6918.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8663, + "hostname": "us8663.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.35.236" + "62.182.99.246" ] }, { @@ -167886,11 +229897,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6918, - "hostname": "us6918.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8663, + "hostname": "us8663.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "84.17.35.236" + "62.182.99.246" ] }, { @@ -167898,12 +229913,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6919, - "hostname": "us6919.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8664, + "hostname": "us8664.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.35.241" + "62.182.99.248" ] }, { @@ -167911,11 +229930,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6919, - "hostname": "us6919.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8664, + "hostname": "us8664.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "84.17.35.241" + "62.182.99.248" ] }, { @@ -167923,12 +229946,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6944, - "hostname": "us6944.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8665, + "hostname": "us8665.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.123" + "62.182.99.250" ] }, { @@ -167936,11 +229963,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6944, - "hostname": "us6944.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8665, + "hostname": "us8665.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.123" + "62.182.99.250" ] }, { @@ -167948,12 +229979,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6946, - "hostname": "us6946.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8666, + "hostname": "us8666.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.126" + "62.182.99.252" ] }, { @@ -167961,11 +229996,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6946, - "hostname": "us6946.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8666, + "hostname": "us8666.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.126" + "62.182.99.252" ] }, { @@ -167973,12 +230012,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6947, - "hostname": "us6947.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8667, + "hostname": "us8667.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.129" + "62.182.99.254" ] }, { @@ -167986,11 +230029,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6947, - "hostname": "us6947.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8667, + "hostname": "us8667.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.129" + "62.182.99.254" ] }, { @@ -167998,12 +230045,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6948, - "hostname": "us6948.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8668, + "hostname": "us8668.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.132" + "185.187.243.3" ] }, { @@ -168011,11 +230062,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6948, - "hostname": "us6948.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8668, + "hostname": "us8668.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.132" + "185.187.243.3" ] }, { @@ -168023,12 +230078,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6949, - "hostname": "us6949.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8669, + "hostname": "us8669.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.135" + "185.187.243.5" ] }, { @@ -168036,11 +230095,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6949, - "hostname": "us6949.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8669, + "hostname": "us8669.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.135" + "185.187.243.5" ] }, { @@ -168048,12 +230111,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6950, - "hostname": "us6950.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8670, + "hostname": "us8670.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.138" + "185.187.243.7" ] }, { @@ -168061,11 +230128,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6950, - "hostname": "us6950.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8670, + "hostname": "us8670.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.138" + "185.187.243.7" ] }, { @@ -168073,12 +230144,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6951, - "hostname": "us6951.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8671, + "hostname": "us8671.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.141" + "185.187.243.9" ] }, { @@ -168086,11 +230161,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6951, - "hostname": "us6951.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8671, + "hostname": "us8671.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.141" + "185.187.243.9" ] }, { @@ -168098,12 +230177,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6952, - "hostname": "us6952.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8672, + "hostname": "us8672.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.144" + "185.187.243.11" ] }, { @@ -168111,11 +230194,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6952, - "hostname": "us6952.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8672, + "hostname": "us8672.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.144" + "185.187.243.11" ] }, { @@ -168123,12 +230210,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6953, - "hostname": "us6953.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8673, + "hostname": "us8673.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.147" + "185.187.243.13" ] }, { @@ -168136,11 +230227,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6953, - "hostname": "us6953.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8673, + "hostname": "us8673.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.147" + "185.187.243.13" ] }, { @@ -168148,12 +230243,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6954, - "hostname": "us6954.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8674, + "hostname": "us8674.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.150" + "185.187.243.15" ] }, { @@ -168161,11 +230260,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 6954, - "hostname": "us6954.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8674, + "hostname": "us8674.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.150" + "185.187.243.15" ] }, { @@ -168173,12 +230276,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8342, - "hostname": "us8342.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8675, + "hostname": "us8675.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.2" + "185.187.243.17" ] }, { @@ -168186,11 +230293,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8342, - "hostname": "us8342.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8675, + "hostname": "us8675.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.2" + "185.187.243.17" ] }, { @@ -168198,12 +230309,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8343, - "hostname": "us8343.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8676, + "hostname": "us8676.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.5" + "185.187.243.19" ] }, { @@ -168211,11 +230326,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8343, - "hostname": "us8343.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8676, + "hostname": "us8676.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.5" + "185.187.243.19" ] }, { @@ -168223,12 +230342,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8344, - "hostname": "us8344.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8677, + "hostname": "us8677.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.8" + "185.187.243.21" ] }, { @@ -168236,11 +230359,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8344, - "hostname": "us8344.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8677, + "hostname": "us8677.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.8" + "185.187.243.21" ] }, { @@ -168248,12 +230375,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8345, - "hostname": "us8345.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8678, + "hostname": "us8678.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.14" + "185.187.243.23" ] }, { @@ -168261,11 +230392,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8345, - "hostname": "us8345.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8678, + "hostname": "us8678.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.14" + "185.187.243.23" ] }, { @@ -168273,12 +230408,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8346, - "hostname": "us8346.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8679, + "hostname": "us8679.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.17" + "185.187.243.25" ] }, { @@ -168286,11 +230425,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8346, - "hostname": "us8346.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8679, + "hostname": "us8679.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.17" + "185.187.243.25" ] }, { @@ -168298,12 +230441,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8347, - "hostname": "us8347.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8680, + "hostname": "us8680.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.20" + "185.187.243.27" ] }, { @@ -168311,11 +230458,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8347, - "hostname": "us8347.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8680, + "hostname": "us8680.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.20" + "185.187.243.27" ] }, { @@ -168323,12 +230474,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8348, - "hostname": "us8348.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8681, + "hostname": "us8681.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.11" + "185.187.243.29" ] }, { @@ -168336,11 +230491,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8348, - "hostname": "us8348.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8681, + "hostname": "us8681.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.11" + "185.187.243.29" ] }, { @@ -168348,12 +230507,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8349, - "hostname": "us8349.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8682, + "hostname": "us8682.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.26" + "185.187.243.31" ] }, { @@ -168361,11 +230524,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8349, - "hostname": "us8349.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8682, + "hostname": "us8682.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.26" + "185.187.243.31" ] }, { @@ -168373,12 +230540,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8350, - "hostname": "us8350.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8683, + "hostname": "us8683.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.29" + "185.187.243.33" ] }, { @@ -168386,11 +230557,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8350, - "hostname": "us8350.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8683, + "hostname": "us8683.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.29" + "185.187.243.33" ] }, { @@ -168398,12 +230573,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8351, - "hostname": "us8351.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8684, + "hostname": "us8684.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.32" + "185.187.243.35" ] }, { @@ -168411,11 +230590,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8351, - "hostname": "us8351.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8684, + "hostname": "us8684.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.32" + "185.187.243.35" ] }, { @@ -168423,12 +230606,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8352, - "hostname": "us8352.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8685, + "hostname": "us8685.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.35" + "185.187.243.37" ] }, { @@ -168436,11 +230623,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8352, - "hostname": "us8352.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8685, + "hostname": "us8685.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.35" + "185.187.243.37" ] }, { @@ -168448,12 +230639,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8353, - "hostname": "us8353.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8686, + "hostname": "us8686.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.196.50" + "185.187.243.39" ] }, { @@ -168461,11 +230656,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8353, - "hostname": "us8353.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8686, + "hostname": "us8686.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.196.50" + "185.187.243.39" ] }, { @@ -168473,12 +230672,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8355, - "hostname": "us8355.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8687, + "hostname": "us8687.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.44" + "185.187.243.41" ] }, { @@ -168486,11 +230689,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8355, - "hostname": "us8355.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8687, + "hostname": "us8687.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.44" + "185.187.243.41" ] }, { @@ -168498,12 +230705,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8356, - "hostname": "us8356.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8688, + "hostname": "us8688.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.47" + "185.187.243.43" ] }, { @@ -168511,11 +230722,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8356, - "hostname": "us8356.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8688, + "hostname": "us8688.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.47" + "185.187.243.43" ] }, { @@ -168523,12 +230738,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8357, - "hostname": "us8357.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8689, + "hostname": "us8689.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.74" + "185.187.243.45" ] }, { @@ -168536,11 +230755,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8357, - "hostname": "us8357.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8689, + "hostname": "us8689.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.74" + "185.187.243.45" ] }, { @@ -168548,12 +230771,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8358, - "hostname": "us8358.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8690, + "hostname": "us8690.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.77" + "185.187.243.47" ] }, { @@ -168561,11 +230788,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8358, - "hostname": "us8358.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8690, + "hostname": "us8690.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.77" + "185.187.243.47" ] }, { @@ -168573,12 +230804,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8359, - "hostname": "us8359.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8691, + "hostname": "us8691.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.80" + "185.187.243.49" ] }, { @@ -168586,11 +230821,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8359, - "hostname": "us8359.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8691, + "hostname": "us8691.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.80" + "185.187.243.49" ] }, { @@ -168598,12 +230837,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8360, - "hostname": "us8360.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8692, + "hostname": "us8692.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.83" + "185.187.243.51" ] }, { @@ -168611,11 +230854,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8360, - "hostname": "us8360.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8692, + "hostname": "us8692.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.83" + "185.187.243.51" ] }, { @@ -168623,12 +230870,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8361, - "hostname": "us8361.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8693, + "hostname": "us8693.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.86" + "185.187.243.53" ] }, { @@ -168636,11 +230887,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8361, - "hostname": "us8361.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8693, + "hostname": "us8693.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.86" + "185.187.243.53" ] }, { @@ -168648,12 +230903,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8362, - "hostname": "us8362.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8694, + "hostname": "us8694.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.89" + "185.187.243.55" ] }, { @@ -168661,11 +230920,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8362, - "hostname": "us8362.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8694, + "hostname": "us8694.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.89" + "185.187.243.55" ] }, { @@ -168673,12 +230936,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8363, - "hostname": "us8363.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8695, + "hostname": "us8695.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.92" + "185.187.243.57" ] }, { @@ -168686,11 +230953,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8363, - "hostname": "us8363.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8695, + "hostname": "us8695.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.92" + "185.187.243.57" ] }, { @@ -168698,12 +230969,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8364, - "hostname": "us8364.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8696, + "hostname": "us8696.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.95" + "185.187.243.59" ] }, { @@ -168711,11 +230986,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8364, - "hostname": "us8364.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8696, + "hostname": "us8696.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.95" + "185.187.243.59" ] }, { @@ -168723,12 +231002,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8365, - "hostname": "us8365.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8791, + "hostname": "us8791.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.98" + "37.19.196.54" ] }, { @@ -168736,11 +231019,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8365, - "hostname": "us8365.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8791, + "hostname": "us8791.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.98" + "37.19.196.54" ] }, { @@ -168748,12 +231035,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8366, - "hostname": "us8366.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9327, + "hostname": "us9327.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.101" + "217.138.208.155" ] }, { @@ -168761,11 +231052,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8366, - "hostname": "us8366.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9327, + "hostname": "us9327.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.101" + "217.138.208.155" ] }, { @@ -168773,12 +231068,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8367, - "hostname": "us8367.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9328, + "hostname": "us9328.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.104" + "217.138.208.163" ] }, { @@ -168786,11 +231085,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8367, - "hostname": "us8367.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9328, + "hostname": "us9328.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.104" + "217.138.208.163" ] }, { @@ -168798,12 +231101,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8368, - "hostname": "us8368.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9329, + "hostname": "us9329.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.107" + "217.138.208.171" ] }, { @@ -168811,11 +231118,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8368, - "hostname": "us8368.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9329, + "hostname": "us9329.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.107" + "217.138.208.171" ] }, { @@ -168823,12 +231134,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8369, - "hostname": "us8369.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9330, + "hostname": "us9330.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.110" + "217.138.208.91" ] }, { @@ -168836,11 +231151,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8369, - "hostname": "us8369.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9330, + "hostname": "us9330.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.110" + "217.138.208.91" ] }, { @@ -168848,12 +231167,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8370, - "hostname": "us8370.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9331, + "hostname": "us9331.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.113" + "217.138.208.179" ] }, { @@ -168861,11 +231184,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8370, - "hostname": "us8370.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9331, + "hostname": "us9331.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.113" + "217.138.208.179" ] }, { @@ -168873,12 +231200,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8371, - "hostname": "us8371.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9332, + "hostname": "us9332.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.116" + "217.138.208.187" ] }, { @@ -168886,11 +231217,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8371, - "hostname": "us8371.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9332, + "hostname": "us9332.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.116" + "217.138.208.187" ] }, { @@ -168898,12 +231233,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8372, - "hostname": "us8372.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9333, + "hostname": "us9333.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.119" + "185.202.220.100" ] }, { @@ -168911,11 +231250,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8372, - "hostname": "us8372.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9333, + "hostname": "us9333.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.119" + "185.202.220.100" ] }, { @@ -168923,12 +231266,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8373, - "hostname": "us8373.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9334, + "hostname": "us9334.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.50" + "185.202.220.102" ] }, { @@ -168936,11 +231283,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8373, - "hostname": "us8373.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9334, + "hostname": "us9334.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.50" + "185.202.220.102" ] }, { @@ -168948,12 +231299,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8374, - "hostname": "us8374.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9335, + "hostname": "us9335.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.53" + "185.202.220.104" ] }, { @@ -168961,11 +231316,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8374, - "hostname": "us8374.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9335, + "hostname": "us9335.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.53" + "185.202.220.104" ] }, { @@ -168973,12 +231332,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8375, - "hostname": "us8375.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9336, + "hostname": "us9336.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.56" + "185.202.220.106" ] }, { @@ -168986,11 +231349,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8375, - "hostname": "us8375.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9336, + "hostname": "us9336.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.56" + "185.202.220.106" ] }, { @@ -168998,12 +231365,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8376, - "hostname": "us8376.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9337, + "hostname": "us9337.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.59" + "185.202.220.108" ] }, { @@ -169011,11 +231382,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8376, - "hostname": "us8376.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9337, + "hostname": "us9337.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.59" + "185.202.220.108" ] }, { @@ -169023,12 +231398,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8377, - "hostname": "us8377.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9338, + "hostname": "us9338.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.62" + "185.202.220.110" ] }, { @@ -169036,11 +231415,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8377, - "hostname": "us8377.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9338, + "hostname": "us9338.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.62" + "185.202.220.110" ] }, { @@ -169048,12 +231431,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8378, - "hostname": "us8378.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9339, + "hostname": "us9339.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.65" + "185.202.220.112" ] }, { @@ -169061,11 +231448,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8378, - "hostname": "us8378.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9339, + "hostname": "us9339.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.65" + "185.202.220.112" ] }, { @@ -169073,12 +231464,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8379, - "hostname": "us8379.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9340, + "hostname": "us9340.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.68" + "185.202.220.114" ] }, { @@ -169086,11 +231481,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8379, - "hostname": "us8379.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9340, + "hostname": "us9340.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.68" + "185.202.220.114" ] }, { @@ -169098,12 +231497,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8380, - "hostname": "us8380.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9341, + "hostname": "us9341.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.71" + "185.202.220.116" ] }, { @@ -169111,11 +231514,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8380, - "hostname": "us8380.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9341, + "hostname": "us9341.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.71" + "185.202.220.116" ] }, { @@ -169123,12 +231530,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8381, - "hostname": "us8381.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9342, + "hostname": "us9342.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "138.199.52.23" + "185.202.220.118" ] }, { @@ -169136,11 +231547,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8381, - "hostname": "us8381.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9342, + "hostname": "us9342.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "138.199.52.23" + "185.202.220.118" ] }, { @@ -169148,12 +231563,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8501, - "hostname": "us8501.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9343, + "hostname": "us9343.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.162" + "185.202.220.120" ] }, { @@ -169161,11 +231580,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8501, - "hostname": "us8501.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9343, + "hostname": "us9343.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.162" + "185.202.220.120" ] }, { @@ -169173,12 +231596,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8509, - "hostname": "us8509.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9344, + "hostname": "us9344.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.33.107" + "185.202.220.122" ] }, { @@ -169186,11 +231613,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8509, - "hostname": "us8509.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9344, + "hostname": "us9344.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "212.102.33.107" + "185.202.220.122" ] }, { @@ -169198,12 +231629,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8641, - "hostname": "us8641.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9345, + "hostname": "us9345.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.199.68" + "185.202.220.124" ] }, { @@ -169211,11 +231646,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8641, - "hostname": "us8641.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9345, + "hostname": "us9345.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.199.68" + "185.202.220.124" ] }, { @@ -169223,12 +231662,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8642, - "hostname": "us8642.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9346, + "hostname": "us9346.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.199.72" + "185.202.220.126" ] }, { @@ -169236,11 +231679,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8642, - "hostname": "us8642.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9346, + "hostname": "us9346.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.199.72" + "185.202.220.126" ] }, { @@ -169248,12 +231695,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8643, - "hostname": "us8643.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9347, + "hostname": "us9347.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.199.76" + "185.202.220.128" ] }, { @@ -169261,11 +231712,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8643, - "hostname": "us8643.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9347, + "hostname": "us9347.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.199.76" + "185.202.220.128" ] }, { @@ -169273,12 +231728,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8644, - "hostname": "us8644.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9348, + "hostname": "us9348.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.199.80" + "185.202.220.130" ] }, { @@ -169286,11 +231745,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8644, - "hostname": "us8644.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9348, + "hostname": "us9348.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.199.80" + "185.202.220.130" ] }, { @@ -169298,12 +231761,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8645, - "hostname": "us8645.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9349, + "hostname": "us9349.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.199.84" + "185.202.220.132" ] }, { @@ -169311,11 +231778,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8645, - "hostname": "us8645.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9349, + "hostname": "us9349.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.199.84" + "185.202.220.132" ] }, { @@ -169323,12 +231794,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8646, - "hostname": "us8646.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9350, + "hostname": "us9350.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.199.34" + "185.202.220.134" ] }, { @@ -169336,11 +231811,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8646, - "hostname": "us8646.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9350, + "hostname": "us9350.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.199.34" + "185.202.220.134" ] }, { @@ -169348,12 +231827,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8647, - "hostname": "us8647.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9351, + "hostname": "us9351.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.199.39" + "185.202.220.136" ] }, { @@ -169361,11 +231844,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8647, - "hostname": "us8647.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9351, + "hostname": "us9351.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.199.39" + "185.202.220.136" ] }, { @@ -169373,12 +231860,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8648, - "hostname": "us8648.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9352, + "hostname": "us9352.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.199.44" + "185.202.220.138" ] }, { @@ -169386,11 +231877,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8648, - "hostname": "us8648.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9352, + "hostname": "us9352.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.199.44" + "185.202.220.138" ] }, { @@ -169398,12 +231893,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8649, - "hostname": "us8649.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9353, + "hostname": "us9353.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.218" + "185.202.220.140" ] }, { @@ -169411,11 +231910,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8649, - "hostname": "us8649.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9353, + "hostname": "us9353.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.218" + "185.202.220.140" ] }, { @@ -169423,12 +231926,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8650, - "hostname": "us8650.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9354, + "hostname": "us9354.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.220" + "185.202.220.142" ] }, { @@ -169436,11 +231943,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8650, - "hostname": "us8650.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9354, + "hostname": "us9354.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.220" + "185.202.220.142" ] }, { @@ -169448,12 +231959,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8651, - "hostname": "us8651.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9355, + "hostname": "us9355.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.222" + "185.202.220.144" ] }, { @@ -169461,11 +231976,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8651, - "hostname": "us8651.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9355, + "hostname": "us9355.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.222" + "185.202.220.144" ] }, { @@ -169473,12 +231992,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8652, - "hostname": "us8652.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9356, + "hostname": "us9356.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.224" + "185.202.220.146" ] }, { @@ -169486,11 +232009,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8652, - "hostname": "us8652.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9356, + "hostname": "us9356.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.224" + "185.202.220.146" ] }, { @@ -169498,12 +232025,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8653, - "hostname": "us8653.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9357, + "hostname": "us9357.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.226" + "185.202.220.148" ] }, { @@ -169511,11 +232042,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8653, - "hostname": "us8653.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9357, + "hostname": "us9357.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.226" + "185.202.220.148" ] }, { @@ -169523,12 +232058,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8654, - "hostname": "us8654.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9358, + "hostname": "us9358.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.228" + "185.202.220.150" ] }, { @@ -169536,11 +232075,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8654, - "hostname": "us8654.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9358, + "hostname": "us9358.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.228" + "185.202.220.150" ] }, { @@ -169548,12 +232091,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8655, - "hostname": "us8655.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9359, + "hostname": "us9359.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.230" + "185.202.220.152" ] }, { @@ -169561,11 +232108,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8655, - "hostname": "us8655.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9359, + "hostname": "us9359.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.230" + "185.202.220.152" ] }, { @@ -169573,12 +232124,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8656, - "hostname": "us8656.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9360, + "hostname": "us9360.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.232" + "185.202.220.154" ] }, { @@ -169586,11 +232141,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8656, - "hostname": "us8656.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9360, + "hostname": "us9360.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.232" + "185.202.220.154" ] }, { @@ -169598,12 +232157,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8657, - "hostname": "us8657.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9361, + "hostname": "us9361.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.234" + "185.202.220.156" ] }, { @@ -169611,11 +232174,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8657, - "hostname": "us8657.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9361, + "hostname": "us9361.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.234" + "185.202.220.156" ] }, { @@ -169623,12 +232190,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8658, - "hostname": "us8658.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9362, + "hostname": "us9362.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.236" + "185.202.220.158" ] }, { @@ -169636,11 +232207,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8658, - "hostname": "us8658.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9362, + "hostname": "us9362.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.236" + "185.202.220.158" ] }, { @@ -169648,12 +232223,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8659, - "hostname": "us8659.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9363, + "hostname": "us9363.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.238" + "185.202.220.160" ] }, { @@ -169661,11 +232240,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8659, - "hostname": "us8659.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9363, + "hostname": "us9363.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.238" + "185.202.220.160" ] }, { @@ -169673,12 +232256,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8660, - "hostname": "us8660.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9364, + "hostname": "us9364.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.240" + "185.202.220.162" ] }, { @@ -169686,11 +232273,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8660, - "hostname": "us8660.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9364, + "hostname": "us9364.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.240" + "185.202.220.162" ] }, { @@ -169698,12 +232289,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8661, - "hostname": "us8661.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9451, + "hostname": "us9451.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.242" + "185.244.215.211" ] }, { @@ -169711,11 +232306,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8661, - "hostname": "us8661.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9451, + "hostname": "us9451.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.242" + "185.244.215.211" ] }, { @@ -169723,12 +232322,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8662, - "hostname": "us8662.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9452, + "hostname": "us9452.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.244" + "185.244.215.219" ] }, { @@ -169736,11 +232339,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8662, - "hostname": "us8662.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9452, + "hostname": "us9452.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.244" + "185.244.215.219" ] }, { @@ -169748,12 +232355,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8663, - "hostname": "us8663.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9453, + "hostname": "us9453.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.246" + "176.113.72.67" ] }, { @@ -169761,11 +232372,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8663, - "hostname": "us8663.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9453, + "hostname": "us9453.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.246" + "176.113.72.67" ] }, { @@ -169773,12 +232388,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8664, - "hostname": "us8664.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9454, + "hostname": "us9454.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.248" + "176.113.72.75" ] }, { @@ -169786,11 +232405,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8664, - "hostname": "us8664.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9454, + "hostname": "us9454.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.248" + "176.113.72.75" ] }, { @@ -169798,12 +232421,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8665, - "hostname": "us8665.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9455, + "hostname": "us9455.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.250" + "31.13.189.123" ] }, { @@ -169811,11 +232438,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8665, - "hostname": "us8665.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9455, + "hostname": "us9455.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.250" + "31.13.189.123" ] }, { @@ -169823,12 +232454,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8666, - "hostname": "us8666.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9456, + "hostname": "us9456.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.252" + "37.120.138.171" ] }, { @@ -169836,11 +232471,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8666, - "hostname": "us8666.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9456, + "hostname": "us9456.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.252" + "37.120.138.171" ] }, { @@ -169848,12 +232487,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8667, - "hostname": "us8667.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9457, + "hostname": "us9457.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "62.182.99.254" + "185.244.215.163" ] }, { @@ -169861,11 +232504,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8667, - "hostname": "us8667.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9457, + "hostname": "us9457.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "62.182.99.254" + "185.244.215.163" ] }, { @@ -169873,12 +232520,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8668, - "hostname": "us8668.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9458, + "hostname": "us9458.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.3" + "91.132.137.107" ] }, { @@ -169886,11 +232537,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8668, - "hostname": "us8668.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9458, + "hostname": "us9458.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.3" + "91.132.137.107" ] }, { @@ -169898,12 +232553,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8669, - "hostname": "us8669.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9463, + "hostname": "us9463.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.5" + "91.132.137.67" ] }, { @@ -169911,11 +232570,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8669, - "hostname": "us8669.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9463, + "hostname": "us9463.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.5" + "91.132.137.67" ] }, { @@ -169923,12 +232586,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8670, - "hostname": "us8670.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9782, + "hostname": "us9782.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.7" + "191.101.160.4" ] }, { @@ -169936,11 +232603,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8670, - "hostname": "us8670.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9782, + "hostname": "us9782.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.7" + "191.101.160.4" ] }, { @@ -169948,12 +232619,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8671, - "hostname": "us8671.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9783, + "hostname": "us9783.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.9" + "191.101.160.20" ] }, { @@ -169961,11 +232636,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8671, - "hostname": "us8671.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9783, + "hostname": "us9783.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.9" + "191.101.160.20" ] }, { @@ -169973,12 +232652,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8672, - "hostname": "us8672.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9784, + "hostname": "us9784.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.11" + "191.101.160.36" ] }, { @@ -169986,11 +232669,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8672, - "hostname": "us8672.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9784, + "hostname": "us9784.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.11" + "191.101.160.36" ] }, { @@ -169998,12 +232685,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8673, - "hostname": "us8673.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9785, + "hostname": "us9785.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.13" + "191.101.160.52" ] }, { @@ -170011,11 +232702,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8673, - "hostname": "us8673.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9785, + "hostname": "us9785.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.13" + "191.101.160.52" ] }, { @@ -170023,12 +232718,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8674, - "hostname": "us8674.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9786, + "hostname": "us9786.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.15" + "191.101.160.68" ] }, { @@ -170036,11 +232735,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8674, - "hostname": "us8674.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9786, + "hostname": "us9786.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.15" + "191.101.160.68" ] }, { @@ -170048,12 +232751,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8675, - "hostname": "us8675.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9787, + "hostname": "us9787.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.17" + "191.101.160.84" ] }, { @@ -170061,11 +232768,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8675, - "hostname": "us8675.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9787, + "hostname": "us9787.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.17" + "191.101.160.84" ] }, { @@ -170073,12 +232784,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8676, - "hostname": "us8676.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9788, + "hostname": "us9788.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.19" + "191.101.160.100" ] }, { @@ -170086,11 +232801,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8676, - "hostname": "us8676.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9788, + "hostname": "us9788.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.19" + "191.101.160.100" ] }, { @@ -170098,12 +232817,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8677, - "hostname": "us8677.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9789, + "hostname": "us9789.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.21" + "191.101.160.116" ] }, { @@ -170111,11 +232834,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8677, - "hostname": "us8677.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9789, + "hostname": "us9789.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.21" + "191.101.160.116" ] }, { @@ -170123,12 +232850,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8678, - "hostname": "us8678.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9790, + "hostname": "us9790.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.23" + "191.101.160.132" ] }, { @@ -170136,11 +232867,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8678, - "hostname": "us8678.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9790, + "hostname": "us9790.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.23" + "191.101.160.132" ] }, { @@ -170148,12 +232883,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8679, - "hostname": "us8679.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9791, + "hostname": "us9791.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.25" + "191.101.160.148" ] }, { @@ -170161,11 +232900,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8679, - "hostname": "us8679.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9791, + "hostname": "us9791.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.25" + "191.101.160.148" ] }, { @@ -170173,12 +232916,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8680, - "hostname": "us8680.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9792, + "hostname": "us9792.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.27" + "191.101.160.164" ] }, { @@ -170186,11 +232933,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8680, - "hostname": "us8680.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9792, + "hostname": "us9792.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.27" + "191.101.160.164" ] }, { @@ -170198,12 +232949,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8681, - "hostname": "us8681.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9793, + "hostname": "us9793.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.29" + "191.101.160.180" ] }, { @@ -170211,11 +232966,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8681, - "hostname": "us8681.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9793, + "hostname": "us9793.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.29" + "191.101.160.180" ] }, { @@ -170223,12 +232982,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8682, - "hostname": "us8682.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9794, + "hostname": "us9794.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.31" + "191.101.160.195" ] }, { @@ -170236,11 +232999,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8682, - "hostname": "us8682.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9794, + "hostname": "us9794.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.31" + "191.101.160.195" ] }, { @@ -170248,12 +233015,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8683, - "hostname": "us8683.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9795, + "hostname": "us9795.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.33" + "191.101.160.210" ] }, { @@ -170261,11 +233032,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8683, - "hostname": "us8683.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9795, + "hostname": "us9795.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.33" + "191.101.160.210" ] }, { @@ -170273,12 +233048,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8684, - "hostname": "us8684.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9796, + "hostname": "us9796.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.35" + "191.101.160.225" ] }, { @@ -170286,11 +233065,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8684, - "hostname": "us8684.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9796, + "hostname": "us9796.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.35" + "191.101.160.225" ] }, { @@ -170298,12 +233081,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8685, - "hostname": "us8685.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9797, + "hostname": "us9797.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.37" + "191.101.160.240" ] }, { @@ -170311,11 +233098,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8685, - "hostname": "us8685.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9797, + "hostname": "us9797.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.37" + "191.101.160.240" ] }, { @@ -170323,12 +233114,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8686, - "hostname": "us8686.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9798, + "hostname": "us9798.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.39" + "154.16.157.4" ] }, { @@ -170336,11 +233131,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8686, - "hostname": "us8686.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9798, + "hostname": "us9798.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.39" + "154.16.157.4" ] }, { @@ -170348,12 +233147,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8687, - "hostname": "us8687.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9799, + "hostname": "us9799.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.41" + "154.16.157.20" ] }, { @@ -170361,11 +233164,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8687, - "hostname": "us8687.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9799, + "hostname": "us9799.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.41" + "154.16.157.20" ] }, { @@ -170373,12 +233180,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8688, - "hostname": "us8688.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9800, + "hostname": "us9800.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.43" + "154.16.157.36" ] }, { @@ -170386,11 +233197,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8688, - "hostname": "us8688.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9800, + "hostname": "us9800.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.43" + "154.16.157.36" ] }, { @@ -170398,12 +233213,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8689, - "hostname": "us8689.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9801, + "hostname": "us9801.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.45" + "154.16.157.52" ] }, { @@ -170411,11 +233230,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8689, - "hostname": "us8689.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9801, + "hostname": "us9801.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.45" + "154.16.157.52" ] }, { @@ -170423,12 +233246,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8690, - "hostname": "us8690.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9802, + "hostname": "us9802.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.47" + "154.16.157.68" ] }, { @@ -170436,11 +233263,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8690, - "hostname": "us8690.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9802, + "hostname": "us9802.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.47" + "154.16.157.68" ] }, { @@ -170448,12 +233279,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8691, - "hostname": "us8691.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9803, + "hostname": "us9803.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.49" + "154.16.157.84" ] }, { @@ -170461,11 +233296,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8691, - "hostname": "us8691.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9803, + "hostname": "us9803.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.49" + "154.16.157.84" ] }, { @@ -170473,12 +233312,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8692, - "hostname": "us8692.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9804, + "hostname": "us9804.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.51" + "154.16.157.100" ] }, { @@ -170486,11 +233329,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8692, - "hostname": "us8692.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9804, + "hostname": "us9804.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.51" + "154.16.157.100" ] }, { @@ -170498,12 +233345,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8693, - "hostname": "us8693.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9805, + "hostname": "us9805.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.53" + "154.16.157.116" ] }, { @@ -170511,11 +233362,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8693, - "hostname": "us8693.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9805, + "hostname": "us9805.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.53" + "154.16.157.116" ] }, { @@ -170523,12 +233378,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8694, - "hostname": "us8694.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9806, + "hostname": "us9806.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.55" + "154.16.157.132" ] }, { @@ -170536,11 +233395,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8694, - "hostname": "us8694.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9806, + "hostname": "us9806.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.55" + "154.16.157.132" ] }, { @@ -170548,12 +233411,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8695, - "hostname": "us8695.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9807, + "hostname": "us9807.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.57" + "154.16.157.148" ] }, { @@ -170561,11 +233428,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8695, - "hostname": "us8695.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9807, + "hostname": "us9807.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.57" + "154.16.157.148" ] }, { @@ -170573,12 +233444,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8696, - "hostname": "us8696.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9808, + "hostname": "us9808.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.243.59" + "154.16.157.164" ] }, { @@ -170586,11 +233461,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8696, - "hostname": "us8696.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9808, + "hostname": "us9808.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.187.243.59" + "154.16.157.164" ] }, { @@ -170598,12 +233477,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8791, - "hostname": "us8791.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9809, + "hostname": "us9809.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.19.196.54" + "154.16.157.180" ] }, { @@ -170611,11 +233494,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 8791, - "hostname": "us8791.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9809, + "hostname": "us9809.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "37.19.196.54" + "154.16.157.180" ] }, { @@ -170623,12 +233510,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9327, - "hostname": "us9327.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9810, + "hostname": "us9810.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.155" + "154.16.157.195" ] }, { @@ -170636,11 +233527,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9327, - "hostname": "us9327.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9810, + "hostname": "us9810.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.155" + "154.16.157.195" ] }, { @@ -170648,12 +233543,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9328, - "hostname": "us9328.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9811, + "hostname": "us9811.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.163" + "154.16.157.210" ] }, { @@ -170661,11 +233560,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9328, - "hostname": "us9328.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9811, + "hostname": "us9811.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.163" + "154.16.157.210" ] }, { @@ -170673,12 +233576,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9329, - "hostname": "us9329.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9812, + "hostname": "us9812.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.171" + "154.16.157.225" ] }, { @@ -170686,11 +233593,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9329, - "hostname": "us9329.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9812, + "hostname": "us9812.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.171" + "154.16.157.225" ] }, { @@ -170698,12 +233609,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9330, - "hostname": "us9330.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9813, + "hostname": "us9813.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.91" + "154.16.157.240" ] }, { @@ -170711,11 +233626,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9330, - "hostname": "us9330.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9813, + "hostname": "us9813.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.91" + "154.16.157.240" ] }, { @@ -170723,12 +233642,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9331, - "hostname": "us9331.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9873, + "hostname": "us9873.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.179" + "45.140.184.1" ] }, { @@ -170736,11 +233659,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9331, - "hostname": "us9331.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9873, + "hostname": "us9873.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.179" + "45.140.184.1" ] }, { @@ -170748,12 +233675,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9332, - "hostname": "us9332.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9874, + "hostname": "us9874.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "217.138.208.187" + "45.140.184.12" ] }, { @@ -170761,11 +233692,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9332, - "hostname": "us9332.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9874, + "hostname": "us9874.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "217.138.208.187" + "45.140.184.12" ] }, { @@ -170773,12 +233708,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9333, - "hostname": "us9333.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9875, + "hostname": "us9875.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.100" + "45.140.184.23" ] }, { @@ -170786,11 +233725,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9333, - "hostname": "us9333.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9875, + "hostname": "us9875.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.100" + "45.140.184.23" ] }, { @@ -170798,12 +233741,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9334, - "hostname": "us9334.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9876, + "hostname": "us9876.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.102" + "45.140.184.34" ] }, { @@ -170811,11 +233758,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9334, - "hostname": "us9334.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9876, + "hostname": "us9876.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.102" + "45.140.184.34" ] }, { @@ -170823,12 +233774,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9335, - "hostname": "us9335.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9877, + "hostname": "us9877.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.104" + "45.140.184.45" ] }, { @@ -170836,11 +233791,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9335, - "hostname": "us9335.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9877, + "hostname": "us9877.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.104" + "45.140.184.45" ] }, { @@ -170848,12 +233807,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9336, - "hostname": "us9336.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9878, + "hostname": "us9878.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.106" + "45.140.184.56" ] }, { @@ -170861,11 +233824,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9336, - "hostname": "us9336.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9878, + "hostname": "us9878.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.106" + "45.140.184.56" ] }, { @@ -170873,12 +233840,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9337, - "hostname": "us9337.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9879, + "hostname": "us9879.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.108" + "45.140.184.67" ] }, { @@ -170886,11 +233857,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9337, - "hostname": "us9337.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9879, + "hostname": "us9879.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.108" + "45.140.184.67" ] }, { @@ -170898,12 +233873,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9338, - "hostname": "us9338.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9880, + "hostname": "us9880.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.110" + "45.140.184.78" ] }, { @@ -170911,11 +233890,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9338, - "hostname": "us9338.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9880, + "hostname": "us9880.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.110" + "45.140.184.78" ] }, { @@ -170923,12 +233906,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9339, - "hostname": "us9339.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9881, + "hostname": "us9881.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.112" + "45.140.184.89" ] }, { @@ -170936,11 +233923,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9339, - "hostname": "us9339.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9881, + "hostname": "us9881.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.112" + "45.140.184.89" ] }, { @@ -170948,12 +233939,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9340, - "hostname": "us9340.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9882, + "hostname": "us9882.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.114" + "45.140.184.100" ] }, { @@ -170961,11 +233956,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9340, - "hostname": "us9340.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9882, + "hostname": "us9882.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.114" + "45.140.184.100" ] }, { @@ -170973,12 +233972,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9341, - "hostname": "us9341.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9883, + "hostname": "us9883.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.116" + "45.140.184.111" ] }, { @@ -170986,11 +233989,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9341, - "hostname": "us9341.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9883, + "hostname": "us9883.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.116" + "45.140.184.111" ] }, { @@ -170998,12 +234005,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9342, - "hostname": "us9342.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9884, + "hostname": "us9884.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.118" + "45.140.184.122" ] }, { @@ -171011,11 +234022,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9342, - "hostname": "us9342.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9884, + "hostname": "us9884.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.118" + "45.140.184.122" ] }, { @@ -171023,12 +234038,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9343, - "hostname": "us9343.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9912, + "hostname": "us9912.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.120" + "185.216.201.2" ] }, { @@ -171036,11 +234055,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9343, - "hostname": "us9343.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9912, + "hostname": "us9912.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.120" + "185.216.201.2" ] }, { @@ -171048,12 +234071,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9344, - "hostname": "us9344.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9913, + "hostname": "us9913.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.122" + "185.216.201.13" ] }, { @@ -171061,11 +234088,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9344, - "hostname": "us9344.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9913, + "hostname": "us9913.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.122" + "185.216.201.13" ] }, { @@ -171073,12 +234104,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9345, - "hostname": "us9345.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9914, + "hostname": "us9914.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.124" + "185.216.201.24" ] }, { @@ -171086,11 +234121,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9345, - "hostname": "us9345.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9914, + "hostname": "us9914.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.124" + "185.216.201.24" ] }, { @@ -171098,12 +234137,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9346, - "hostname": "us9346.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9915, + "hostname": "us9915.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.126" + "185.216.201.35" ] }, { @@ -171111,11 +234154,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9346, - "hostname": "us9346.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9915, + "hostname": "us9915.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.126" + "185.216.201.35" ] }, { @@ -171123,12 +234170,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9347, - "hostname": "us9347.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9916, + "hostname": "us9916.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.128" + "185.216.201.46" ] }, { @@ -171136,11 +234187,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9347, - "hostname": "us9347.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9916, + "hostname": "us9916.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.128" + "185.216.201.46" ] }, { @@ -171148,12 +234203,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9348, - "hostname": "us9348.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9917, + "hostname": "us9917.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.130" + "185.216.201.57" ] }, { @@ -171161,11 +234220,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9348, - "hostname": "us9348.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9917, + "hostname": "us9917.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.130" + "185.216.201.57" ] }, { @@ -171173,12 +234236,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9349, - "hostname": "us9349.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9918, + "hostname": "us9918.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.132" + "185.216.201.68" ] }, { @@ -171186,11 +234253,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9349, - "hostname": "us9349.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9918, + "hostname": "us9918.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.132" + "185.216.201.68" ] }, { @@ -171198,12 +234269,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9350, - "hostname": "us9350.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9919, + "hostname": "us9919.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.134" + "185.216.201.79" ] }, { @@ -171211,11 +234286,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9350, - "hostname": "us9350.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9919, + "hostname": "us9919.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.134" + "185.216.201.79" ] }, { @@ -171223,12 +234302,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9351, - "hostname": "us9351.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9920, + "hostname": "us9920.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.136" + "185.216.201.90" ] }, { @@ -171236,11 +234319,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9351, - "hostname": "us9351.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9920, + "hostname": "us9920.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "185.202.220.136" + "185.216.201.90" ] }, { @@ -171248,24 +234335,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9352, - "hostname": "us9352.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10157, + "hostname": "us10157.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.138" + "156.146.36.49" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9352, - "hostname": "us9352.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10158, + "hostname": "us10158.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.138" + "156.146.36.51" ] }, { @@ -171273,24 +234367,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9353, - "hostname": "us9353.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10165, + "hostname": "us10165.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.140" + "156.146.36.54" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9353, - "hostname": "us9353.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10166, + "hostname": "us10166.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.140" + "156.146.36.56" ] }, { @@ -171298,24 +234399,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9354, - "hostname": "us9354.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10181, + "hostname": "us10181.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.142" + "138.199.10.129" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9354, - "hostname": "us9354.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10182, + "hostname": "us10182.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.142" + "138.199.10.131" ] }, { @@ -171323,24 +234431,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9355, - "hostname": "us9355.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10183, + "hostname": "us10183.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.144" + "138.199.10.141" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9355, - "hostname": "us9355.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10184, + "hostname": "us10184.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.144" + "138.199.10.143" ] }, { @@ -171348,24 +234463,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9356, - "hostname": "us9356.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10185, + "hostname": "us10185.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.146" + "138.199.10.133" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9356, - "hostname": "us9356.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10186, + "hostname": "us10186.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.146" + "138.199.10.135" ] }, { @@ -171373,24 +234495,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9357, - "hostname": "us9357.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10187, + "hostname": "us10187.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.148" + "138.199.10.137" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9357, - "hostname": "us9357.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10188, + "hostname": "us10188.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.148" + "138.199.10.139" ] }, { @@ -171398,24 +234527,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9358, - "hostname": "us9358.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10189, + "hostname": "us10189.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.150" + "154.47.26.194" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9358, - "hostname": "us9358.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10190, + "hostname": "us10190.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.150" + "154.47.26.196" ] }, { @@ -171423,24 +234559,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9359, - "hostname": "us9359.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10191, + "hostname": "us10191.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.152" + "154.47.26.199" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9359, - "hostname": "us9359.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10192, + "hostname": "us10192.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.152" + "154.47.26.201" ] }, { @@ -171448,24 +234591,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9360, - "hostname": "us9360.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10195, + "hostname": "us10195.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.154" + "138.199.10.151" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9360, - "hostname": "us9360.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10196, + "hostname": "us10196.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.154" + "138.199.10.153" ] }, { @@ -171473,24 +234623,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9361, - "hostname": "us9361.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10197, + "hostname": "us10197.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.156" + "154.47.26.204" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9361, - "hostname": "us9361.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10198, + "hostname": "us10198.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.156" + "154.47.26.206" ] }, { @@ -171498,24 +234655,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9362, - "hostname": "us9362.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10258, + "hostname": "us10258.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.158" + "154.47.26.215" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9362, - "hostname": "us9362.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10259, + "hostname": "us10259.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.158" + "154.47.26.217" ] }, { @@ -171523,24 +234687,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9363, - "hostname": "us9363.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10264, + "hostname": "us10264.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.160" + "149.102.252.98" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9363, - "hostname": "us9363.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10265, + "hostname": "us10265.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.160" + "149.102.252.100" ] }, { @@ -171548,24 +234719,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9364, - "hostname": "us9364.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10266, + "hostname": "us10266.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.202.220.162" + "149.102.252.103" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9364, - "hostname": "us9364.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10267, + "hostname": "us10267.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.202.220.162" + "149.102.252.105" ] }, { @@ -171573,24 +234751,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9451, - "hostname": "us9451.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10273, + "hostname": "us10273.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.215.211" + "149.102.252.116" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9451, - "hostname": "us9451.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10274, + "hostname": "us10274.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.244.215.211" + "149.102.252.118" ] }, { @@ -171598,24 +234783,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9452, - "hostname": "us9452.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10281, + "hostname": "us10281.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.215.219" + "89.187.177.42" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9452, - "hostname": "us9452.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10282, + "hostname": "us10282.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.244.215.219" + "138.199.10.155" ] }, { @@ -171623,24 +234815,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9453, - "hostname": "us9453.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10283, + "hostname": "us10283.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.113.72.67" + "149.102.252.120" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9453, - "hostname": "us9453.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10284, + "hostname": "us10284.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "176.113.72.67" + "149.102.252.122" ] }, { @@ -171648,24 +234847,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9454, - "hostname": "us9454.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10285, + "hostname": "us10285.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "176.113.72.75" + "149.102.252.66" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9454, - "hostname": "us9454.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10286, + "hostname": "us10286.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "176.113.72.75" + "149.102.252.68" ] }, { @@ -171673,24 +234879,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9455, - "hostname": "us9455.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10313, + "hostname": "us10313.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "31.13.189.123" + "149.102.252.82" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9455, - "hostname": "us9455.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10314, + "hostname": "us10314.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "31.13.189.123" + "149.102.252.84" ] }, { @@ -171698,24 +234911,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9456, - "hostname": "us9456.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10315, + "hostname": "us10315.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "37.120.138.171" + "149.102.252.77" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9456, - "hostname": "us9456.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10316, + "hostname": "us10316.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "37.120.138.171" + "149.102.252.79" ] }, { @@ -171723,24 +234943,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9457, - "hostname": "us9457.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10351, + "hostname": "us10351.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.244.215.163" + "156.146.37.204" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9457, - "hostname": "us9457.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10352, + "hostname": "us10352.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.244.215.163" + "156.146.37.206" ] }, { @@ -171748,24 +234975,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9458, - "hostname": "us9458.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10353, + "hostname": "us10353.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.137.107" + "156.146.37.199" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9458, - "hostname": "us9458.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10354, + "hostname": "us10354.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "91.132.137.107" + "156.146.37.201" ] }, { @@ -171773,12 +235007,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9463, - "hostname": "us9463.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10357, + "hostname": "us10357.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "91.132.137.67" + "185.184.228.141" ] }, { @@ -171786,11 +235024,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9463, - "hostname": "us9463.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10357, + "hostname": "us10357.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "91.132.137.67" + "185.184.228.141" ] }, { @@ -171798,12 +235040,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9782, - "hostname": "us9782.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10358, + "hostname": "us10358.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.4" + "185.184.228.161" ] }, { @@ -171811,11 +235057,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9782, - "hostname": "us9782.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10358, + "hostname": "us10358.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.4" + "185.184.228.161" ] }, { @@ -171823,12 +235073,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9783, - "hostname": "us9783.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10359, + "hostname": "us10359.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.20" + "185.184.228.181" ] }, { @@ -171836,11 +235090,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9783, - "hostname": "us9783.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10359, + "hostname": "us10359.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.20" + "185.184.228.181" ] }, { @@ -171848,12 +235106,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9784, - "hostname": "us9784.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10360, + "hostname": "us10360.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.36" + "185.184.228.201" ] }, { @@ -171861,11 +235123,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9784, - "hostname": "us9784.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10360, + "hostname": "us10360.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.36" + "185.184.228.201" ] }, { @@ -171873,12 +235139,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9785, - "hostname": "us9785.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10361, + "hostname": "us10361.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.52" + "185.184.228.221" ] }, { @@ -171886,11 +235156,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9785, - "hostname": "us9785.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10361, + "hostname": "us10361.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.52" + "185.184.228.221" ] }, { @@ -171898,12 +235172,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9786, - "hostname": "us9786.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10362, + "hostname": "us10362.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.68" + "185.184.228.241" ] }, { @@ -171911,11 +235189,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9786, - "hostname": "us9786.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10362, + "hostname": "us10362.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.68" + "185.184.228.241" ] }, { @@ -171923,12 +235205,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9787, - "hostname": "us9787.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10363, + "hostname": "us10363.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.84" + "66.111.61.193" ] }, { @@ -171936,11 +235222,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9787, - "hostname": "us9787.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10363, + "hostname": "us10363.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.84" + "66.111.61.193" ] }, { @@ -171948,12 +235238,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9788, - "hostname": "us9788.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10364, + "hostname": "us10364.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.100" + "66.111.61.213" ] }, { @@ -171961,11 +235255,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9788, - "hostname": "us9788.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10364, + "hostname": "us10364.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.100" + "66.111.61.213" ] }, { @@ -171973,12 +235271,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9789, - "hostname": "us9789.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10365, + "hostname": "us10365.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.116" + "66.111.61.233" ] }, { @@ -171986,11 +235288,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9789, - "hostname": "us9789.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10365, + "hostname": "us10365.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.116" + "66.111.61.233" ] }, { @@ -171998,12 +235304,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9790, - "hostname": "us9790.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10366, + "hostname": "us10366.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.132" + "66.111.61.161" ] }, { @@ -172011,11 +235321,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9790, - "hostname": "us9790.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10366, + "hostname": "us10366.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.132" + "66.111.61.161" ] }, { @@ -172023,24 +235337,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9791, - "hostname": "us9791.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10381, + "hostname": "us10381.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.148" + "149.102.252.88" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9791, - "hostname": "us9791.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10382, + "hostname": "us10382.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "191.101.160.148" + "149.102.252.90" ] }, { @@ -172048,12 +235369,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9792, - "hostname": "us9792.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10383, + "hostname": "us10383.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.164" + "152.89.206.2" ] }, { @@ -172061,11 +235386,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9792, - "hostname": "us9792.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10383, + "hostname": "us10383.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.164" + "152.89.206.2" ] }, { @@ -172073,12 +235402,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9793, - "hostname": "us9793.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10384, + "hostname": "us10384.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.180" + "152.89.206.3" ] }, { @@ -172086,11 +235419,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9793, - "hostname": "us9793.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10384, + "hostname": "us10384.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.180" + "152.89.206.3" ] }, { @@ -172098,12 +235435,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9794, - "hostname": "us9794.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10385, + "hostname": "us10385.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.195" + "152.89.206.4" ] }, { @@ -172111,11 +235452,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9794, - "hostname": "us9794.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10385, + "hostname": "us10385.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.195" + "152.89.206.4" ] }, { @@ -172123,12 +235468,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9795, - "hostname": "us9795.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10386, + "hostname": "us10386.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.210" + "152.89.206.5" ] }, { @@ -172136,11 +235485,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9795, - "hostname": "us9795.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10386, + "hostname": "us10386.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.210" + "152.89.206.5" ] }, { @@ -172148,12 +235501,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9796, - "hostname": "us9796.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10387, + "hostname": "us10387.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.225" + "152.89.206.6" ] }, { @@ -172161,11 +235518,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9796, - "hostname": "us9796.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10387, + "hostname": "us10387.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.225" + "152.89.206.6" ] }, { @@ -172173,12 +235534,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9797, - "hostname": "us9797.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10388, + "hostname": "us10388.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "191.101.160.240" + "152.89.206.7" ] }, { @@ -172186,11 +235551,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9797, - "hostname": "us9797.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10388, + "hostname": "us10388.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "191.101.160.240" + "152.89.206.7" ] }, { @@ -172198,12 +235567,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9798, - "hostname": "us9798.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10389, + "hostname": "us10389.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.4" + "152.89.206.8" ] }, { @@ -172211,11 +235584,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9798, - "hostname": "us9798.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10389, + "hostname": "us10389.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.4" + "152.89.206.8" ] }, { @@ -172223,12 +235600,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9799, - "hostname": "us9799.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10390, + "hostname": "us10390.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.20" + "152.89.206.9" ] }, { @@ -172236,11 +235617,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9799, - "hostname": "us9799.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10390, + "hostname": "us10390.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.20" + "152.89.206.9" ] }, { @@ -172248,12 +235633,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9800, - "hostname": "us9800.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10391, + "hostname": "us10391.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.36" + "152.89.206.10" ] }, { @@ -172261,11 +235650,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9800, - "hostname": "us9800.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10391, + "hostname": "us10391.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.36" + "152.89.206.10" ] }, { @@ -172273,12 +235666,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9801, - "hostname": "us9801.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10392, + "hostname": "us10392.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.52" + "152.89.206.11" ] }, { @@ -172286,11 +235683,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9801, - "hostname": "us9801.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10392, + "hostname": "us10392.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.52" + "152.89.206.11" ] }, { @@ -172298,12 +235699,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9802, - "hostname": "us9802.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10393, + "hostname": "us10393.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.68" + "152.89.206.12" ] }, { @@ -172311,11 +235716,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9802, - "hostname": "us9802.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10393, + "hostname": "us10393.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.68" + "152.89.206.12" ] }, { @@ -172323,12 +235732,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9803, - "hostname": "us9803.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10394, + "hostname": "us10394.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.84" + "152.89.206.13" ] }, { @@ -172336,11 +235749,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9803, - "hostname": "us9803.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10394, + "hostname": "us10394.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.84" + "152.89.206.13" ] }, { @@ -172348,12 +235765,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9804, - "hostname": "us9804.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10395, + "hostname": "us10395.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.100" + "152.89.206.14" ] }, { @@ -172361,11 +235782,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9804, - "hostname": "us9804.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10395, + "hostname": "us10395.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.100" + "152.89.206.14" ] }, { @@ -172373,12 +235798,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9805, - "hostname": "us9805.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10396, + "hostname": "us10396.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.116" + "152.89.206.15" ] }, { @@ -172386,11 +235815,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9805, - "hostname": "us9805.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10396, + "hostname": "us10396.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.116" + "152.89.206.15" ] }, { @@ -172398,12 +235831,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9806, - "hostname": "us9806.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10397, + "hostname": "us10397.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.132" + "152.89.206.16" ] }, { @@ -172411,11 +235848,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9806, - "hostname": "us9806.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10397, + "hostname": "us10397.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.132" + "152.89.206.16" ] }, { @@ -172423,12 +235864,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9807, - "hostname": "us9807.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10398, + "hostname": "us10398.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.148" + "152.89.206.17" ] }, { @@ -172436,11 +235881,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9807, - "hostname": "us9807.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10398, + "hostname": "us10398.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.148" + "152.89.206.17" ] }, { @@ -172448,12 +235897,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9808, - "hostname": "us9808.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10399, + "hostname": "us10399.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.164" + "152.89.206.18" ] }, { @@ -172461,11 +235914,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9808, - "hostname": "us9808.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10399, + "hostname": "us10399.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.164" + "152.89.206.18" ] }, { @@ -172473,12 +235930,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9809, - "hostname": "us9809.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10400, + "hostname": "us10400.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.180" + "152.89.206.19" ] }, { @@ -172486,11 +235947,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9809, - "hostname": "us9809.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10400, + "hostname": "us10400.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.180" + "152.89.206.19" ] }, { @@ -172498,24 +235963,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9810, - "hostname": "us9810.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10401, + "hostname": "us10401.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.195" + "138.199.10.205" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9810, - "hostname": "us9810.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10402, + "hostname": "us10402.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "154.16.157.195" + "138.199.10.207" ] }, { @@ -172523,24 +235995,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9811, - "hostname": "us9811.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10410, + "hostname": "us10410.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.210" + "149.88.21.162" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9811, - "hostname": "us9811.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10411, + "hostname": "us10411.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "154.16.157.210" + "149.88.21.164" ] }, { @@ -172548,12 +236027,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9812, - "hostname": "us9812.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10412, + "hostname": "us10412.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.225" + "185.244.215.99" ] }, { @@ -172561,11 +236044,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9812, - "hostname": "us9812.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10412, + "hostname": "us10412.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.225" + "185.244.215.99" ] }, { @@ -172573,12 +236060,16 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9813, - "hostname": "us9813.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10413, + "hostname": "us10413.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "154.16.157.240" + "185.244.215.203" ] }, { @@ -172586,11 +236077,15 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9813, - "hostname": "us9813.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10413, + "hostname": "us10413.nordvpn.com", "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", "ips": [ - "154.16.157.240" + "185.244.215.203" ] }, { @@ -172598,24 +236093,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9873, - "hostname": "us9873.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10448, + "hostname": "us10448.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.1" + "138.199.10.210" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9873, - "hostname": "us9873.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10449, + "hostname": "us10449.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.1" + "138.199.10.212" ] }, { @@ -172623,24 +236125,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9874, - "hostname": "us9874.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10450, + "hostname": "us10450.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.12" + "149.102.252.71" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9874, - "hostname": "us9874.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10451, + "hostname": "us10451.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.12" + "149.102.252.73" ] }, { @@ -172648,24 +236157,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9875, - "hostname": "us9875.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10468, + "hostname": "us10468.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.23" + "149.102.249.130" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9875, - "hostname": "us9875.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10469, + "hostname": "us10469.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.23" + "149.102.249.132" ] }, { @@ -172673,24 +236189,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9876, - "hostname": "us9876.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10470, + "hostname": "us10470.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.34" + "149.102.249.135" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9876, - "hostname": "us9876.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10471, + "hostname": "us10471.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.34" + "149.102.249.137" ] }, { @@ -172698,24 +236221,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9877, - "hostname": "us9877.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10472, + "hostname": "us10472.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.45" + "138.199.10.215" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9877, - "hostname": "us9877.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10473, + "hostname": "us10473.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.45" + "138.199.10.217" ] }, { @@ -172723,24 +236253,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9878, - "hostname": "us9878.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10474, + "hostname": "us10474.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.56" + "149.102.249.140" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9878, - "hostname": "us9878.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10475, + "hostname": "us10475.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.56" + "149.102.249.142" ] }, { @@ -172748,24 +236285,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9879, - "hostname": "us9879.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10490, + "hostname": "us10490.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.67" + "84.17.35.232" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9879, - "hostname": "us9879.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10491, + "hostname": "us10491.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.67" + "84.17.35.242" ] }, { @@ -172773,24 +236317,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9880, - "hostname": "us9880.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10494, + "hostname": "us10494.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.78" + "149.102.249.145" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9880, - "hostname": "us9880.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10495, + "hostname": "us10495.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.78" + "149.102.249.147" ] }, { @@ -172798,24 +236349,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9881, - "hostname": "us9881.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10511, + "hostname": "us10511.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.89" + "149.102.249.150" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9881, - "hostname": "us9881.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10512, + "hostname": "us10512.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.89" + "149.102.249.152" ] }, { @@ -172823,24 +236381,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9882, - "hostname": "us9882.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10536, + "hostname": "us10536.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.100" + "143.244.47.228" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9882, - "hostname": "us9882.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10537, + "hostname": "us10537.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.100" + "143.244.47.230" ] }, { @@ -172848,24 +236413,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9883, - "hostname": "us9883.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10552, + "hostname": "us10552.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.111" + "138.199.11.162" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9883, - "hostname": "us9883.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10553, + "hostname": "us10553.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.111" + "138.199.11.164" ] }, { @@ -172873,24 +236445,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9884, - "hostname": "us9884.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10554, + "hostname": "us10554.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.140.184.122" + "138.199.11.167" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9884, - "hostname": "us9884.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10555, + "hostname": "us10555.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "45.140.184.122" + "138.199.11.169" ] }, { @@ -172898,24 +236477,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9912, - "hostname": "us9912.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10558, + "hostname": "us10558.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.2" + "138.199.11.130" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9912, - "hostname": "us9912.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10559, + "hostname": "us10559.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.201.2" + "138.199.11.132" ] }, { @@ -172923,24 +236509,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9913, - "hostname": "us9913.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10560, + "hostname": "us10560.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.13" + "138.199.11.140" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9913, - "hostname": "us9913.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10561, + "hostname": "us10561.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.201.13" + "138.199.11.142" ] }, { @@ -172948,24 +236541,31 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9914, - "hostname": "us9914.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10564, + "hostname": "us10564.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.24" + "138.199.11.135" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9914, - "hostname": "us9914.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10565, + "hostname": "us10565.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.201.24" + "138.199.11.137" ] }, { @@ -172973,3699 +236573,4880 @@ "country": "United States", "region": "The Americas", "city": "New York", - "number": 9915, - "hostname": "us9915.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10566, + "hostname": "us10566.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.35" + "138.199.11.145" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "New York", - "number": 9915, - "hostname": "us9915.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "categories": [ + "Dedicated IP" + ], + "number": 10567, + "hostname": "us10567.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "185.216.201.35" + "138.199.11.147" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9916, - "hostname": "us9916.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8698, + "hostname": "us8698.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.46" + "192.145.119.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9916, - "hostname": "us9916.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8698, + "hostname": "us8698.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "185.216.201.46" + "192.145.119.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9917, - "hostname": "us9917.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8699, + "hostname": "us8699.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.57" + "192.145.119.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9917, - "hostname": "us9917.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8699, + "hostname": "us8699.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "185.216.201.57" + "192.145.119.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9918, - "hostname": "us9918.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8700, + "hostname": "us8700.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.68" + "192.145.119.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9918, - "hostname": "us9918.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8700, + "hostname": "us8700.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "185.216.201.68" + "192.145.119.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9919, - "hostname": "us9919.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8701, + "hostname": "us8701.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.79" + "192.145.119.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9919, - "hostname": "us9919.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8701, + "hostname": "us8701.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "185.216.201.79" + "192.145.119.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9920, - "hostname": "us9920.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8702, + "hostname": "us8702.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.216.201.90" + "192.145.119.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 9920, - "hostname": "us9920.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8702, + "hostname": "us8702.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "185.216.201.90" + "192.145.119.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10054, - "hostname": "us10054.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8703, + "hostname": "us8703.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.83" + "192.145.119.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10054, - "hostname": "us10054.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8703, + "hostname": "us8703.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.83" + "192.145.119.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10055, - "hostname": "us10055.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8704, + "hostname": "us8704.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.3" + "192.145.119.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10055, - "hostname": "us10055.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8704, + "hostname": "us8704.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.3" + "192.145.119.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10056, - "hostname": "us10056.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8705, + "hostname": "us8705.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.11" + "192.145.119.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10056, - "hostname": "us10056.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8705, + "hostname": "us8705.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.11" + "192.145.119.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10057, - "hostname": "us10057.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8706, + "hostname": "us8706.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.19" + "192.145.119.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10057, - "hostname": "us10057.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8706, + "hostname": "us8706.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.19" + "192.145.119.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10058, - "hostname": "us10058.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8707, + "hostname": "us8707.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.35" + "192.145.119.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10058, - "hostname": "us10058.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8707, + "hostname": "us8707.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.35" + "192.145.119.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10059, - "hostname": "us10059.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8708, + "hostname": "us8708.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.171" + "192.145.119.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10059, - "hostname": "us10059.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8708, + "hostname": "us8708.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.171" + "192.145.119.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10060, - "hostname": "us10060.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8709, + "hostname": "us8709.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.179" + "192.145.119.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10060, - "hostname": "us10060.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8709, + "hostname": "us8709.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.179" + "192.145.119.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10061, - "hostname": "us10061.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8710, + "hostname": "us8710.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.187" + "192.145.119.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10061, - "hostname": "us10061.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8710, + "hostname": "us8710.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.187" + "192.145.119.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10062, - "hostname": "us10062.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8711, + "hostname": "us8711.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.3" + "192.145.119.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10062, - "hostname": "us10062.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8711, + "hostname": "us8711.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.3" + "192.145.119.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10063, - "hostname": "us10063.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8712, + "hostname": "us8712.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.11" + "192.145.119.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10063, - "hostname": "us10063.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8712, + "hostname": "us8712.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.11" + "192.145.119.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10064, - "hostname": "us10064.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8713, + "hostname": "us8713.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.19" + "192.145.119.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10064, - "hostname": "us10064.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8713, + "hostname": "us8713.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.19" + "192.145.119.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10065, - "hostname": "us10065.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8714, + "hostname": "us8714.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.99" + "192.145.119.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10065, - "hostname": "us10065.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8714, + "hostname": "us8714.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.99" + "192.145.119.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10066, - "hostname": "us10066.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8715, + "hostname": "us8715.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.115" + "192.145.119.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10066, - "hostname": "us10066.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8715, + "hostname": "us8715.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.115" + "192.145.119.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10067, - "hostname": "us10067.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8716, + "hostname": "us8716.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.131" + "192.145.119.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10067, - "hostname": "us10067.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8716, + "hostname": "us8716.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.131" + "192.145.119.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10068, - "hostname": "us10068.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8717, + "hostname": "us8717.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.147" + "192.145.119.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10068, - "hostname": "us10068.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8717, + "hostname": "us8717.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.147" + "192.145.119.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10069, - "hostname": "us10069.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8718, + "hostname": "us8718.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.27" + "192.145.119.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10069, - "hostname": "us10069.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8718, + "hostname": "us8718.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.27" + "192.145.119.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10070, - "hostname": "us10070.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8719, + "hostname": "us8719.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.163" + "192.145.119.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10070, - "hostname": "us10070.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8719, + "hostname": "us8719.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.163" + "192.145.119.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10071, - "hostname": "us10071.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers" + ], + "number": 9504, + "hostname": "us9504.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.35" + "192.145.119.6" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10071, - "hostname": "us10071.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers" + ], + "number": 9504, + "hostname": "us9504.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.35" + "192.145.119.6" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10072, - "hostname": "us10072.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9541, + "hostname": "us9541.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.51" + "45.86.210.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10072, - "hostname": "us10072.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9541, + "hostname": "us9541.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.51" + "45.86.210.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10073, - "hostname": "us10073.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9542, + "hostname": "us9542.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.59" + "45.86.210.4" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10073, - "hostname": "us10073.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9542, + "hostname": "us9542.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.59" + "45.86.210.4" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10074, - "hostname": "us10074.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9543, + "hostname": "us9543.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.67" + "45.86.210.6" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10074, - "hostname": "us10074.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9543, + "hostname": "us9543.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.67" + "45.86.210.6" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10075, - "hostname": "us10075.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9544, + "hostname": "us9544.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.75" + "45.86.210.8" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10075, - "hostname": "us10075.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9544, + "hostname": "us9544.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.75" + "45.86.210.8" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10076, - "hostname": "us10076.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9545, + "hostname": "us9545.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.83" + "45.86.210.10" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10076, - "hostname": "us10076.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9545, + "hostname": "us9545.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.83" + "45.86.210.10" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10077, - "hostname": "us10077.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9546, + "hostname": "us9546.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.91" + "45.86.210.12" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10077, - "hostname": "us10077.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9546, + "hostname": "us9546.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.91" + "45.86.210.12" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10078, - "hostname": "us10078.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9547, + "hostname": "us9547.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.99" + "45.86.210.14" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10078, - "hostname": "us10078.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9547, + "hostname": "us9547.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.99" + "45.86.210.14" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10079, - "hostname": "us10079.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9548, + "hostname": "us9548.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.107" + "45.86.210.16" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10079, - "hostname": "us10079.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9548, + "hostname": "us9548.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.107" + "45.86.210.16" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10080, - "hostname": "us10080.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9549, + "hostname": "us9549.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.115" + "45.86.210.18" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10080, - "hostname": "us10080.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9549, + "hostname": "us9549.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.115" + "45.86.210.18" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10081, - "hostname": "us10081.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9550, + "hostname": "us9550.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.123" + "45.86.210.20" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10081, - "hostname": "us10081.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9550, + "hostname": "us9550.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.123" + "45.86.210.20" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10082, - "hostname": "us10082.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9551, + "hostname": "us9551.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.131" + "45.86.210.22" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10082, - "hostname": "us10082.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9551, + "hostname": "us9551.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.189.131" + "45.86.210.22" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10083, - "hostname": "us10083.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9552, + "hostname": "us9552.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.203" + "45.86.210.24" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10083, - "hostname": "us10083.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9552, + "hostname": "us9552.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.203" + "45.86.210.24" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10085, - "hostname": "us10085.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9553, + "hostname": "us9553.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.235" + "45.86.210.26" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10085, - "hostname": "us10085.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9553, + "hostname": "us9553.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.235" + "45.86.210.26" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10086, - "hostname": "us10086.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9554, + "hostname": "us9554.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.251" + "45.86.210.28" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10086, - "hostname": "us10086.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9554, + "hostname": "us9554.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.251" + "45.86.210.28" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10087, - "hostname": "us10087.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9555, + "hostname": "us9555.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.195" + "45.86.210.30" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10087, - "hostname": "us10087.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9555, + "hostname": "us9555.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.195" + "45.86.210.30" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10088, - "hostname": "us10088.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9556, + "hostname": "us9556.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.243" + "45.86.210.32" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10088, - "hostname": "us10088.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9556, + "hostname": "us9556.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.243" + "45.86.210.32" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10089, - "hostname": "us10089.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9557, + "hostname": "us9557.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.51" + "45.86.210.34" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10089, - "hostname": "us10089.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9557, + "hostname": "us9557.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.51" + "45.86.210.34" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10090, - "hostname": "us10090.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9558, + "hostname": "us9558.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.67" + "45.86.210.36" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10090, - "hostname": "us10090.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9558, + "hostname": "us9558.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.67" + "45.86.210.36" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10091, - "hostname": "us10091.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9559, + "hostname": "us9559.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.43" + "45.86.210.38" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10091, - "hostname": "us10091.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9559, + "hostname": "us9559.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.43" + "45.86.210.38" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10092, - "hostname": "us10092.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9560, + "hostname": "us9560.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.59" + "45.86.210.40" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10092, - "hostname": "us10092.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9560, + "hostname": "us9560.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.59" + "45.86.210.40" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10093, - "hostname": "us10093.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9561, + "hostname": "us9561.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.75" + "45.86.210.42" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10093, - "hostname": "us10093.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9561, + "hostname": "us9561.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.75" + "45.86.210.42" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10094, - "hostname": "us10094.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9562, + "hostname": "us9562.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.91" + "45.86.210.44" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10094, - "hostname": "us10094.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9562, + "hostname": "us9562.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.91" + "45.86.210.44" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10095, - "hostname": "us10095.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9563, + "hostname": "us9563.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.107" + "45.86.210.46" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10095, - "hostname": "us10095.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9563, + "hostname": "us9563.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.107" + "45.86.210.46" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10096, - "hostname": "us10096.nordvpn.com", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9564, + "hostname": "us9564.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.123" + "45.86.210.48" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10096, - "hostname": "us10096.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Phoenix", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9564, + "hostname": "us9564.nordvpn.com", + "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", "ips": [ - "140.99.201.123" + "45.86.210.48" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10097, - "hostname": "us10097.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10317, + "hostname": "us10317.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.139" + "185.172.52.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10097, - "hostname": "us10097.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10317, + "hostname": "us10317.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "140.99.201.139" + "185.172.52.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10098, - "hostname": "us10098.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10318, + "hostname": "us10318.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.211" + "185.172.52.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10098, - "hostname": "us10098.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10318, + "hostname": "us10318.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "140.99.201.211" + "185.172.52.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10099, - "hostname": "us10099.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10319, + "hostname": "us10319.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.227" + "185.172.52.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10099, - "hostname": "us10099.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10319, + "hostname": "us10319.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "140.99.201.227" + "185.172.52.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10200, - "hostname": "us10200.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10320, + "hostname": "us10320.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.43" + "185.172.52.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10200, - "hostname": "us10200.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10320, + "hostname": "us10320.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "140.99.189.43" + "185.172.52.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10201, - "hostname": "us10201.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10321, + "hostname": "us10321.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.155" + "185.172.52.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10201, - "hostname": "us10201.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10321, + "hostname": "us10321.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "140.99.201.155" + "185.172.52.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10202, - "hostname": "us10202.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10322, + "hostname": "us10322.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.201.27" + "185.172.52.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10202, - "hostname": "us10202.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10322, + "hostname": "us10322.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "140.99.201.27" + "185.172.52.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10251, - "hostname": "us10251.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10323, + "hostname": "us10323.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "140.99.189.163" + "185.172.52.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "New York", - "number": 10251, - "hostname": "us10251.nordvpn.com", - "wgpubkey": "0/x2PdBGfcIGr0ayFPFFjxcEEyhrlBRjR4kMcfwXJTU=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10323, + "hostname": "us10323.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "140.99.189.163" + "185.172.52.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8698, - "hostname": "us8698.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10324, + "hostname": "us10324.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.100" + "185.172.52.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8698, - "hostname": "us8698.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10324, + "hostname": "us10324.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.100" + "185.172.52.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8699, - "hostname": "us8699.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10325, + "hostname": "us10325.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.102" + "185.172.52.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8699, - "hostname": "us8699.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10325, + "hostname": "us10325.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.102" + "185.172.52.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8700, - "hostname": "us8700.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10326, + "hostname": "us10326.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.104" + "185.172.52.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8700, - "hostname": "us8700.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10326, + "hostname": "us10326.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.104" + "185.172.52.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8701, - "hostname": "us8701.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10327, + "hostname": "us10327.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.106" + "185.172.52.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8701, - "hostname": "us8701.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10327, + "hostname": "us10327.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.106" + "185.172.52.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8702, - "hostname": "us8702.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10328, + "hostname": "us10328.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.108" + "185.172.52.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8702, - "hostname": "us8702.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10328, + "hostname": "us10328.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.108" + "185.172.52.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8703, - "hostname": "us8703.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10329, + "hostname": "us10329.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.110" + "185.172.52.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8703, - "hostname": "us8703.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10329, + "hostname": "us10329.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.110" + "185.172.52.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8704, - "hostname": "us8704.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10330, + "hostname": "us10330.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.112" + "185.172.52.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8704, - "hostname": "us8704.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10330, + "hostname": "us10330.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.112" + "185.172.52.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8705, - "hostname": "us8705.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10331, + "hostname": "us10331.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.114" + "185.172.52.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8705, - "hostname": "us8705.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10331, + "hostname": "us10331.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.114" + "185.172.52.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8706, - "hostname": "us8706.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10332, + "hostname": "us10332.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.116" + "185.172.52.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8706, - "hostname": "us8706.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10332, + "hostname": "us10332.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.116" + "185.172.52.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8707, - "hostname": "us8707.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10333, + "hostname": "us10333.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.118" + "185.172.52.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8707, - "hostname": "us8707.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10333, + "hostname": "us10333.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.118" + "185.172.52.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8708, - "hostname": "us8708.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10334, + "hostname": "us10334.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.120" + "185.172.52.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8708, - "hostname": "us8708.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10334, + "hostname": "us10334.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.120" + "185.172.52.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8709, - "hostname": "us8709.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10335, + "hostname": "us10335.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.122" + "185.172.52.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8709, - "hostname": "us8709.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10335, + "hostname": "us10335.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.122" + "185.172.52.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8710, - "hostname": "us8710.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10336, + "hostname": "us10336.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.124" + "185.172.52.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8710, - "hostname": "us8710.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10336, + "hostname": "us10336.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.124" + "185.172.52.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8711, - "hostname": "us8711.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10337, + "hostname": "us10337.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.126" + "185.172.52.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8711, - "hostname": "us8711.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10337, + "hostname": "us10337.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.126" + "185.172.52.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8712, - "hostname": "us8712.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10338, + "hostname": "us10338.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.128" + "185.172.52.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8712, - "hostname": "us8712.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10338, + "hostname": "us10338.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.128" + "185.172.52.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8713, - "hostname": "us8713.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10339, + "hostname": "us10339.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.130" + "185.172.52.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8713, - "hostname": "us8713.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10339, + "hostname": "us10339.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.130" + "185.172.52.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8714, - "hostname": "us8714.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10340, + "hostname": "us10340.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.132" + "185.172.52.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8714, - "hostname": "us8714.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10340, + "hostname": "us10340.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.132" + "185.172.52.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8715, - "hostname": "us8715.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10341, + "hostname": "us10341.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.134" + "185.172.52.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8715, - "hostname": "us8715.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10341, + "hostname": "us10341.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.134" + "185.172.52.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8716, - "hostname": "us8716.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10342, + "hostname": "us10342.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.136" + "185.172.52.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8716, - "hostname": "us8716.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10342, + "hostname": "us10342.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.136" + "185.172.52.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8717, - "hostname": "us8717.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10343, + "hostname": "us10343.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.138" + "185.172.52.152" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8717, - "hostname": "us8717.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10343, + "hostname": "us10343.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.138" + "185.172.52.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8718, - "hostname": "us8718.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10344, + "hostname": "us10344.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.140" + "185.172.52.154" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8718, - "hostname": "us8718.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10344, + "hostname": "us10344.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.140" + "185.172.52.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 8719, - "hostname": "us8719.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10345, + "hostname": "us10345.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.142" + "185.172.52.156" ] }, { - "vpn": "wireguard", - "country": "United States", - "region": "The Americas", - "city": "Phoenix", - "number": 8719, - "hostname": "us8719.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "vpn": "wireguard", + "country": "United States", + "region": "The Americas", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10345, + "hostname": "us10345.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.142" + "185.172.52.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9504, - "hostname": "us9504.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10346, + "hostname": "us10346.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.119.6" + "185.172.52.158" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9504, - "hostname": "us9504.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10346, + "hostname": "us10346.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "192.145.119.6" + "185.172.52.158" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9541, - "hostname": "us9541.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10369, + "hostname": "us10369.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.2" + "185.172.52.160" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9541, - "hostname": "us9541.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10369, + "hostname": "us10369.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "45.86.210.2" + "185.172.52.160" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9542, - "hostname": "us9542.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10370, + "hostname": "us10370.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.4" + "185.172.52.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9542, - "hostname": "us9542.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10370, + "hostname": "us10370.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "45.86.210.4" + "185.172.52.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9543, - "hostname": "us9543.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10371, + "hostname": "us10371.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.6" + "185.172.52.164" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9543, - "hostname": "us9543.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10371, + "hostname": "us10371.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "45.86.210.6" + "185.172.52.164" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9544, - "hostname": "us9544.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10372, + "hostname": "us10372.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.8" + "185.172.52.166" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9544, - "hostname": "us9544.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10372, + "hostname": "us10372.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "45.86.210.8" + "185.172.52.166" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9545, - "hostname": "us9545.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10373, + "hostname": "us10373.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.10" + "185.172.52.168" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9545, - "hostname": "us9545.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10373, + "hostname": "us10373.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "45.86.210.10" + "185.172.52.168" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9546, - "hostname": "us9546.nordvpn.com", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10374, + "hostname": "us10374.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.12" + "185.172.52.170" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9546, - "hostname": "us9546.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Saint Louis", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10374, + "hostname": "us10374.nordvpn.com", + "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", "ips": [ - "45.86.210.12" + "185.172.52.170" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9547, - "hostname": "us9547.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10414, + "hostname": "us10414.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.14" + "31.222.254.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9547, - "hostname": "us9547.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10414, + "hostname": "us10414.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.14" + "31.222.254.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9548, - "hostname": "us9548.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10415, + "hostname": "us10415.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.16" + "31.222.254.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9548, - "hostname": "us9548.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10415, + "hostname": "us10415.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.16" + "31.222.254.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9549, - "hostname": "us9549.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10416, + "hostname": "us10416.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.18" + "31.222.254.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9549, - "hostname": "us9549.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10416, + "hostname": "us10416.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.18" + "31.222.254.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9550, - "hostname": "us9550.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10417, + "hostname": "us10417.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.20" + "31.222.254.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9550, - "hostname": "us9550.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10417, + "hostname": "us10417.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.20" + "31.222.254.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9551, - "hostname": "us9551.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10418, + "hostname": "us10418.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.22" + "31.222.254.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9551, - "hostname": "us9551.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10418, + "hostname": "us10418.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.22" + "31.222.254.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9552, - "hostname": "us9552.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10419, + "hostname": "us10419.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.24" + "31.222.254.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9552, - "hostname": "us9552.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10419, + "hostname": "us10419.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.24" + "31.222.254.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9553, - "hostname": "us9553.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10420, + "hostname": "us10420.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.26" + "31.222.254.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9553, - "hostname": "us9553.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10420, + "hostname": "us10420.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.26" + "31.222.254.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9554, - "hostname": "us9554.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10421, + "hostname": "us10421.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.28" + "31.222.254.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9554, - "hostname": "us9554.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10421, + "hostname": "us10421.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.28" + "31.222.254.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9555, - "hostname": "us9555.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10422, + "hostname": "us10422.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.30" + "31.222.254.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9555, - "hostname": "us9555.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10422, + "hostname": "us10422.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.30" + "31.222.254.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9556, - "hostname": "us9556.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10423, + "hostname": "us10423.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.32" + "31.222.254.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9556, - "hostname": "us9556.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10423, + "hostname": "us10423.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.32" + "31.222.254.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9557, - "hostname": "us9557.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10424, + "hostname": "us10424.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.34" + "31.222.254.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9557, - "hostname": "us9557.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10424, + "hostname": "us10424.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.34" + "31.222.254.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9558, - "hostname": "us9558.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10425, + "hostname": "us10425.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.36" + "31.222.254.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9558, - "hostname": "us9558.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10425, + "hostname": "us10425.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.36" + "31.222.254.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9559, - "hostname": "us9559.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10426, + "hostname": "us10426.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.38" + "31.222.254.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9559, - "hostname": "us9559.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10426, + "hostname": "us10426.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.38" + "31.222.254.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9560, - "hostname": "us9560.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10427, + "hostname": "us10427.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.40" + "31.222.254.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9560, - "hostname": "us9560.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10427, + "hostname": "us10427.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.40" + "31.222.254.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9561, - "hostname": "us9561.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10428, + "hostname": "us10428.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.42" + "31.222.254.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9561, - "hostname": "us9561.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10428, + "hostname": "us10428.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.42" + "31.222.254.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9562, - "hostname": "us9562.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10429, + "hostname": "us10429.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.44" + "31.222.254.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9562, - "hostname": "us9562.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10429, + "hostname": "us10429.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.44" + "31.222.254.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9563, - "hostname": "us9563.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10430, + "hostname": "us10430.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.46" + "31.222.254.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9563, - "hostname": "us9563.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10430, + "hostname": "us10430.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.46" + "31.222.254.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9564, - "hostname": "us9564.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10431, + "hostname": "us10431.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "45.86.210.48" + "31.222.254.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Phoenix", - "number": 9564, - "hostname": "us9564.nordvpn.com", - "wgpubkey": "jiKqgiOst4UvgejfB1U4BlS0dlXoPohz+VM69G9TSDg=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10431, + "hostname": "us10431.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "45.86.210.48" + "31.222.254.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9434, - "hostname": "us9434.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10432, + "hostname": "us10432.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.38" + "31.222.254.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9434, - "hostname": "us9434.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10432, + "hostname": "us10432.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.38" + "31.222.254.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9435, - "hostname": "us9435.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10433, + "hostname": "us10433.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.51" + "31.222.254.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9435, - "hostname": "us9435.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10433, + "hostname": "us10433.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.51" + "31.222.254.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9436, - "hostname": "us9436.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10434, + "hostname": "us10434.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.64" + "31.222.254.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9436, - "hostname": "us9436.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10434, + "hostname": "us10434.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.64" + "31.222.254.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9437, - "hostname": "us9437.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10435, + "hostname": "us10435.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.77" + "31.222.254.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9437, - "hostname": "us9437.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10435, + "hostname": "us10435.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.77" + "31.222.254.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9438, - "hostname": "us9438.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10436, + "hostname": "us10436.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.90" + "31.222.254.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9438, - "hostname": "us9438.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10436, + "hostname": "us10436.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.90" + "31.222.254.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9439, - "hostname": "us9439.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10437, + "hostname": "us10437.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.103" + "31.222.254.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9439, - "hostname": "us9439.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10437, + "hostname": "us10437.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.103" + "31.222.254.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9440, - "hostname": "us9440.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10517, + "hostname": "us10517.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.116" + "45.13.235.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9440, - "hostname": "us9440.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10517, + "hostname": "us10517.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.116" + "45.13.235.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9441, - "hostname": "us9441.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10518, + "hostname": "us10518.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.129" + "45.13.235.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9441, - "hostname": "us9441.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10518, + "hostname": "us10518.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.129" + "45.13.235.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9442, - "hostname": "us9442.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10519, + "hostname": "us10519.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.142" + "45.13.235.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9442, - "hostname": "us9442.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10519, + "hostname": "us10519.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.142" + "45.13.235.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9445, - "hostname": "us9445.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10520, + "hostname": "us10520.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.179" + "45.13.235.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9445, - "hostname": "us9445.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10520, + "hostname": "us10520.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.179" + "45.13.235.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9446, - "hostname": "us9446.nordvpn.com", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10521, + "hostname": "us10521.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.218" + "45.13.235.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9446, - "hostname": "us9446.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "Salt Lake City", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 10521, + "hostname": "us10521.nordvpn.com", + "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", "ips": [ - "148.72.164.218" + "45.13.235.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9447, - "hostname": "us9447.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8510, + "hostname": "us8510.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.192" + "192.145.118.100" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9447, - "hostname": "us9447.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8510, + "hostname": "us8510.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.164.192" + "192.145.118.100" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9448, - "hostname": "us9448.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8511, + "hostname": "us8511.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.205" + "192.145.118.102" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9448, - "hostname": "us9448.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8511, + "hostname": "us8511.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.164.205" + "192.145.118.102" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9505, - "hostname": "us9505.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8512, + "hostname": "us8512.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.165.29" + "192.145.118.104" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9505, - "hostname": "us9505.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8512, + "hostname": "us8512.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.165.29" + "192.145.118.104" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9595, - "hostname": "us9595.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8513, + "hostname": "us8513.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.26" + "192.145.118.106" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9595, - "hostname": "us9595.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8513, + "hostname": "us8513.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.164.26" + "192.145.118.106" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9596, - "hostname": "us9596.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8514, + "hostname": "us8514.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.165.208" + "192.145.118.108" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9596, - "hostname": "us9596.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8514, + "hostname": "us8514.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.165.208" + "192.145.118.108" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9597, - "hostname": "us9597.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8515, + "hostname": "us8515.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.165.191" + "192.145.118.110" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9597, - "hostname": "us9597.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8515, + "hostname": "us8515.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.165.191" + "192.145.118.110" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9629, - "hostname": "us9629.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8516, + "hostname": "us8516.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.164.169" + "192.145.118.112" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9629, - "hostname": "us9629.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8516, + "hostname": "us8516.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.164.169" + "192.145.118.112" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9630, - "hostname": "us9630.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8517, + "hostname": "us8517.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.168.125" + "192.145.118.114" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9630, - "hostname": "us9630.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8517, + "hostname": "us8517.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.168.125" + "192.145.118.114" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9631, - "hostname": "us9631.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8518, + "hostname": "us8518.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.165.238" + "192.145.118.116" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9631, - "hostname": "us9631.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8518, + "hostname": "us8518.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.165.238" + "192.145.118.116" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9632, - "hostname": "us9632.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8519, + "hostname": "us8519.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.173.54" + "192.145.118.118" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9632, - "hostname": "us9632.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8519, + "hostname": "us8519.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.173.54" + "192.145.118.118" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9633, - "hostname": "us9633.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8520, + "hostname": "us8520.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "148.72.170.134" + "192.145.118.120" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Saint Louis", - "number": 9633, - "hostname": "us9633.nordvpn.com", - "wgpubkey": "PsYG6kXKbQ9ucIjukC+2MzDs6LWqb7DY97Zc5G3K1F0=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8520, + "hostname": "us8520.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "148.72.170.134" + "192.145.118.120" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9477, - "hostname": "us9477.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8521, + "hostname": "us8521.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.3" + "192.145.118.122" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9477, - "hostname": "us9477.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8521, + "hostname": "us8521.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.3" + "192.145.118.122" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9478, - "hostname": "us9478.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8522, + "hostname": "us8522.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.13" + "192.145.118.124" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9478, - "hostname": "us9478.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8522, + "hostname": "us8522.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.13" + "192.145.118.124" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9479, - "hostname": "us9479.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8523, + "hostname": "us8523.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.23" + "192.145.118.126" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9479, - "hostname": "us9479.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8523, + "hostname": "us8523.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.23" + "192.145.118.126" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9480, - "hostname": "us9480.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8524, + "hostname": "us8524.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.33" + "192.145.118.128" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9480, - "hostname": "us9480.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8524, + "hostname": "us8524.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.33" + "192.145.118.128" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9481, - "hostname": "us9481.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8525, + "hostname": "us8525.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.43" + "192.145.118.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9481, - "hostname": "us9481.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8525, + "hostname": "us8525.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.43" + "192.145.118.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9482, - "hostname": "us9482.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8526, + "hostname": "us8526.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.53" + "192.145.118.132" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9482, - "hostname": "us9482.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8526, + "hostname": "us8526.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.53" + "192.145.118.132" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9483, - "hostname": "us9483.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8527, + "hostname": "us8527.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.63" + "192.145.118.134" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9483, - "hostname": "us9483.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8527, + "hostname": "us8527.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.63" + "192.145.118.134" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9484, - "hostname": "us9484.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8528, + "hostname": "us8528.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.73" + "192.145.118.136" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9484, - "hostname": "us9484.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8528, + "hostname": "us8528.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.73" + "192.145.118.136" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9485, - "hostname": "us9485.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8529, + "hostname": "us8529.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.83" + "192.145.118.138" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9485, - "hostname": "us9485.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8529, + "hostname": "us8529.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.83" + "192.145.118.138" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9486, - "hostname": "us9486.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8530, + "hostname": "us8530.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.93" + "192.145.118.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9486, - "hostname": "us9486.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8530, + "hostname": "us8530.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.93" + "192.145.118.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9487, - "hostname": "us9487.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8531, + "hostname": "us8531.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.103" + "192.145.118.142" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9487, - "hostname": "us9487.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8531, + "hostname": "us8531.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.103" + "192.145.118.142" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9488, - "hostname": "us9488.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8532, + "hostname": "us8532.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.113" + "192.145.118.144" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9488, - "hostname": "us9488.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8532, + "hostname": "us8532.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.113" + "192.145.118.144" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9489, - "hostname": "us9489.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8533, + "hostname": "us8533.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.123" + "192.145.118.146" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9489, - "hostname": "us9489.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8533, + "hostname": "us8533.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.123" + "192.145.118.146" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9490, - "hostname": "us9490.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8534, + "hostname": "us8534.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.134" + "192.145.118.148" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9490, - "hostname": "us9490.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8534, + "hostname": "us8534.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.134" + "192.145.118.148" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9491, - "hostname": "us9491.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8535, + "hostname": "us8535.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.145" + "192.145.118.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9491, - "hostname": "us9491.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8535, + "hostname": "us8535.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.145" + "192.145.118.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9492, - "hostname": "us9492.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8536, + "hostname": "us8536.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.156" + "192.145.118.152" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9492, - "hostname": "us9492.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8536, + "hostname": "us8536.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.156" + "192.145.118.152" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9493, - "hostname": "us9493.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8537, + "hostname": "us8537.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.167" + "192.145.118.154" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9493, - "hostname": "us9493.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8537, + "hostname": "us8537.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.167" + "192.145.118.154" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9494, - "hostname": "us9494.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8538, + "hostname": "us8538.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.178" + "192.145.118.156" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9494, - "hostname": "us9494.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8538, + "hostname": "us8538.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.178" + "192.145.118.156" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9495, - "hostname": "us9495.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8539, + "hostname": "us8539.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.189" + "192.145.118.158" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9495, - "hostname": "us9495.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8539, + "hostname": "us8539.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.189" + "192.145.118.158" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9496, - "hostname": "us9496.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8540, + "hostname": "us8540.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.200" + "192.145.118.160" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9496, - "hostname": "us9496.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8540, + "hostname": "us8540.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.200" + "192.145.118.160" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9497, - "hostname": "us9497.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8541, + "hostname": "us8541.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.211" + "192.145.118.162" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9497, - "hostname": "us9497.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8541, + "hostname": "us8541.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.211" + "192.145.118.162" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9498, - "hostname": "us9498.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9666, + "hostname": "us9666.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.222" + "185.187.168.237" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9498, - "hostname": "us9498.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9666, + "hostname": "us9666.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.222" + "185.187.168.237" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9499, - "hostname": "us9499.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9667, + "hostname": "us9667.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.233" + "185.187.168.222" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9499, - "hostname": "us9499.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9667, + "hostname": "us9667.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.233" + "185.187.168.222" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9500, - "hostname": "us9500.nordvpn.com", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9668, + "hostname": "us9668.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.60.86.244" + "185.187.168.207" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "Salt Lake City", - "number": 9500, - "hostname": "us9500.nordvpn.com", - "wgpubkey": "yUmKf6B0SAtGofYmApJ4jJbC2+Ui4zN5wEfg/koSjRk=", + "city": "San Francisco", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9668, + "hostname": "us9668.nordvpn.com", + "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "194.60.86.244" + "185.187.168.207" ] }, { @@ -176673,12 +241454,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8510, - "hostname": "us8510.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9669, + "hostname": "us9669.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.100" + "185.187.168.192" ] }, { @@ -176686,11 +241471,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8510, - "hostname": "us8510.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9669, + "hostname": "us9669.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.100" + "185.187.168.192" ] }, { @@ -176698,12 +241487,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8511, - "hostname": "us8511.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9670, + "hostname": "us9670.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.102" + "185.187.168.176" ] }, { @@ -176711,11 +241504,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8511, - "hostname": "us8511.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9670, + "hostname": "us9670.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.102" + "185.187.168.176" ] }, { @@ -176723,12 +241520,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8512, - "hostname": "us8512.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9671, + "hostname": "us9671.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.104" + "185.187.168.160" ] }, { @@ -176736,11 +241537,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8512, - "hostname": "us8512.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9671, + "hostname": "us9671.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.104" + "185.187.168.160" ] }, { @@ -176748,12 +241553,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8513, - "hostname": "us8513.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9672, + "hostname": "us9672.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.106" + "185.187.168.144" ] }, { @@ -176761,11 +241570,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8513, - "hostname": "us8513.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9672, + "hostname": "us9672.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.106" + "185.187.168.144" ] }, { @@ -176773,12 +241586,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8514, - "hostname": "us8514.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9673, + "hostname": "us9673.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.108" + "185.187.168.129" ] }, { @@ -176786,11 +241603,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8514, - "hostname": "us8514.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9673, + "hostname": "us9673.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.108" + "185.187.168.129" ] }, { @@ -176798,12 +241619,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8515, - "hostname": "us8515.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9674, + "hostname": "us9674.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.110" + "185.187.168.108" ] }, { @@ -176811,11 +241636,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8515, - "hostname": "us8515.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9674, + "hostname": "us9674.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.110" + "185.187.168.108" ] }, { @@ -176823,12 +241652,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8516, - "hostname": "us8516.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9675, + "hostname": "us9675.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.112" + "185.187.168.92" ] }, { @@ -176836,11 +241669,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8516, - "hostname": "us8516.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9675, + "hostname": "us9675.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.112" + "185.187.168.92" ] }, { @@ -176848,12 +241685,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8517, - "hostname": "us8517.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9676, + "hostname": "us9676.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.114" + "185.187.168.76" ] }, { @@ -176861,11 +241702,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8517, - "hostname": "us8517.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9676, + "hostname": "us9676.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.114" + "185.187.168.76" ] }, { @@ -176873,12 +241718,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8518, - "hostname": "us8518.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9677, + "hostname": "us9677.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.116" + "185.187.168.61" ] }, { @@ -176886,11 +241735,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8518, - "hostname": "us8518.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9677, + "hostname": "us9677.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.116" + "185.187.168.61" ] }, { @@ -176898,12 +241751,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8519, - "hostname": "us8519.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9678, + "hostname": "us9678.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.118" + "185.187.168.46" ] }, { @@ -176911,11 +241768,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8519, - "hostname": "us8519.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9678, + "hostname": "us9678.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.118" + "185.187.168.46" ] }, { @@ -176923,12 +241784,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8520, - "hostname": "us8520.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9679, + "hostname": "us9679.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.120" + "185.187.168.31" ] }, { @@ -176936,11 +241801,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8520, - "hostname": "us8520.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9679, + "hostname": "us9679.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.120" + "185.187.168.31" ] }, { @@ -176948,12 +241817,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8521, - "hostname": "us8521.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9680, + "hostname": "us9680.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.122" + "185.187.168.16" ] }, { @@ -176961,11 +241834,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8521, - "hostname": "us8521.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9680, + "hostname": "us9680.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.122" + "185.187.168.16" ] }, { @@ -176973,12 +241850,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8522, - "hostname": "us8522.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9681, + "hostname": "us9681.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.124" + "185.187.168.1" ] }, { @@ -176986,11 +241867,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8522, - "hostname": "us8522.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9681, + "hostname": "us9681.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.124" + "185.187.168.1" ] }, { @@ -176998,12 +241883,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8523, - "hostname": "us8523.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9682, + "hostname": "us9682.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.126" + "185.211.32.237" ] }, { @@ -177011,11 +241900,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8523, - "hostname": "us8523.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9682, + "hostname": "us9682.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.126" + "185.211.32.237" ] }, { @@ -177023,12 +241916,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8524, - "hostname": "us8524.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9683, + "hostname": "us9683.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.128" + "185.211.32.222" ] }, { @@ -177036,11 +241933,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8524, - "hostname": "us8524.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9683, + "hostname": "us9683.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.128" + "185.211.32.222" ] }, { @@ -177048,12 +241949,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8525, - "hostname": "us8525.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9684, + "hostname": "us9684.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.130" + "185.211.32.207" ] }, { @@ -177061,11 +241966,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8525, - "hostname": "us8525.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9684, + "hostname": "us9684.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.130" + "185.211.32.207" ] }, { @@ -177073,12 +241982,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8526, - "hostname": "us8526.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9685, + "hostname": "us9685.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.132" + "185.211.32.192" ] }, { @@ -177086,11 +241999,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8526, - "hostname": "us8526.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9685, + "hostname": "us9685.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.132" + "185.211.32.192" ] }, { @@ -177098,12 +242015,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8527, - "hostname": "us8527.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9686, + "hostname": "us9686.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.134" + "185.211.32.176" ] }, { @@ -177111,11 +242032,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8527, - "hostname": "us8527.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9686, + "hostname": "us9686.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.134" + "185.211.32.176" ] }, { @@ -177123,12 +242048,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8528, - "hostname": "us8528.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9687, + "hostname": "us9687.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.136" + "185.211.32.160" ] }, { @@ -177136,11 +242065,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8528, - "hostname": "us8528.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9687, + "hostname": "us9687.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.136" + "185.211.32.160" ] }, { @@ -177148,12 +242081,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8529, - "hostname": "us8529.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9688, + "hostname": "us9688.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.138" + "185.211.32.144" ] }, { @@ -177161,11 +242098,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8529, - "hostname": "us8529.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9688, + "hostname": "us9688.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.138" + "185.211.32.144" ] }, { @@ -177173,12 +242114,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8530, - "hostname": "us8530.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9689, + "hostname": "us9689.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.140" + "185.211.32.129" ] }, { @@ -177186,11 +242131,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8530, - "hostname": "us8530.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9689, + "hostname": "us9689.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.140" + "185.211.32.129" ] }, { @@ -177198,12 +242147,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8531, - "hostname": "us8531.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9690, + "hostname": "us9690.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.142" + "185.211.32.108" ] }, { @@ -177211,11 +242164,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8531, - "hostname": "us8531.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9690, + "hostname": "us9690.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.142" + "185.211.32.108" ] }, { @@ -177223,12 +242180,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8532, - "hostname": "us8532.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9691, + "hostname": "us9691.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.144" + "185.211.32.92" ] }, { @@ -177236,11 +242197,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8532, - "hostname": "us8532.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9691, + "hostname": "us9691.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.144" + "185.211.32.92" ] }, { @@ -177248,12 +242213,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8533, - "hostname": "us8533.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9692, + "hostname": "us9692.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.146" + "185.211.32.76" ] }, { @@ -177261,11 +242230,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8533, - "hostname": "us8533.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9692, + "hostname": "us9692.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.146" + "185.211.32.76" ] }, { @@ -177273,12 +242246,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8534, - "hostname": "us8534.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9693, + "hostname": "us9693.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.148" + "185.211.32.61" ] }, { @@ -177286,11 +242263,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8534, - "hostname": "us8534.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9693, + "hostname": "us9693.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.148" + "185.211.32.61" ] }, { @@ -177298,12 +242279,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8535, - "hostname": "us8535.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9694, + "hostname": "us9694.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.150" + "185.211.32.46" ] }, { @@ -177311,11 +242296,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8535, - "hostname": "us8535.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9694, + "hostname": "us9694.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.150" + "185.211.32.46" ] }, { @@ -177323,12 +242312,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8536, - "hostname": "us8536.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9695, + "hostname": "us9695.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.152" + "185.211.32.31" ] }, { @@ -177336,11 +242329,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8536, - "hostname": "us8536.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9695, + "hostname": "us9695.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.152" + "185.211.32.31" ] }, { @@ -177348,12 +242345,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8537, - "hostname": "us8537.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9696, + "hostname": "us9696.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.154" + "185.211.32.16" ] }, { @@ -177361,11 +242362,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8537, - "hostname": "us8537.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9696, + "hostname": "us9696.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.154" + "185.211.32.16" ] }, { @@ -177373,12 +242378,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8538, - "hostname": "us8538.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9697, + "hostname": "us9697.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.156" + "185.211.32.1" ] }, { @@ -177386,11 +242395,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8538, - "hostname": "us8538.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9697, + "hostname": "us9697.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.156" + "185.211.32.1" ] }, { @@ -177398,12 +242411,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8539, - "hostname": "us8539.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9860, + "hostname": "us9860.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.158" + "194.195.93.1" ] }, { @@ -177411,11 +242428,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8539, - "hostname": "us8539.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9860, + "hostname": "us9860.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.158" + "194.195.93.1" ] }, { @@ -177423,12 +242444,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8540, - "hostname": "us8540.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9861, + "hostname": "us9861.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.160" + "194.195.93.3" ] }, { @@ -177436,11 +242461,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8540, - "hostname": "us8540.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9861, + "hostname": "us9861.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.160" + "194.195.93.3" ] }, { @@ -177448,12 +242477,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8541, - "hostname": "us8541.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9862, + "hostname": "us9862.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "192.145.118.162" + "194.195.93.5" ] }, { @@ -177461,11 +242494,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 8541, - "hostname": "us8541.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9862, + "hostname": "us9862.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "192.145.118.162" + "194.195.93.5" ] }, { @@ -177473,12 +242510,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9666, - "hostname": "us9666.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9863, + "hostname": "us9863.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.237" + "194.195.93.7" ] }, { @@ -177486,11 +242527,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9666, - "hostname": "us9666.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9863, + "hostname": "us9863.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.237" + "194.195.93.7" ] }, { @@ -177498,12 +242543,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9667, - "hostname": "us9667.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9864, + "hostname": "us9864.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.222" + "194.195.93.9" ] }, { @@ -177511,11 +242560,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9667, - "hostname": "us9667.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9864, + "hostname": "us9864.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.222" + "194.195.93.9" ] }, { @@ -177523,12 +242576,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9668, - "hostname": "us9668.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9865, + "hostname": "us9865.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.207" + "194.195.93.11" ] }, { @@ -177536,11 +242593,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9668, - "hostname": "us9668.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9865, + "hostname": "us9865.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.207" + "194.195.93.11" ] }, { @@ -177548,12 +242609,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9669, - "hostname": "us9669.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9866, + "hostname": "us9866.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.192" + "194.195.93.13" ] }, { @@ -177561,11 +242626,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9669, - "hostname": "us9669.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9866, + "hostname": "us9866.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.192" + "194.195.93.13" ] }, { @@ -177573,12 +242642,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9670, - "hostname": "us9670.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9867, + "hostname": "us9867.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.176" + "194.195.93.15" ] }, { @@ -177586,11 +242659,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9670, - "hostname": "us9670.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9867, + "hostname": "us9867.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.176" + "194.195.93.15" ] }, { @@ -177598,12 +242675,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9671, - "hostname": "us9671.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9868, + "hostname": "us9868.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.160" + "194.195.93.17" ] }, { @@ -177611,11 +242692,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9671, - "hostname": "us9671.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9868, + "hostname": "us9868.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.160" + "194.195.93.17" ] }, { @@ -177623,12 +242708,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9672, - "hostname": "us9672.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9869, + "hostname": "us9869.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.144" + "194.195.93.19" ] }, { @@ -177636,11 +242725,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9672, - "hostname": "us9672.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9869, + "hostname": "us9869.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.144" + "194.195.93.19" ] }, { @@ -177648,12 +242741,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9673, - "hostname": "us9673.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9870, + "hostname": "us9870.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.129" + "194.195.93.21" ] }, { @@ -177661,11 +242758,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9673, - "hostname": "us9673.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9870, + "hostname": "us9870.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.129" + "194.195.93.21" ] }, { @@ -177673,12 +242774,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9674, - "hostname": "us9674.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9871, + "hostname": "us9871.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.108" + "194.195.93.23" ] }, { @@ -177686,11 +242791,15 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9674, - "hostname": "us9674.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9871, + "hostname": "us9871.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.108" + "194.195.93.23" ] }, { @@ -177698,12 +242807,16 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9675, - "hostname": "us9675.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9872, + "hostname": "us9872.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.92" + "194.195.93.25" ] }, { @@ -177711,886 +242824,1170 @@ "country": "United States", "region": "The Americas", "city": "San Francisco", - "number": 9675, - "hostname": "us9675.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9872, + "hostname": "us9872.nordvpn.com", "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", "ips": [ - "185.187.168.92" + "194.195.93.25" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9676, - "hostname": "us9676.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5086, + "hostname": "us5086.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.76" + "84.17.41.130" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9676, - "hostname": "us9676.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5086, + "hostname": "us5086.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.187.168.76" + "84.17.41.130" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9677, - "hostname": "us9677.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5087, + "hostname": "us5087.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.61" + "84.17.41.135" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9677, - "hostname": "us9677.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5087, + "hostname": "us5087.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.187.168.61" + "84.17.41.135" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9678, - "hostname": "us9678.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5088, + "hostname": "us5088.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.46" + "84.17.41.140" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9678, - "hostname": "us9678.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5088, + "hostname": "us5088.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.187.168.46" + "84.17.41.140" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9679, - "hostname": "us9679.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5089, + "hostname": "us5089.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.31" + "84.17.41.145" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9679, - "hostname": "us9679.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5089, + "hostname": "us5089.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.187.168.31" + "84.17.41.145" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9680, - "hostname": "us9680.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5090, + "hostname": "us5090.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.16" + "84.17.41.150" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9680, - "hostname": "us9680.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5090, + "hostname": "us5090.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.187.168.16" + "84.17.41.150" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9681, - "hostname": "us9681.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5091, + "hostname": "us5091.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.187.168.1" + "84.17.41.155" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9681, - "hostname": "us9681.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5091, + "hostname": "us5091.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.187.168.1" + "84.17.41.155" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9682, - "hostname": "us9682.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5092, + "hostname": "us5092.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.237" + "84.17.41.160" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9682, - "hostname": "us9682.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5092, + "hostname": "us5092.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.237" + "84.17.41.160" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9683, - "hostname": "us9683.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5093, + "hostname": "us5093.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.222" + "84.17.41.165" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9683, - "hostname": "us9683.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5093, + "hostname": "us5093.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.222" + "84.17.41.165" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9684, - "hostname": "us9684.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5094, + "hostname": "us5094.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.207" + "84.17.41.170" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9684, - "hostname": "us9684.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5094, + "hostname": "us5094.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.207" + "84.17.41.170" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9685, - "hostname": "us9685.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5095, + "hostname": "us5095.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.192" + "84.17.41.175" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9685, - "hostname": "us9685.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 5095, + "hostname": "us5095.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.192" + "84.17.41.175" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9686, - "hostname": "us9686.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8237, + "hostname": "us8237.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.176" + "212.102.47.2" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9686, - "hostname": "us9686.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8237, + "hostname": "us8237.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.176" + "212.102.47.2" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9687, - "hostname": "us9687.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8238, + "hostname": "us8238.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.160" + "212.102.47.5" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9687, - "hostname": "us9687.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8238, + "hostname": "us8238.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.160" + "212.102.47.5" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9688, - "hostname": "us9688.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8239, + "hostname": "us8239.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.144" + "212.102.47.8" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9688, - "hostname": "us9688.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8239, + "hostname": "us8239.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.144" + "212.102.47.8" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9689, - "hostname": "us9689.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8240, + "hostname": "us8240.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.129" + "212.102.47.11" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9689, - "hostname": "us9689.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8240, + "hostname": "us8240.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.129" + "212.102.47.11" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9690, - "hostname": "us9690.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8241, + "hostname": "us8241.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.108" + "212.102.47.14" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9690, - "hostname": "us9690.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8241, + "hostname": "us8241.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.108" + "212.102.47.14" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9691, - "hostname": "us9691.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8242, + "hostname": "us8242.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.92" + "212.102.47.17" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9691, - "hostname": "us9691.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8242, + "hostname": "us8242.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.92" + "212.102.47.17" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9692, - "hostname": "us9692.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8243, + "hostname": "us8243.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.76" + "212.102.47.20" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9692, - "hostname": "us9692.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8243, + "hostname": "us8243.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.76" + "212.102.47.20" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9693, - "hostname": "us9693.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8244, + "hostname": "us8244.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.61" + "212.102.47.23" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9693, - "hostname": "us9693.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8244, + "hostname": "us8244.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.61" + "212.102.47.23" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9694, - "hostname": "us9694.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8245, + "hostname": "us8245.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.46" + "212.102.47.26" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9694, - "hostname": "us9694.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8245, + "hostname": "us8245.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.46" + "212.102.47.26" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9695, - "hostname": "us9695.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8246, + "hostname": "us8246.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.31" + "212.102.47.29" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9695, - "hostname": "us9695.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8246, + "hostname": "us8246.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.31" + "212.102.47.29" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9696, - "hostname": "us9696.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8247, + "hostname": "us8247.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.16" + "212.102.47.32" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9696, - "hostname": "us9696.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8247, + "hostname": "us8247.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.16" + "212.102.47.32" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9697, - "hostname": "us9697.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8248, + "hostname": "us8248.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "185.211.32.1" + "212.102.47.35" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9697, - "hostname": "us9697.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8248, + "hostname": "us8248.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "185.211.32.1" + "212.102.47.35" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9860, - "hostname": "us9860.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8249, + "hostname": "us8249.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.1" + "212.102.47.38" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9860, - "hostname": "us9860.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8249, + "hostname": "us8249.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.1" + "212.102.47.38" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9861, - "hostname": "us9861.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8250, + "hostname": "us8250.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.3" + "212.102.47.41" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9861, - "hostname": "us9861.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8250, + "hostname": "us8250.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.3" + "212.102.47.41" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9862, - "hostname": "us9862.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8251, + "hostname": "us8251.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.5" + "212.102.47.44" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9862, - "hostname": "us9862.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8251, + "hostname": "us8251.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.5" + "212.102.47.44" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9863, - "hostname": "us9863.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8252, + "hostname": "us8252.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.7" + "212.102.47.47" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9863, - "hostname": "us9863.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8252, + "hostname": "us8252.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.7" + "212.102.47.47" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9864, - "hostname": "us9864.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8253, + "hostname": "us8253.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.9" + "212.102.47.50" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9864, - "hostname": "us9864.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8253, + "hostname": "us8253.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.9" + "212.102.47.50" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9865, - "hostname": "us9865.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8254, + "hostname": "us8254.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.11" + "212.102.47.53" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9865, - "hostname": "us9865.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8254, + "hostname": "us8254.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.11" + "212.102.47.53" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9866, - "hostname": "us9866.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8255, + "hostname": "us8255.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.13" + "212.102.47.56" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9866, - "hostname": "us9866.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8255, + "hostname": "us8255.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.13" + "212.102.47.56" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9867, - "hostname": "us9867.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8256, + "hostname": "us8256.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.15" + "212.102.47.59" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9867, - "hostname": "us9867.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8256, + "hostname": "us8256.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.15" + "212.102.47.59" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9868, - "hostname": "us9868.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8257, + "hostname": "us8257.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.17" + "212.102.47.62" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9868, - "hostname": "us9868.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8257, + "hostname": "us8257.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.17" + "212.102.47.62" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9869, - "hostname": "us9869.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8258, + "hostname": "us8258.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.19" + "212.102.47.65" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9869, - "hostname": "us9869.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8258, + "hostname": "us8258.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.19" + "212.102.47.65" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9870, - "hostname": "us9870.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8259, + "hostname": "us8259.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.21" + "212.102.47.68" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9870, - "hostname": "us9870.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8259, + "hostname": "us8259.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.21" + "212.102.47.68" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9871, - "hostname": "us9871.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8260, + "hostname": "us8260.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.23" + "212.102.47.71" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9871, - "hostname": "us9871.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8260, + "hostname": "us8260.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.23" + "212.102.47.71" ] }, { "vpn": "openvpn", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9872, - "hostname": "us9872.nordvpn.com", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8261, + "hostname": "us8261.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "194.195.93.25" + "212.102.47.74" ] }, { "vpn": "wireguard", "country": "United States", "region": "The Americas", - "city": "San Francisco", - "number": 9872, - "hostname": "us9872.nordvpn.com", - "wgpubkey": "1ITGPBdVH6mjSyndQw3F8ckOIMPi/Z6qNA+aO9gG7xQ=", + "city": "Seattle", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8261, + "hostname": "us8261.nordvpn.com", + "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "194.195.93.25" + "212.102.47.74" ] }, { @@ -178598,12 +243995,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5086, - "hostname": "us5086.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8262, + "hostname": "us8262.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.130" + "212.102.47.77" ] }, { @@ -178611,11 +244012,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5086, - "hostname": "us5086.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8262, + "hostname": "us8262.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.130" + "212.102.47.77" ] }, { @@ -178623,12 +244028,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5087, - "hostname": "us5087.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8263, + "hostname": "us8263.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.135" + "212.102.47.80" ] }, { @@ -178636,11 +244045,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5087, - "hostname": "us5087.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8263, + "hostname": "us8263.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.135" + "212.102.47.80" ] }, { @@ -178648,12 +244061,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5088, - "hostname": "us5088.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8264, + "hostname": "us8264.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.140" + "212.102.47.83" ] }, { @@ -178661,11 +244078,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5088, - "hostname": "us5088.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8264, + "hostname": "us8264.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.140" + "212.102.47.83" ] }, { @@ -178673,12 +244094,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5089, - "hostname": "us5089.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8265, + "hostname": "us8265.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.145" + "212.102.47.86" ] }, { @@ -178686,11 +244111,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5089, - "hostname": "us5089.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8265, + "hostname": "us8265.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.145" + "212.102.47.86" ] }, { @@ -178698,12 +244127,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5090, - "hostname": "us5090.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8266, + "hostname": "us8266.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.150" + "212.102.47.89" ] }, { @@ -178711,11 +244144,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5090, - "hostname": "us5090.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8266, + "hostname": "us8266.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.150" + "212.102.47.89" ] }, { @@ -178723,12 +244160,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5091, - "hostname": "us5091.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8267, + "hostname": "us8267.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.155" + "212.102.47.92" ] }, { @@ -178736,11 +244177,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5091, - "hostname": "us5091.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8267, + "hostname": "us8267.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.155" + "212.102.47.92" ] }, { @@ -178748,12 +244193,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5092, - "hostname": "us5092.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8268, + "hostname": "us8268.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.160" + "212.102.47.95" ] }, { @@ -178761,11 +244210,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5092, - "hostname": "us5092.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8268, + "hostname": "us8268.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.160" + "212.102.47.95" ] }, { @@ -178773,12 +244226,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5093, - "hostname": "us5093.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8269, + "hostname": "us8269.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.165" + "212.102.47.98" ] }, { @@ -178786,11 +244243,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5093, - "hostname": "us5093.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8269, + "hostname": "us8269.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.165" + "212.102.47.98" ] }, { @@ -178798,12 +244259,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5094, - "hostname": "us5094.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8270, + "hostname": "us8270.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.170" + "212.102.47.101" ] }, { @@ -178811,11 +244276,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5094, - "hostname": "us5094.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8270, + "hostname": "us8270.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.170" + "212.102.47.101" ] }, { @@ -178823,12 +244292,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5095, - "hostname": "us5095.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8271, + "hostname": "us8271.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.175" + "212.102.47.104" ] }, { @@ -178836,11 +244309,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 5095, - "hostname": "us5095.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8271, + "hostname": "us8271.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.175" + "212.102.47.104" ] }, { @@ -178848,12 +244325,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8237, - "hostname": "us8237.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8272, + "hostname": "us8272.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.2" + "212.102.47.107" ] }, { @@ -178861,11 +244342,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8237, - "hostname": "us8237.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8272, + "hostname": "us8272.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.2" + "212.102.47.107" ] }, { @@ -178873,12 +244358,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8238, - "hostname": "us8238.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8273, + "hostname": "us8273.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.5" + "212.102.47.110" ] }, { @@ -178886,11 +244375,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8238, - "hostname": "us8238.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8273, + "hostname": "us8273.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.5" + "212.102.47.110" ] }, { @@ -178898,12 +244391,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8239, - "hostname": "us8239.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8274, + "hostname": "us8274.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.8" + "212.102.47.113" ] }, { @@ -178911,11 +244408,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8239, - "hostname": "us8239.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8274, + "hostname": "us8274.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.8" + "212.102.47.113" ] }, { @@ -178923,12 +244424,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8240, - "hostname": "us8240.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8275, + "hostname": "us8275.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.11" + "212.102.47.116" ] }, { @@ -178936,11 +244441,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8240, - "hostname": "us8240.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8275, + "hostname": "us8275.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.11" + "212.102.47.116" ] }, { @@ -178948,12 +244457,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8241, - "hostname": "us8241.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8276, + "hostname": "us8276.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.14" + "212.102.47.119" ] }, { @@ -178961,11 +244474,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8241, - "hostname": "us8241.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8276, + "hostname": "us8276.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.14" + "212.102.47.119" ] }, { @@ -178973,12 +244490,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8242, - "hostname": "us8242.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8277, + "hostname": "us8277.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.17" + "212.102.47.122" ] }, { @@ -178986,11 +244507,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8242, - "hostname": "us8242.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8277, + "hostname": "us8277.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.17" + "212.102.47.122" ] }, { @@ -178998,12 +244523,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8243, - "hostname": "us8243.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8278, + "hostname": "us8278.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.20" + "212.102.46.18" ] }, { @@ -179011,11 +244540,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8243, - "hostname": "us8243.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8278, + "hostname": "us8278.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.20" + "212.102.46.18" ] }, { @@ -179023,12 +244556,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8244, - "hostname": "us8244.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8279, + "hostname": "us8279.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.23" + "212.102.46.21" ] }, { @@ -179036,11 +244573,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8244, - "hostname": "us8244.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8279, + "hostname": "us8279.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.23" + "212.102.46.21" ] }, { @@ -179048,12 +244589,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8245, - "hostname": "us8245.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8280, + "hostname": "us8280.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.26" + "212.102.46.24" ] }, { @@ -179061,11 +244606,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8245, - "hostname": "us8245.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8280, + "hostname": "us8280.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.26" + "212.102.46.24" ] }, { @@ -179073,12 +244622,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8246, - "hostname": "us8246.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8281, + "hostname": "us8281.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.29" + "212.102.46.26" ] }, { @@ -179086,11 +244639,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8246, - "hostname": "us8246.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 8281, + "hostname": "us8281.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.29" + "212.102.46.26" ] }, { @@ -179098,12 +244655,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8247, - "hostname": "us8247.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9506, + "hostname": "us9506.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.32" + "156.146.51.98" ] }, { @@ -179111,11 +244672,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8247, - "hostname": "us8247.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9506, + "hostname": "us9506.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.32" + "156.146.51.98" ] }, { @@ -179123,12 +244688,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8248, - "hostname": "us8248.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9507, + "hostname": "us9507.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.35" + "156.146.51.104" ] }, { @@ -179136,11 +244705,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8248, - "hostname": "us8248.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9507, + "hostname": "us9507.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.35" + "156.146.51.104" ] }, { @@ -179148,12 +244721,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8249, - "hostname": "us8249.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9508, + "hostname": "us9508.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.38" + "84.17.41.182" ] }, { @@ -179161,11 +244738,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8249, - "hostname": "us8249.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9508, + "hostname": "us9508.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.38" + "84.17.41.182" ] }, { @@ -179173,12 +244754,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8250, - "hostname": "us8250.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9944, + "hostname": "us9944.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.41" + "193.29.61.6" ] }, { @@ -179186,11 +244771,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8250, - "hostname": "us8250.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9944, + "hostname": "us9944.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.41" + "193.29.61.6" ] }, { @@ -179198,12 +244787,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8251, - "hostname": "us8251.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9945, + "hostname": "us9945.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.44" + "193.29.61.8" ] }, { @@ -179211,11 +244804,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8251, - "hostname": "us8251.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9945, + "hostname": "us9945.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.44" + "193.29.61.8" ] }, { @@ -179223,12 +244820,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8252, - "hostname": "us8252.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9946, + "hostname": "us9946.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.47" + "193.29.61.10" ] }, { @@ -179236,11 +244837,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8252, - "hostname": "us8252.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9946, + "hostname": "us9946.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.47" + "193.29.61.10" ] }, { @@ -179248,12 +244853,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8253, - "hostname": "us8253.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9947, + "hostname": "us9947.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.50" + "193.29.61.12" ] }, { @@ -179261,11 +244870,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8253, - "hostname": "us8253.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9947, + "hostname": "us9947.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.50" + "193.29.61.12" ] }, { @@ -179273,12 +244886,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8254, - "hostname": "us8254.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9948, + "hostname": "us9948.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.53" + "193.29.61.14" ] }, { @@ -179286,11 +244903,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8254, - "hostname": "us8254.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9948, + "hostname": "us9948.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.53" + "193.29.61.14" ] }, { @@ -179298,12 +244919,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8255, - "hostname": "us8255.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9949, + "hostname": "us9949.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.56" + "193.29.61.16" ] }, { @@ -179311,11 +244936,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8255, - "hostname": "us8255.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9949, + "hostname": "us9949.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.56" + "193.29.61.16" ] }, { @@ -179323,12 +244952,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8256, - "hostname": "us8256.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9950, + "hostname": "us9950.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.59" + "193.29.61.18" ] }, { @@ -179336,11 +244969,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8256, - "hostname": "us8256.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9950, + "hostname": "us9950.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.59" + "193.29.61.18" ] }, { @@ -179348,12 +244985,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8257, - "hostname": "us8257.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9951, + "hostname": "us9951.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.62" + "193.29.61.20" ] }, { @@ -179361,11 +245002,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8257, - "hostname": "us8257.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9951, + "hostname": "us9951.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.62" + "193.29.61.20" ] }, { @@ -179373,12 +245018,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8258, - "hostname": "us8258.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9952, + "hostname": "us9952.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.65" + "193.29.61.22" ] }, { @@ -179386,11 +245035,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8258, - "hostname": "us8258.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9952, + "hostname": "us9952.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.65" + "193.29.61.22" ] }, { @@ -179398,12 +245051,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8259, - "hostname": "us8259.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9953, + "hostname": "us9953.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.68" + "193.29.61.24" ] }, { @@ -179411,11 +245068,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8259, - "hostname": "us8259.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9953, + "hostname": "us9953.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.68" + "193.29.61.24" ] }, { @@ -179423,12 +245084,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8260, - "hostname": "us8260.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9954, + "hostname": "us9954.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.71" + "193.29.61.26" ] }, { @@ -179436,11 +245101,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8260, - "hostname": "us8260.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9954, + "hostname": "us9954.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.71" + "193.29.61.26" ] }, { @@ -179448,12 +245117,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8261, - "hostname": "us8261.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9955, + "hostname": "us9955.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.74" + "193.29.61.28" ] }, { @@ -179461,11 +245134,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8261, - "hostname": "us8261.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9955, + "hostname": "us9955.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.74" + "193.29.61.28" ] }, { @@ -179473,12 +245150,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8262, - "hostname": "us8262.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9956, + "hostname": "us9956.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.77" + "193.29.61.30" ] }, { @@ -179486,11 +245167,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8262, - "hostname": "us8262.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9956, + "hostname": "us9956.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.77" + "193.29.61.30" ] }, { @@ -179498,12 +245183,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8263, - "hostname": "us8263.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9957, + "hostname": "us9957.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.80" + "193.29.61.32" ] }, { @@ -179511,11 +245200,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8263, - "hostname": "us8263.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9957, + "hostname": "us9957.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.80" + "193.29.61.32" ] }, { @@ -179523,12 +245216,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8264, - "hostname": "us8264.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9958, + "hostname": "us9958.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.83" + "193.29.61.34" ] }, { @@ -179536,11 +245233,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8264, - "hostname": "us8264.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9958, + "hostname": "us9958.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.83" + "193.29.61.34" ] }, { @@ -179548,12 +245249,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8265, - "hostname": "us8265.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9959, + "hostname": "us9959.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.86" + "193.29.61.36" ] }, { @@ -179561,11 +245266,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8265, - "hostname": "us8265.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9959, + "hostname": "us9959.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.86" + "193.29.61.36" ] }, { @@ -179573,12 +245282,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8266, - "hostname": "us8266.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9960, + "hostname": "us9960.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.89" + "193.29.61.38" ] }, { @@ -179586,11 +245299,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8266, - "hostname": "us8266.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9960, + "hostname": "us9960.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.89" + "193.29.61.38" ] }, { @@ -179598,12 +245315,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8267, - "hostname": "us8267.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9961, + "hostname": "us9961.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.92" + "193.29.61.40" ] }, { @@ -179611,11 +245332,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8267, - "hostname": "us8267.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9961, + "hostname": "us9961.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.92" + "193.29.61.40" ] }, { @@ -179623,12 +245348,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8268, - "hostname": "us8268.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9962, + "hostname": "us9962.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.95" + "193.29.61.42" ] }, { @@ -179636,11 +245365,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8268, - "hostname": "us8268.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9962, + "hostname": "us9962.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.95" + "193.29.61.42" ] }, { @@ -179648,12 +245381,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8269, - "hostname": "us8269.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9963, + "hostname": "us9963.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.98" + "193.29.61.44" ] }, { @@ -179661,11 +245398,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8269, - "hostname": "us8269.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9963, + "hostname": "us9963.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.98" + "193.29.61.44" ] }, { @@ -179673,12 +245414,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8270, - "hostname": "us8270.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9964, + "hostname": "us9964.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.101" + "193.29.61.46" ] }, { @@ -179686,11 +245431,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8270, - "hostname": "us8270.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9964, + "hostname": "us9964.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.101" + "193.29.61.46" ] }, { @@ -179698,12 +245447,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8271, - "hostname": "us8271.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9965, + "hostname": "us9965.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.104" + "193.29.61.48" ] }, { @@ -179711,11 +245464,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8271, - "hostname": "us8271.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9965, + "hostname": "us9965.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.104" + "193.29.61.48" ] }, { @@ -179723,12 +245480,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8272, - "hostname": "us8272.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9966, + "hostname": "us9966.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.107" + "193.29.61.50" ] }, { @@ -179736,11 +245497,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8272, - "hostname": "us8272.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9966, + "hostname": "us9966.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.107" + "193.29.61.50" ] }, { @@ -179748,12 +245513,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8273, - "hostname": "us8273.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9967, + "hostname": "us9967.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.110" + "193.29.61.52" ] }, { @@ -179761,11 +245530,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8273, - "hostname": "us8273.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9967, + "hostname": "us9967.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.110" + "193.29.61.52" ] }, { @@ -179773,12 +245546,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8274, - "hostname": "us8274.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9968, + "hostname": "us9968.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.113" + "193.29.61.54" ] }, { @@ -179786,11 +245563,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8274, - "hostname": "us8274.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9968, + "hostname": "us9968.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.113" + "193.29.61.54" ] }, { @@ -179798,12 +245579,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8275, - "hostname": "us8275.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9969, + "hostname": "us9969.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.116" + "193.29.61.56" ] }, { @@ -179811,11 +245596,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8275, - "hostname": "us8275.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9969, + "hostname": "us9969.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.116" + "193.29.61.56" ] }, { @@ -179823,12 +245612,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8276, - "hostname": "us8276.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9970, + "hostname": "us9970.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.119" + "193.29.61.58" ] }, { @@ -179836,11 +245629,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8276, - "hostname": "us8276.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9970, + "hostname": "us9970.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.119" + "193.29.61.58" ] }, { @@ -179848,12 +245645,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8277, - "hostname": "us8277.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9971, + "hostname": "us9971.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.47.122" + "193.29.61.60" ] }, { @@ -179861,11 +245662,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8277, - "hostname": "us8277.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9971, + "hostname": "us9971.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.47.122" + "193.29.61.60" ] }, { @@ -179873,12 +245678,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8278, - "hostname": "us8278.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9972, + "hostname": "us9972.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.46.18" + "193.29.61.62" ] }, { @@ -179886,11 +245695,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8278, - "hostname": "us8278.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9972, + "hostname": "us9972.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.46.18" + "193.29.61.62" ] }, { @@ -179898,12 +245711,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8279, - "hostname": "us8279.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9973, + "hostname": "us9973.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.46.21" + "193.29.61.64" ] }, { @@ -179911,11 +245728,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8279, - "hostname": "us8279.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9973, + "hostname": "us9973.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.46.21" + "193.29.61.64" ] }, { @@ -179923,12 +245744,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8280, - "hostname": "us8280.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9974, + "hostname": "us9974.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.46.24" + "193.29.61.66" ] }, { @@ -179936,11 +245761,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8280, - "hostname": "us8280.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9974, + "hostname": "us9974.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.46.24" + "193.29.61.66" ] }, { @@ -179948,12 +245777,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8281, - "hostname": "us8281.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9975, + "hostname": "us9975.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "212.102.46.26" + "193.29.61.68" ] }, { @@ -179961,11 +245794,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 8281, - "hostname": "us8281.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9975, + "hostname": "us9975.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "212.102.46.26" + "193.29.61.68" ] }, { @@ -179973,12 +245810,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9506, - "hostname": "us9506.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9976, + "hostname": "us9976.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.51.98" + "193.29.61.70" ] }, { @@ -179986,11 +245827,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9506, - "hostname": "us9506.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9976, + "hostname": "us9976.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "156.146.51.98" + "193.29.61.70" ] }, { @@ -179998,12 +245843,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9507, - "hostname": "us9507.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9977, + "hostname": "us9977.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "156.146.51.104" + "193.29.61.72" ] }, { @@ -180011,11 +245860,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9507, - "hostname": "us9507.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9977, + "hostname": "us9977.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "156.146.51.104" + "193.29.61.72" ] }, { @@ -180023,12 +245876,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9508, - "hostname": "us9508.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9978, + "hostname": "us9978.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "84.17.41.182" + "193.29.61.74" ] }, { @@ -180036,11 +245893,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9508, - "hostname": "us9508.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9978, + "hostname": "us9978.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "84.17.41.182" + "193.29.61.74" ] }, { @@ -180048,12 +245909,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9944, - "hostname": "us9944.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9979, + "hostname": "us9979.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.6" + "193.29.61.76" ] }, { @@ -180061,11 +245926,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9944, - "hostname": "us9944.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9979, + "hostname": "us9979.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.6" + "193.29.61.76" ] }, { @@ -180073,12 +245942,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9945, - "hostname": "us9945.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9980, + "hostname": "us9980.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.8" + "193.29.61.78" ] }, { @@ -180086,11 +245959,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9945, - "hostname": "us9945.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9980, + "hostname": "us9980.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.8" + "193.29.61.78" ] }, { @@ -180098,12 +245975,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9946, - "hostname": "us9946.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9981, + "hostname": "us9981.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.10" + "193.29.61.80" ] }, { @@ -180111,11 +245992,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9946, - "hostname": "us9946.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9981, + "hostname": "us9981.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.10" + "193.29.61.80" ] }, { @@ -180123,12 +246008,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9947, - "hostname": "us9947.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9982, + "hostname": "us9982.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.12" + "193.29.61.82" ] }, { @@ -180136,11 +246025,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9947, - "hostname": "us9947.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9982, + "hostname": "us9982.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.12" + "193.29.61.82" ] }, { @@ -180148,12 +246041,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9948, - "hostname": "us9948.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9983, + "hostname": "us9983.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.14" + "193.29.61.84" ] }, { @@ -180161,11 +246058,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9948, - "hostname": "us9948.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9983, + "hostname": "us9983.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.14" + "193.29.61.84" ] }, { @@ -180173,12 +246074,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9949, - "hostname": "us9949.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9984, + "hostname": "us9984.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.16" + "193.29.61.86" ] }, { @@ -180186,11 +246091,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9949, - "hostname": "us9949.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9984, + "hostname": "us9984.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.16" + "193.29.61.86" ] }, { @@ -180198,12 +246107,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9950, - "hostname": "us9950.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9985, + "hostname": "us9985.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.18" + "193.29.61.88" ] }, { @@ -180211,11 +246124,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9950, - "hostname": "us9950.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9985, + "hostname": "us9985.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.18" + "193.29.61.88" ] }, { @@ -180223,12 +246140,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9951, - "hostname": "us9951.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9986, + "hostname": "us9986.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.20" + "193.29.61.90" ] }, { @@ -180236,11 +246157,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9951, - "hostname": "us9951.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9986, + "hostname": "us9986.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.20" + "193.29.61.90" ] }, { @@ -180248,12 +246173,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9952, - "hostname": "us9952.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9987, + "hostname": "us9987.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.22" + "193.29.61.92" ] }, { @@ -180261,11 +246190,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9952, - "hostname": "us9952.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9987, + "hostname": "us9987.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.22" + "193.29.61.92" ] }, { @@ -180273,12 +246206,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9953, - "hostname": "us9953.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9988, + "hostname": "us9988.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.24" + "193.29.61.94" ] }, { @@ -180286,11 +246223,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9953, - "hostname": "us9953.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9988, + "hostname": "us9988.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.24" + "193.29.61.94" ] }, { @@ -180298,12 +246239,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9954, - "hostname": "us9954.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9989, + "hostname": "us9989.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.26" + "193.29.61.96" ] }, { @@ -180311,11 +246256,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9954, - "hostname": "us9954.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9989, + "hostname": "us9989.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.26" + "193.29.61.96" ] }, { @@ -180323,12 +246272,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9955, - "hostname": "us9955.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9990, + "hostname": "us9990.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.28" + "193.29.61.98" ] }, { @@ -180336,11 +246289,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9955, - "hostname": "us9955.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9990, + "hostname": "us9990.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.28" + "193.29.61.98" ] }, { @@ -180348,12 +246305,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9956, - "hostname": "us9956.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9991, + "hostname": "us9991.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.30" + "193.29.61.100" ] }, { @@ -180361,11 +246322,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9956, - "hostname": "us9956.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9991, + "hostname": "us9991.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.30" + "193.29.61.100" ] }, { @@ -180373,12 +246338,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9957, - "hostname": "us9957.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9992, + "hostname": "us9992.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.32" + "193.29.61.158" ] }, { @@ -180386,11 +246355,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9957, - "hostname": "us9957.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9992, + "hostname": "us9992.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.32" + "193.29.61.158" ] }, { @@ -180398,12 +246371,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9958, - "hostname": "us9958.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9993, + "hostname": "us9993.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.34" + "193.29.61.160" ] }, { @@ -180411,11 +246388,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9958, - "hostname": "us9958.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9993, + "hostname": "us9993.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.34" + "193.29.61.160" ] }, { @@ -180423,12 +246404,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9959, - "hostname": "us9959.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9994, + "hostname": "us9994.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.36" + "193.29.61.162" ] }, { @@ -180436,11 +246421,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9959, - "hostname": "us9959.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9994, + "hostname": "us9994.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.36" + "193.29.61.162" ] }, { @@ -180448,12 +246437,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9960, - "hostname": "us9960.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9995, + "hostname": "us9995.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.38" + "193.29.61.164" ] }, { @@ -180461,11 +246454,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9960, - "hostname": "us9960.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9995, + "hostname": "us9995.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.38" + "193.29.61.164" ] }, { @@ -180473,12 +246470,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9961, - "hostname": "us9961.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9996, + "hostname": "us9996.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.40" + "193.29.61.166" ] }, { @@ -180486,11 +246487,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9961, - "hostname": "us9961.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9996, + "hostname": "us9996.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.40" + "193.29.61.166" ] }, { @@ -180498,12 +246503,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9962, - "hostname": "us9962.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9997, + "hostname": "us9997.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.42" + "193.29.61.168" ] }, { @@ -180511,11 +246520,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9962, - "hostname": "us9962.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9997, + "hostname": "us9997.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.42" + "193.29.61.168" ] }, { @@ -180523,12 +246536,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9963, - "hostname": "us9963.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9998, + "hostname": "us9998.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.44" + "193.29.61.170" ] }, { @@ -180536,11 +246553,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9963, - "hostname": "us9963.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9998, + "hostname": "us9998.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.44" + "193.29.61.170" ] }, { @@ -180548,12 +246569,16 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9964, - "hostname": "us9964.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9999, + "hostname": "us9999.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.46" + "193.29.61.172" ] }, { @@ -180561,11 +246586,15 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9964, - "hostname": "us9964.nordvpn.com", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 9999, + "hostname": "us9999.nordvpn.com", "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", "ips": [ - "193.29.61.46" + "193.29.61.172" ] }, { @@ -180573,24 +246602,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9965, - "hostname": "us9965.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10287, + "hostname": "us10287.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.48" + "156.146.51.120" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9965, - "hostname": "us9965.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10288, + "hostname": "us10288.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.48" + "156.146.51.122" ] }, { @@ -180598,24 +246634,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9966, - "hostname": "us9966.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10289, + "hostname": "us10289.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.50" + "156.146.51.115" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9966, - "hostname": "us9966.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10290, + "hostname": "us10290.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.50" + "156.146.51.117" ] }, { @@ -180623,24 +246666,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9967, - "hostname": "us9967.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10309, + "hostname": "us10309.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.52" + "149.40.51.98" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9967, - "hostname": "us9967.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10310, + "hostname": "us10310.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.52" + "149.40.51.100" ] }, { @@ -180648,24 +246698,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9968, - "hostname": "us9968.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10311, + "hostname": "us10311.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.54" + "149.40.51.103" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9968, - "hostname": "us9968.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10312, + "hostname": "us10312.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.54" + "149.40.51.105" ] }, { @@ -180673,24 +246730,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9969, - "hostname": "us9969.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10438, + "hostname": "us10438.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.56" + "149.40.51.112" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9969, - "hostname": "us9969.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10439, + "hostname": "us10439.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.56" + "149.40.51.114" ] }, { @@ -180698,24 +246762,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9970, - "hostname": "us9970.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10484, + "hostname": "us10484.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.58" + "149.40.51.117" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9970, - "hostname": "us9970.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10485, + "hostname": "us10485.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.58" + "149.40.51.119" ] }, { @@ -180723,24 +246794,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9971, - "hostname": "us9971.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10486, + "hostname": "us10486.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.60" + "149.40.51.130" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9971, - "hostname": "us9971.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10487, + "hostname": "us10487.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.60" + "149.40.51.132" ] }, { @@ -180748,24 +246826,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9972, - "hostname": "us9972.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10498, + "hostname": "us10498.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.62" + "149.40.51.135" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9972, - "hostname": "us9972.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10499, + "hostname": "us10499.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.62" + "149.40.51.137" ] }, { @@ -180773,24 +246858,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9973, - "hostname": "us9973.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10544, + "hostname": "us10544.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.64" + "149.40.51.150" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9973, - "hostname": "us9973.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10545, + "hostname": "us10545.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.64" + "149.40.51.152" ] }, { @@ -180798,24 +246890,31 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9974, - "hostname": "us9974.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10546, + "hostname": "us10546.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.66" + "149.40.51.145" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9974, - "hostname": "us9974.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10547, + "hostname": "us10547.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.66" + "149.40.51.147" ] }, { @@ -180823,174 +246922,229 @@ "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9975, - "hostname": "us9975.nordvpn.com", + "categories": [ + "Dedicated IP" + ], + "number": 10548, + "hostname": "us10548.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.68" + "149.40.51.140" ] }, { - "vpn": "wireguard", + "vpn": "openvpn", "country": "United States", "region": "The Americas", "city": "Seattle", - "number": 9975, - "hostname": "us9975.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "categories": [ + "Dedicated IP" + ], + "number": 10549, + "hostname": "us10549.nordvpn.com", + "tcp": true, + "udp": true, "ips": [ - "193.29.61.68" + "149.40.51.142" ] }, { "vpn": "openvpn", - "country": "United States", + "country": "Uruguay", "region": "The Americas", - "city": "Seattle", - "number": 9976, - "hostname": "us9976.nordvpn.com", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uy1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.70" + "82.149.79.1" ] }, { "vpn": "wireguard", - "country": "United States", + "country": "Uruguay", "region": "The Americas", - "city": "Seattle", - "number": 9976, - "hostname": "us9976.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uy1.nordvpn.com", + "wgpubkey": "pyUtwcGCa2R1qJYDnXRfVdRi1DFsX+RbPr16x0QrbVc=", "ips": [ - "193.29.61.70" + "82.149.79.1" ] }, { "vpn": "openvpn", - "country": "United States", + "country": "Uruguay", "region": "The Americas", - "city": "Seattle", - "number": 9977, - "hostname": "us9977.nordvpn.com", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uy2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.72" + "82.149.79.3" ] }, { "vpn": "wireguard", - "country": "United States", + "country": "Uruguay", "region": "The Americas", - "city": "Seattle", - "number": 9977, - "hostname": "us9977.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "city": "Montevideo", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uy2.nordvpn.com", + "wgpubkey": "pyUtwcGCa2R1qJYDnXRfVdRi1DFsX+RbPr16x0QrbVc=", "ips": [ - "193.29.61.72" + "82.149.79.3" ] }, { "vpn": "openvpn", - "country": "United States", - "region": "The Americas", - "city": "Seattle", - "number": 9978, - "hostname": "us9978.nordvpn.com", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uz1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.74" + "212.97.64.1" ] }, { "vpn": "wireguard", - "country": "United States", - "region": "The Americas", - "city": "Seattle", - "number": 9978, - "hostname": "us9978.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "uz1.nordvpn.com", + "wgpubkey": "lh6oyQPYNvc/dICj3KHOMJeiGk/h69vScWxlcW+NyVU=", "ips": [ - "193.29.61.74" + "212.97.64.1" ] }, { "vpn": "openvpn", - "country": "United States", - "region": "The Americas", - "city": "Seattle", - "number": 9979, - "hostname": "us9979.nordvpn.com", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uz2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.76" + "212.97.64.3" ] }, { "vpn": "wireguard", - "country": "United States", - "region": "The Americas", - "city": "Seattle", - "number": 9979, - "hostname": "us9979.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "country": "Uzbekistan", + "region": "Asia Pacific", + "city": "Tashkent", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "uz2.nordvpn.com", + "wgpubkey": "lh6oyQPYNvc/dICj3KHOMJeiGk/h69vScWxlcW+NyVU=", "ips": [ - "193.29.61.76" + "212.97.64.3" ] }, { "vpn": "openvpn", - "country": "United States", + "country": "Venezuela", "region": "The Americas", - "city": "Seattle", - "number": 9980, - "hostname": "us9980.nordvpn.com", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ve1.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.78" + "212.97.65.1" ] }, { "vpn": "wireguard", - "country": "United States", + "country": "Venezuela", "region": "The Americas", - "city": "Seattle", - "number": 9980, - "hostname": "us9980.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 1, + "hostname": "ve1.nordvpn.com", + "wgpubkey": "DtmFm2hN5+BliHymepvSfqg+xiiMnySKv2Nndu0ZCA0=", "ips": [ - "193.29.61.78" + "212.97.65.1" ] }, { "vpn": "openvpn", - "country": "United States", + "country": "Venezuela", "region": "The Americas", - "city": "Seattle", - "number": 9981, - "hostname": "us9981.nordvpn.com", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ve2.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "193.29.61.80" + "212.97.65.3" ] }, { "vpn": "wireguard", - "country": "United States", + "country": "Venezuela", "region": "The Americas", - "city": "Seattle", - "number": 9981, - "hostname": "us9981.nordvpn.com", - "wgpubkey": "1GaNB9RbeGNzekcuRDcxTXvqtXWFe2K9GtUd+EjNuyI=", + "city": "Caracas", + "categories": [ + "Standard VPN servers", + "P2P" + ], + "number": 2, + "hostname": "ve2.nordvpn.com", + "wgpubkey": "DtmFm2hN5+BliHymepvSfqg+xiiMnySKv2Nndu0ZCA0=", "ips": [ - "193.29.61.80" + "212.97.65.3" ] }, { @@ -180998,10 +247152,12 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 18, "hostname": "vn18.nordvpn.com", "tcp": true, - "udp": true, "ips": [ "125.212.220.51" ] @@ -181011,6 +247167,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 18, "hostname": "vn18.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", @@ -181023,6 +247182,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 19, "hostname": "vn19.nordvpn.com", "tcp": true, @@ -181036,6 +247198,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 19, "hostname": "vn19.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", @@ -181048,6 +247213,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 20, "hostname": "vn20.nordvpn.com", "tcp": true, @@ -181061,6 +247229,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 20, "hostname": "vn20.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", @@ -181073,10 +247244,12 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 21, "hostname": "vn21.nordvpn.com", "tcp": true, - "udp": true, "ips": [ "125.212.220.6" ] @@ -181086,6 +247259,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 21, "hostname": "vn21.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", @@ -181098,6 +247274,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 22, "hostname": "vn22.nordvpn.com", "tcp": true, @@ -181111,6 +247290,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 22, "hostname": "vn22.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", @@ -181123,6 +247305,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 27, "hostname": "vn27.nordvpn.com", "tcp": true, @@ -181136,6 +247321,9 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], "number": 27, "hostname": "vn27.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", @@ -181148,12 +247336,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 28, - "hostname": "vn28.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 33, + "hostname": "vn33.nordvpn.com", "tcp": true, - "udp": true, "ips": [ - "103.9.76.189" + "125.212.241.132" ] }, { @@ -181161,11 +247351,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 28, - "hostname": "vn28.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 33, + "hostname": "vn33.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", "ips": [ - "103.9.76.189" + "125.212.241.132" ] }, { @@ -181173,12 +247366,15 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 29, - "hostname": "vn29.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "vn34.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.9.76.192" + "125.212.241.148" ] }, { @@ -181186,11 +247382,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 29, - "hostname": "vn29.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 34, + "hostname": "vn34.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", "ips": [ - "103.9.76.192" + "125.212.241.148" ] }, { @@ -181198,12 +247397,45 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 30, - "hostname": "vn30.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "vn35.nordvpn.com", + "tcp": true, + "ips": [ + "125.212.217.243" + ] + }, + { + "vpn": "wireguard", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 35, + "hostname": "vn35.nordvpn.com", + "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", + "ips": [ + "125.212.217.243" + ] + }, + { + "vpn": "openvpn", + "country": "Vietnam", + "region": "Asia Pacific", + "city": "Hanoi", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "vn36.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.9.76.205" + "125.212.217.212" ] }, { @@ -181211,11 +247443,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 30, - "hostname": "vn30.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 36, + "hostname": "vn36.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", "ips": [ - "103.9.76.205" + "125.212.217.212" ] }, { @@ -181223,12 +247458,15 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 31, - "hostname": "vn31.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "vn37.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.9.76.219" + "103.163.218.43" ] }, { @@ -181236,11 +247474,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 31, - "hostname": "vn31.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 37, + "hostname": "vn37.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", "ips": [ - "103.9.76.219" + "103.163.218.43" ] }, { @@ -181248,12 +247489,15 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 32, - "hostname": "vn32.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "vn38.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "103.9.76.222" + "103.163.218.121" ] }, { @@ -181261,11 +247505,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 32, - "hostname": "vn32.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 38, + "hostname": "vn38.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", "ips": [ - "103.9.76.222" + "103.163.218.121" ] }, { @@ -181273,12 +247520,15 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 33, - "hostname": "vn33.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "vn39.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "125.212.241.132" + "103.163.218.48" ] }, { @@ -181286,11 +247536,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 33, - "hostname": "vn33.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 39, + "hostname": "vn39.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", "ips": [ - "125.212.241.132" + "103.163.218.48" ] }, { @@ -181298,12 +247551,15 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 34, - "hostname": "vn34.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "vn40.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "125.212.241.148" + "103.163.218.53" ] }, { @@ -181311,11 +247567,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 34, - "hostname": "vn34.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 40, + "hostname": "vn40.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", "ips": [ - "125.212.241.148" + "103.163.218.53" ] }, { @@ -181323,12 +247582,15 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 35, - "hostname": "vn35.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "vn41.nordvpn.com", "tcp": true, "udp": true, "ips": [ - "125.212.217.243" + "103.163.218.58" ] }, { @@ -181336,11 +247598,14 @@ "country": "Vietnam", "region": "Asia Pacific", "city": "Hanoi", - "number": 35, - "hostname": "vn35.nordvpn.com", + "categories": [ + "Standard VPN servers" + ], + "number": 41, + "hostname": "vn41.nordvpn.com", "wgpubkey": "7tlYA3PdA5or5iw3VFJOwZrvhdT4FNSmXRk7SFd3/Bo=", "ips": [ - "125.212.217.243" + "103.163.218.58" ] } ]