From d312f07fa81eed6634fd9bba1615367504008ea0 Mon Sep 17 00:00:00 2001 From: sneak Date: Wed, 5 Jun 2024 00:24:36 -0700 Subject: [PATCH] initial --- cmd/mullvadclosest/main.go | 250 + cmd/mullvadclosest/relays.go | 128 + embed.json | 9 + relays.2024-06-04.json | 16336 +++++++++++++++++++++++++++++++++ 4 files changed, 16723 insertions(+) create mode 100644 cmd/mullvadclosest/main.go create mode 100644 cmd/mullvadclosest/relays.go create mode 100644 embed.json create mode 100644 relays.2024-06-04.json diff --git a/cmd/mullvadclosest/main.go b/cmd/mullvadclosest/main.go new file mode 100644 index 0000000..9ac2941 --- /dev/null +++ b/cmd/mullvadclosest/main.go @@ -0,0 +1,250 @@ +package main + +import ( + "encoding/json" + "fmt" + "io/ioutil" + "math" + "math/rand" + "net/http" + "os/user" + "sort" + "sync" + "time" + + "github.com/schollz/progressbar/v3" +) + +// RelayLatency holds a relay and its associated latency +type RelayLatency struct { + Relay Relay + Latency time.Duration +} + +// MullvadIPResponse represents the response from the Mullvad IP check API +type MullvadIPResponse struct { + IP string `json:"ip"` + Country string `json:"country"` + City string `json:"city"` + Longitude float64 `json:"longitude"` + Latitude float64 `json:"latitude"` + MullvadExitIP bool `json:"mullvad_exit_ip"` + MullvadExitIPHostname string `json:"mullvad_exit_ip_hostname,omitempty"` + MullvadServerType string `json:"mullvad_server_type,omitempty"` + Blacklisted struct { + Blacklisted bool `json:"blacklisted"` + Results []string `json:"results"` + } `json:"blacklisted"` + Organization string `json:"organization"` +} + +// worker function to process liveness checks +func livenessWorker(id int, jobs <-chan Relay, results chan<- RelayLatency, wg *sync.WaitGroup, bar *progressbar.ProgressBar) { + defer wg.Done() + for relay := range jobs { + isLive, latency, err := relay.CheckLiveness() + if err == nil && isLive { + results <- RelayLatency{Relay: relay, Latency: latency} + } + bar.Add(1) + } +} + +// worker function to process latency checks +func latencyWorker(id int, jobs <-chan RelayLatency, results chan<- RelayLatency, wg *sync.WaitGroup, bar *progressbar.ProgressBar) { + defer wg.Done() + for relayLatency := range jobs { + latency, err := relayLatency.Relay.MeasureLatency() + if err == nil { + results <- RelayLatency{ + Relay: relayLatency.Relay, + Latency: latency, + } + } + bar.Add(1) + } +} + +// shuffle function to randomly shuffle a slice +func shuffle(relays []Relay) { + rand.Shuffle(len(relays), func(i, j int) { + relays[i], relays[j] = relays[j], relays[i] + }) +} + +func shuffleLatency(relays []RelayLatency) { + rand.Shuffle(len(relays), func(i, j int) { + relays[i], relays[j] = relays[j], relays[i] + }) +} + +// CollectRelayLatencies iterates over relays, pings them, and collects latencies +func CollectRelayLatencies(relays []Relay) []RelayLatency { + var wg sync.WaitGroup + livenessJobs := make(chan Relay, len(relays)) + livenessResults := make(chan RelayLatency, len(relays)) + bar := progressbar.Default(int64(len(relays)), "Checking liveness") + + // Start 20 workers for liveness checks + numLivenessWorkers := 20 + for w := 0; w < numLivenessWorkers; w++ { + wg.Add(1) + go livenessWorker(w, livenessJobs, livenessResults, &wg, bar) + } + + // Shuffle the relays before liveness checks + shuffle(relays) + + // Send relays to liveness jobs channel + for _, relay := range relays { + livenessJobs <- relay + } + close(livenessJobs) + + // Wait for all liveness workers to finish + wg.Wait() + close(livenessResults) + + // Collect live relays + var liveRelays []RelayLatency + for result := range livenessResults { + liveRelays = append(liveRelays, result) + } + + // Now measure latency for live relays + var relayLatencies []RelayLatency + latencyJobs := make(chan RelayLatency, len(liveRelays)) + latencyResults := make(chan RelayLatency, len(liveRelays)) + bar = progressbar.Default(int64(len(liveRelays)), "Measuring latency") + + // Start 30 workers for latency checks + numLatencyWorkers := 30 + for w := 0; w < numLatencyWorkers; w++ { + wg.Add(1) + go latencyWorker(w, latencyJobs, latencyResults, &wg, bar) + } + + // Shuffle the live relays before latency checks + shuffleLatency(liveRelays) + + // Send live relays to latency jobs channel + for _, liveRelay := range liveRelays { + latencyJobs <- liveRelay + } + close(latencyJobs) + + // Wait for all latency workers to finish + wg.Wait() + close(latencyResults) + + // Collect latency results + for result := range latencyResults { + relayLatencies = append(relayLatencies, result) + } + + return relayLatencies +} + +// PrintRelayLatencies prints the sorted list of relay latencies +func PrintRelayLatencies(relayLatencies []RelayLatency, totalRelays int, deadRelays int) { + sort.Slice(relayLatencies, func(i, j int) bool { + return relayLatencies[i].Latency < relayLatencies[j].Latency + }) + + if len(relayLatencies) > 0 { + minLatency := relayLatencies[0] + maxLatency := relayLatencies[len(relayLatencies)-1] + medianLatency := relayLatencies[len(relayLatencies)/2] + + var totalLatency time.Duration + for _, rl := range relayLatencies { + totalLatency += rl.Latency + } + meanLatency := totalLatency / time.Duration(len(relayLatencies)) + + var sumOfSquares time.Duration + for _, rl := range relayLatencies { + deviation := rl.Latency - meanLatency + sumOfSquares += deviation * deviation + } + stddevLatency := time.Duration(math.Sqrt(float64(sumOfSquares / time.Duration(len(relayLatencies))))) + + fmt.Printf("Total relays: %d\n", totalRelays) + fmt.Printf("Live relays: %d\n", len(relayLatencies)) + fmt.Printf("Dead relays: %d\n", deadRelays) + fmt.Printf("Min latency: %v (%s)\n", minLatency.Latency, minLatency.Relay.String()) + fmt.Printf("Max latency: %v (%s)\n", maxLatency.Latency, maxLatency.Relay.String()) + fmt.Printf("Median latency: %v (%s)\n", medianLatency.Latency, medianLatency.Relay.String()) + fmt.Printf("Mean latency: %v\n", meanLatency) + fmt.Printf("Stddev latency: %v\n", stddevLatency) + fmt.Println() + } + + fmt.Printf("%-20s %-20s %-30s %s\n", "Country", "City", "Hostname", "Latency") + for i, rl := range relayLatencies { + if i < 25 || i >= len(relayLatencies)-4 { + fmt.Printf("%-20s %-20s %-30s %v\n", + rl.Relay.Location.Country, + rl.Relay.Location.City, + rl.Relay.Hostname, + rl.Latency) + } + if i == 24 { + fmt.Println() + } + } +} + +// CheckMullvadExitIP checks if the current IP is a Mullvad exit IP +func CheckMullvadExitIP() (bool, error) { + resp, err := http.Get("https://ipv4.am.i.mullvad.net/json") + if err != nil { + return false, fmt.Errorf("failed to make GET request: %v", err) + } + defer resp.Body.Close() + + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + return false, fmt.Errorf("failed to read response body: %v", err) + } + + var mullvadResp MullvadIPResponse + if err := json.Unmarshal(body, &mullvadResp); err != nil { + return false, fmt.Errorf("failed to parse JSON response: %v", err) + } + + return mullvadResp.MullvadExitIP, nil +} + +func main() { + currentUser, err := user.Current() + if err != nil { + panic("Failed to get current user") + } + + if currentUser.Uid != "0" { + panic("This program must be run as root") + } + + isMullvadExitIP, err := CheckMullvadExitIP() + if err != nil { + panic(fmt.Sprintf("Error checking Mullvad exit IP: %v", err)) + } + + if isMullvadExitIP { + fmt.Println("This program is designed to test latency between your actual IP and the Mullvad VPN servers. Please disconnect from the VPN and run the program again.") + return + } + + relays, err := ParseRelayData() + if err != nil { + fmt.Printf("Error parsing relay data: %v\n", err) + return + } + + totalRelays := len(relays) + relayLatencies := CollectRelayLatencies(relays) + deadRelays := totalRelays - len(relayLatencies) + + PrintRelayLatencies(relayLatencies, totalRelays, deadRelays) +} diff --git a/cmd/mullvadclosest/relays.go b/cmd/mullvadclosest/relays.go new file mode 100644 index 0000000..2c4ace3 --- /dev/null +++ b/cmd/mullvadclosest/relays.go @@ -0,0 +1,128 @@ +package main + +import ( + "encoding/json" + "fmt" + "io/ioutil" + "os" + "time" + + "github.com/go-ping/ping" + "sneak.berlin/go/mullvadclosest" +) + +// Relay represents the structure of each relay in the JSON file +type Relay struct { + Hostname string `json:"hostname"` + Ipv4AddrIn string `json:"ipv4_addr_in"` + Ipv6AddrIn string `json:"ipv6_addr_in"` + IncludeInCountry bool `json:"include_in_country"` + Active bool `json:"active"` + Owned bool `json:"owned"` + Provider string `json:"provider"` + Weight int `json:"weight"` + EndpointData interface{} `json:"endpoint_data"` // Can be a string (e.g., "openvpn") or a nested struct + Location struct { + Country string `json:"country"` + CountryCode string `json:"country_code"` + City string `json:"city"` + CityCode string `json:"city_code"` + Latitude float64 `json:"latitude"` + Longitude float64 `json:"longitude"` + } `json:"location"` +} + +// String returns a string representation of the Relay +func (r Relay) String() string { + return fmt.Sprintf("Relay(hostname=%s, ip=%s, country=%s)", r.Hostname, r.Ipv4AddrIn, r.Location.Country) +} + +// CheckLiveness checks if the relay is live +func (r Relay) CheckLiveness() (bool, time.Duration, error) { + pinger, err := ping.NewPinger(r.Ipv4AddrIn) + if err != nil { + return false, 0, err + } + pinger.Count = 1 + pinger.Timeout = 3 * time.Second // Increased timeout for the single ping + pinger.SetPrivileged(true) + pinger.Run() + stats := pinger.Statistics() + if stats.PacketsRecv == 0 { + return false, 0, nil + } + return true, stats.AvgRtt, nil +} + +// MeasureLatency measures the minimum latency of the relay over 5 pings +func (r Relay) MeasureLatency() (time.Duration, error) { + pinger, err := ping.NewPinger(r.Ipv4AddrIn) + if err != nil { + return 0, err + } + pinger.Count = 5 + pinger.Interval = 1 * time.Second // Adding interval between pings + pinger.Timeout = 10 * time.Second // Increased overall timeout + pinger.SetPrivileged(true) + pinger.Run() + stats := pinger.Statistics() + return stats.MinRtt, nil +} + +// RelayData represents the structure of the JSON file +type RelayData struct { + Etag string `json:"etag"` + Countries []struct { + Name string `json:"name"` + Code string `json:"code"` + Cities []struct { + Name string `json:"name"` + Code string `json:"code"` + Latitude float64 `json:"latitude"` + Longitude float64 `json:"longitude"` + Relays []Relay `json:"relays"` + } `json:"cities"` + } `json:"countries"` +} + +// ParseRelayData parses the JSON file and returns a flat list of all relays +func ParseRelayData() ([]Relay, error) { + paths := []string{ + "/var/cache/mullvad-vpn/relays.json", + "/Library/Caches/mullvad-vpn/relays.json", + `C:\ProgramData\Mullvad VPN\cache\relays.json`, + } + + var filePath string + for _, path := range paths { + if _, err := os.Stat(path); err == nil { + filePath = path + break + } + } + + var fileData []byte + if filePath == "" { + // use embedded cache if not on filesystem + fileData = mullvadclosest.RelayJSON + } else { + fileData, err := ioutil.ReadFile(filePath) + if err != nil { + return nil, fmt.Errorf("failed to read file: %v", err) + } + } + + var relayData RelayData + if err := json.Unmarshal(fileData, &relayData); err != nil { + return nil, fmt.Errorf("failed to parse JSON: %v", err) + } + + var relays []Relay + for _, country := range relayData.Countries { + for _, city := range country.Cities { + relays = append(relays, city.Relays...) + } + } + + return relays, nil +} diff --git a/embed.json b/embed.json new file mode 100644 index 0000000..bef90db --- /dev/null +++ b/embed.json @@ -0,0 +1,9 @@ +package mullvadclosest + + +import ( + "embed" +) + +//go:embed relays.2024-06-04.json +var RelayJSON embed.FS diff --git a/relays.2024-06-04.json b/relays.2024-06-04.json new file mode 100644 index 0000000..d1cbfe1 --- /dev/null +++ b/relays.2024-06-04.json @@ -0,0 +1,16336 @@ +{ + "etag": "W/\"2b62bfba9886a8b29e51464b573c0c6ca7d205f4\"", + "countries": [ + { + "name": "Albania", + "code": "al", + "cities": [ + { + "name": "Tirana", + "code": "tia", + "latitude": 41.327953, + "longitude": 19.819025, + "relays": [ + { + "hostname": "al-tia-wg-001", + "ipv4_addr_in": "31.171.153.66", + "ipv6_addr_in": "2a04:27c0:0:3::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "iRegister", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "bPfJDdgBXlY4w3ACs68zOMMhLUbbzktCKnLOFHqbxl4=", + "daita": false + } + }, + "location": { + "country": "Albania", + "country_code": "al", + "city": "Tirana", + "city_code": "tia", + "latitude": 41.327953, + "longitude": 19.819025 + } + }, + { + "hostname": "al-tia-wg-002", + "ipv4_addr_in": "31.171.154.50", + "ipv6_addr_in": "2a04:27c0:0:4::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "iRegister", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "/wPQafVa/60OIp8KqhC1xTTG+nQXZF17uo8XfdUnz2E=", + "daita": false + } + }, + "location": { + "country": "Albania", + "country_code": "al", + "city": "Tirana", + "city_code": "tia", + "latitude": 41.327953, + "longitude": 19.819025 + } + } + ] + } + ] + }, + { + "name": "Austria", + "code": "at", + "cities": [ + { + "name": "Vienna", + "code": "vie", + "latitude": 48.210033, + "longitude": 16.363449, + "relays": [ + { + "hostname": "at-vie-ovpn-001", + "ipv4_addr_in": "146.70.116.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Austria", + "country_code": "at", + "city": "Vienna", + "city_code": "vie", + "latitude": 48.210033, + "longitude": 16.363449 + } + }, + { + "hostname": "at-vie-ovpn-002", + "ipv4_addr_in": "146.70.116.226", + "ipv6_addr_in": null, + "include_in_country": true, + "active": false, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Austria", + "country_code": "at", + "city": "Vienna", + "city_code": "vie", + "latitude": 48.210033, + "longitude": 16.363449 + } + }, + { + "hostname": "at-vie-wg-001", + "ipv4_addr_in": "146.70.116.98", + "ipv6_addr_in": "2001:ac8:29:84::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "TNrdH73p6h2EfeXxUiLOCOWHcjmjoslLxZptZpIPQXU=", + "daita": false + } + }, + "location": { + "country": "Austria", + "country_code": "at", + "city": "Vienna", + "city_code": "vie", + "latitude": 48.210033, + "longitude": 16.363449 + } + }, + { + "hostname": "at-vie-wg-002", + "ipv4_addr_in": "146.70.116.130", + "ipv6_addr_in": "2001:ac8:29:85::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ehXBc726YX1N6Dm7fDAVMG5cIaYAFqCA4Lbpl4VWcWE=", + "daita": false + } + }, + "location": { + "country": "Austria", + "country_code": "at", + "city": "Vienna", + "city_code": "vie", + "latitude": 48.210033, + "longitude": 16.363449 + } + }, + { + "hostname": "at-vie-wg-003", + "ipv4_addr_in": "146.70.116.162", + "ipv6_addr_in": "2001:ac8:29:86::a03f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ddllelPu2ndjSX4lHhd/kdCStaSJOQixs9z551qN6B8=", + "daita": false + } + }, + "location": { + "country": "Austria", + "country_code": "at", + "city": "Vienna", + "city_code": "vie", + "latitude": 48.210033, + "longitude": 16.363449 + } + } + ] + } + ] + }, + { + "name": "Australia", + "code": "au", + "cities": [ + { + "name": "Adelaide", + "code": "adl", + "latitude": -34.92123, + "longitude": 138.599503, + "relays": [ + { + "hostname": "au-adl-ovpn-301", + "ipv4_addr_in": "103.214.20.146", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Adelaide", + "city_code": "adl", + "latitude": -34.92123, + "longitude": 138.599503 + } + }, + { + "hostname": "au-adl-ovpn-302", + "ipv4_addr_in": "103.214.20.162", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Adelaide", + "city_code": "adl", + "latitude": -34.92123, + "longitude": 138.599503 + } + }, + { + "hostname": "au-adl-wg-301", + "ipv4_addr_in": "103.214.20.50", + "ipv6_addr_in": "2404:f780:0:deb::c1f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "rm2hpBiN91c7reV+cYKlw7QNkYtME/+js7IMyYBB2Aw=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Adelaide", + "city_code": "adl", + "latitude": -34.92123, + "longitude": 138.599503 + } + }, + { + "hostname": "au-adl-wg-302", + "ipv4_addr_in": "103.214.20.130", + "ipv6_addr_in": "2404:f780:0:dec::c2f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "e4jouH8n4e8oyi/Z7d6lJLd6975hlPZmnynJeoU+nWM=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Adelaide", + "city_code": "adl", + "latitude": -34.92123, + "longitude": 138.599503 + } + } + ] + }, + { + "name": "Brisbane", + "code": "bne", + "latitude": -27.471, + "longitude": 153.0234, + "relays": [ + { + "hostname": "au-bne-ovpn-301", + "ipv4_addr_in": "103.216.220.50", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Brisbane", + "city_code": "bne", + "latitude": -27.471, + "longitude": 153.0234 + } + }, + { + "hostname": "au-bne-ovpn-302", + "ipv4_addr_in": "103.216.220.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Brisbane", + "city_code": "bne", + "latitude": -27.471, + "longitude": 153.0234 + } + }, + { + "hostname": "au-bne-wg-301", + "ipv4_addr_in": "103.216.220.18", + "ipv6_addr_in": "2404:f780:4:deb::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "1H/gj8SVNebAIEGlvMeUVC5Rnf274dfVKbyE+v5G8HA=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Brisbane", + "city_code": "bne", + "latitude": -27.471, + "longitude": 153.0234 + } + }, + { + "hostname": "au-bne-wg-302", + "ipv4_addr_in": "103.216.220.34", + "ipv6_addr_in": "2404:f780:4:dec::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "z+JG0QA4uNd/wRTpjCqn9rDpQsHKhf493omqQ5rqYAc=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Brisbane", + "city_code": "bne", + "latitude": -27.471, + "longitude": 153.0234 + } + } + ] + }, + { + "name": "Melbourne", + "code": "mel", + "latitude": -37.815018, + "longitude": 144.946014, + "relays": [ + { + "hostname": "au-mel-ovpn-301", + "ipv4_addr_in": "103.108.229.82", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Melbourne", + "city_code": "mel", + "latitude": -37.815018, + "longitude": 144.946014 + } + }, + { + "hostname": "au-mel-ovpn-302", + "ipv4_addr_in": "103.108.229.98", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Melbourne", + "city_code": "mel", + "latitude": -37.815018, + "longitude": 144.946014 + } + }, + { + "hostname": "au-mel-wg-301", + "ipv4_addr_in": "103.108.229.50", + "ipv6_addr_in": "2406:d501:f:deb::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "jUMZWFOgoFGhZjBAavE6jW8VgnnNpL4KUiYFYjc1fl8=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Melbourne", + "city_code": "mel", + "latitude": -37.815018, + "longitude": 144.946014 + } + }, + { + "hostname": "au-mel-wg-302", + "ipv4_addr_in": "103.108.229.66", + "ipv6_addr_in": "2406:d501:f:dec::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "npTb63jWEaJToBfn0B1iVNbnLXEwwlus5SsolsvUhgU=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Melbourne", + "city_code": "mel", + "latitude": -37.815018, + "longitude": 144.946014 + } + } + ] + }, + { + "name": "Perth", + "code": "per", + "latitude": -31.953512, + "longitude": 115.857048, + "relays": [ + { + "hostname": "au-per-ovpn-301", + "ipv4_addr_in": "103.108.231.82", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Perth", + "city_code": "per", + "latitude": -31.953512, + "longitude": 115.857048 + } + }, + { + "hostname": "au-per-ovpn-302", + "ipv4_addr_in": "103.108.231.98", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Perth", + "city_code": "per", + "latitude": -31.953512, + "longitude": 115.857048 + } + }, + { + "hostname": "au-per-wg-301", + "ipv4_addr_in": "103.108.231.50", + "ipv6_addr_in": "2404:f780:8:deb::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "hQXsNk/9R2We0pzP1S9J3oNErEu2CyENlwTdmDUYFhg=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Perth", + "city_code": "per", + "latitude": -31.953512, + "longitude": 115.857048 + } + }, + { + "hostname": "au-per-wg-302", + "ipv4_addr_in": "103.108.231.66", + "ipv6_addr_in": "2404:f780:8:dec::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "t3Ly8bBdF2gMHzT3d529bVLDw8Jd2/FFG9GXoBEx01g=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Perth", + "city_code": "per", + "latitude": -31.953512, + "longitude": 115.857048 + } + } + ] + }, + { + "name": "Sydney", + "code": "syd", + "latitude": -33.861481, + "longitude": 151.205475, + "relays": [ + { + "hostname": "au-syd-ovpn-001", + "ipv4_addr_in": "146.70.200.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-ovpn-002", + "ipv4_addr_in": "146.70.200.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-wg-001", + "ipv4_addr_in": "146.70.200.2", + "ipv6_addr_in": "2001:ac8:84:5::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "4JpfHBvthTFOhCK0f5HAbzLXAVcB97uAkuLx7E8kqW0=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-wg-002", + "ipv4_addr_in": "146.70.141.194", + "ipv6_addr_in": "2001:ac8:84:6::2f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "lUeDAOy+iAhZDuz5+6zh0Co8wZcs3ahdu2jfqQoDW3E=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-wg-003", + "ipv4_addr_in": "146.70.200.194", + "ipv6_addr_in": "2001:ac8:84:4::3f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "LXuRwa9JRTt2/UtldklKGlj/IVLORITqgET4II4DRkU=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-wg-101", + "ipv4_addr_in": "103.136.147.3", + "ipv6_addr_in": "2a11:3:500::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "NKP4jSvSDZg5HJ3JxpGYMxIYt7QzoxSFrU2F0m1ZxwA=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-wg-102", + "ipv4_addr_in": "103.136.147.65", + "ipv6_addr_in": "2a11:3:500::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "w825smx7YI9/SrwSYGdsuwD1Qt5UsS/CyaGTjwSYljU=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-wg-103", + "ipv4_addr_in": "103.136.147.129", + "ipv6_addr_in": "2a11:3:500::f201", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "poOHsF6v91yURxDrNe/P/adyNUqsRGzhFIioyBYUPww=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-wg-104", + "ipv4_addr_in": "103.136.147.197", + "ipv6_addr_in": "2a11:3:500::f301", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "61Ovy3ObuHqllZK/P/5cOWZnY26SY2csmjzVK1q+fFs=", + "daita": false + } + }, + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + }, + { + "hostname": "au-syd-br-001", + "ipv4_addr_in": "146.70.141.154", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Australia", + "country_code": "au", + "city": "Sydney", + "city_code": "syd", + "latitude": -33.861481, + "longitude": 151.205475 + } + } + ] + } + ] + }, + { + "name": "Belgium", + "code": "be", + "cities": [ + { + "name": "Brussels", + "code": "bru", + "latitude": 50.833333, + "longitude": 4.333333, + "relays": [ + { + "hostname": "be-bru-ovpn-101", + "ipv4_addr_in": "82.102.19.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Belgium", + "country_code": "be", + "city": "Brussels", + "city_code": "bru", + "latitude": 50.833333, + "longitude": 4.333333 + } + }, + { + "hostname": "be-bru-ovpn-102", + "ipv4_addr_in": "91.207.57.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Belgium", + "country_code": "be", + "city": "Brussels", + "city_code": "bru", + "latitude": 50.833333, + "longitude": 4.333333 + } + }, + { + "hostname": "be-bru-wg-101", + "ipv4_addr_in": "91.90.123.2", + "ipv6_addr_in": "2001:ac8:27:88::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "GE2WP6hmwVggSvGVWLgq2L10T3WM2VspnUptK5F4B0U=", + "daita": false + } + }, + "location": { + "country": "Belgium", + "country_code": "be", + "city": "Brussels", + "city_code": "bru", + "latitude": 50.833333, + "longitude": 4.333333 + } + }, + { + "hostname": "be-bru-wg-102", + "ipv4_addr_in": "194.110.115.34", + "ipv6_addr_in": "2001:ac8:27:89::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "IY+FKw487MEWqMGNyyrT4PnTrJxce8oiGNHT0zifam8=", + "daita": false + } + }, + "location": { + "country": "Belgium", + "country_code": "be", + "city": "Brussels", + "city_code": "bru", + "latitude": 50.833333, + "longitude": 4.333333 + } + }, + { + "hostname": "be-bru-wg-103", + "ipv4_addr_in": "194.110.115.2", + "ipv6_addr_in": "2001:ac8:27:92::a03f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "b5A1ela+BVI+AbNXz7SWekZHvdWWpt3rqUKTJj0SqCU=", + "daita": false + } + }, + "location": { + "country": "Belgium", + "country_code": "be", + "city": "Brussels", + "city_code": "bru", + "latitude": 50.833333, + "longitude": 4.333333 + } + } + ] + } + ] + }, + { + "name": "Bulgaria", + "code": "bg", + "cities": [ + { + "name": "Sofia", + "code": "sof", + "latitude": 42.6833333, + "longitude": 23.3166667, + "relays": [ + { + "hostname": "bg-sof-ovpn-001", + "ipv4_addr_in": "146.70.188.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Bulgaria", + "country_code": "bg", + "city": "Sofia", + "city_code": "sof", + "latitude": 42.6833333, + "longitude": 23.3166667 + } + }, + { + "hostname": "bg-sof-ovpn-002", + "ipv4_addr_in": "146.70.188.2", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Bulgaria", + "country_code": "bg", + "city": "Sofia", + "city_code": "sof", + "latitude": 42.6833333, + "longitude": 23.3166667 + } + }, + { + "hostname": "bg-sof-wg-001", + "ipv4_addr_in": "146.70.188.130", + "ipv6_addr_in": "2001:ac8:30:56::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "J8KysHmHZWqtrVKKOppneDXSks/PDsB1XTlRHpwiABA=", + "daita": false + } + }, + "location": { + "country": "Bulgaria", + "country_code": "bg", + "city": "Sofia", + "city_code": "sof", + "latitude": 42.6833333, + "longitude": 23.3166667 + } + }, + { + "hostname": "bg-sof-wg-002", + "ipv4_addr_in": "146.70.188.194", + "ipv6_addr_in": "2001:ac8:30:57::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "dg+Fw7GnKvDPBxFpnj1KPoNIu1GakuVoDJjKRni+pRU=", + "daita": false + } + }, + "location": { + "country": "Bulgaria", + "country_code": "bg", + "city": "Sofia", + "city_code": "sof", + "latitude": 42.6833333, + "longitude": 23.3166667 + } + } + ] + } + ] + }, + { + "name": "Brazil", + "code": "br", + "cities": [ + { + "name": "Sao Paulo", + "code": "sao", + "latitude": -23.533773, + "longitude": -46.62529, + "relays": [ + { + "hostname": "br-sao-ovpn-001", + "ipv4_addr_in": "149.78.184.210", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Qnax", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Brazil", + "country_code": "br", + "city": "Sao Paulo", + "city_code": "sao", + "latitude": -23.533773, + "longitude": -46.62529 + } + }, + { + "hostname": "br-sao-wg-001", + "ipv4_addr_in": "149.78.184.194", + "ipv6_addr_in": "2804:5364:7000:40::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Qnax", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "xUDPh13sY127m+7d05SOQAzzNCyufTjaGwCXkWsIjkw=", + "daita": false + } + }, + "location": { + "country": "Brazil", + "country_code": "br", + "city": "Sao Paulo", + "city_code": "sao", + "latitude": -23.533773, + "longitude": -46.62529 + } + }, + { + "hostname": "br-sao-wg-201", + "ipv4_addr_in": "169.150.198.66", + "ipv6_addr_in": "2a02:6ea0:d00e:1::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "8c9M6w1BQbgMVr/Zgrj4GwSdU6q3qfQfWs17kMLC9y4=", + "daita": false + } + }, + "location": { + "country": "Brazil", + "country_code": "br", + "city": "Sao Paulo", + "city_code": "sao", + "latitude": -23.533773, + "longitude": -46.62529 + } + }, + { + "hostname": "br-sao-wg-202", + "ipv4_addr_in": "169.150.198.79", + "ipv6_addr_in": "2a02:6ea0:d00e:2::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "jWURoz8SLBUlRTQnAFTA/LDZUTpvlO0ghiVWH7MgaHQ=", + "daita": false + } + }, + "location": { + "country": "Brazil", + "country_code": "br", + "city": "Sao Paulo", + "city_code": "sao", + "latitude": -23.533773, + "longitude": -46.62529 + } + } + ] + } + ] + }, + { + "name": "Canada", + "code": "ca", + "cities": [ + { + "name": "Montreal", + "code": "mtr", + "latitude": 45.5053, + "longitude": -73.5525, + "relays": [ + { + "hostname": "ca-mtr-ovpn-001", + "ipv4_addr_in": "37.120.237.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Montreal", + "city_code": "mtr", + "latitude": 45.5053, + "longitude": -73.5525 + } + }, + { + "hostname": "ca-mtr-ovpn-002", + "ipv4_addr_in": "45.133.182.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Montreal", + "city_code": "mtr", + "latitude": 45.5053, + "longitude": -73.5525 + } + }, + { + "hostname": "ca-mtr-wg-001", + "ipv4_addr_in": "146.70.198.66", + "ipv6_addr_in": "2a0d:5600:9:c::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "TUCaQc26/R6AGpkDUr8A8ytUs/e5+UVlIVujbuBwlzI=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Montreal", + "city_code": "mtr", + "latitude": 45.5053, + "longitude": -73.5525 + } + }, + { + "hostname": "ca-mtr-wg-002", + "ipv4_addr_in": "146.70.198.130", + "ipv6_addr_in": "2a0d:5600:9:d::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "7X6zOgtJfJAK8w8C3z+hekcS9Yf3qK3Bp4yx56lqxBQ=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Montreal", + "city_code": "mtr", + "latitude": 45.5053, + "longitude": -73.5525 + } + }, + { + "hostname": "ca-mtr-wg-003", + "ipv4_addr_in": "146.70.198.194", + "ipv6_addr_in": "2a0d:5600:9:e::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "57Zu2qPzRScZWsoC2NhXgz0FiC0HiKkbEa559sbxB3k=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Montreal", + "city_code": "mtr", + "latitude": 45.5053, + "longitude": -73.5525 + } + }, + { + "hostname": "ca-mtr-wg-004", + "ipv4_addr_in": "188.241.176.194", + "ipv6_addr_in": "2a0d:5600:9:16::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Cc5swfQ9f2tAgLduuIqC3bLbwDVoOFkkETghsE6/twA=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Montreal", + "city_code": "mtr", + "latitude": 45.5053, + "longitude": -73.5525 + } + }, + { + "hostname": "ca-mtr-br-001", + "ipv4_addr_in": "217.138.213.18", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Montreal", + "city_code": "mtr", + "latitude": 45.5053, + "longitude": -73.5525 + } + } + ] + }, + { + "name": "Toronto", + "code": "tor", + "latitude": 43.666667, + "longitude": -79.416667, + "relays": [ + { + "hostname": "ca-tor-ovpn-001", + "ipv4_addr_in": "178.249.214.193", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-ovpn-002", + "ipv4_addr_in": "178.249.214.206", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-ovpn-101", + "ipv4_addr_in": "198.54.132.34", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-ovpn-102", + "ipv4_addr_in": "198.54.132.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-001", + "ipv4_addr_in": "178.249.214.2", + "ipv6_addr_in": "2a02:6ea0:de08:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "HjcUGVDXWdrRkaKNpc/8494RM5eICO6DPyrhCtTv9Ws=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-002", + "ipv4_addr_in": "178.249.214.15", + "ipv6_addr_in": "2a02:6ea0:de08:2::a29f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "iqZSgVlU9H67x/uYE5xsnzLCDXf7FL9iMfyKfl6WsV8=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-101", + "ipv4_addr_in": "198.44.140.130", + "ipv6_addr_in": "2607:9000:6000:18::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "hfvZctxTQukC6lMJ4liGTg1JECT4XqEKpTNPk84k2As=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-102", + "ipv4_addr_in": "198.54.132.98", + "ipv6_addr_in": "2607:9000:6000:14::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "iGwKJTbm/aL4kJXwcJkO0JYPEEGGDcYBrRTG7CHIQx0=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-103", + "ipv4_addr_in": "198.54.132.226", + "ipv6_addr_in": "2607:9000:6000:17::a03f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "MbusadbeACMR5bv+PPjhldb5CgwjlCbthnTJNrOJnhI=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-104", + "ipv4_addr_in": "198.54.132.130", + "ipv6_addr_in": "2607:9000:6000:15::a04f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "y9JT2B69QiWkbEAiXGq5yhtAvg8YNXNkjhHcUiBCiko=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-105", + "ipv4_addr_in": "198.44.140.162", + "ipv6_addr_in": "2607:9000:6000:19::a05f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "XE+hufytSkX14TjskwmYL4HL4mbPf+Vd5Jfgwf/5JHc=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-106", + "ipv4_addr_in": "198.54.132.162", + "ipv6_addr_in": "2607:9000:6000:16::a26f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ptnLZbreIzTZrSyPD0XhOAAmN194hcPSG5TI5TTiL08=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-wg-107", + "ipv4_addr_in": "198.44.140.194", + "ipv6_addr_in": "2607:9000:6000:20::a07f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "jVgDxCstCo0NRZ/dB9fpQiu+dfYK2v3HOa4B6MkLaQA=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + }, + { + "hostname": "ca-tor-br-101", + "ipv4_addr_in": "198.44.140.226", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Toronto", + "city_code": "tor", + "latitude": 43.666667, + "longitude": -79.416667 + } + } + ] + }, + { + "name": "Vancouver", + "code": "van", + "latitude": 49.25, + "longitude": -123.133333, + "relays": [ + { + "hostname": "ca-van-ovpn-201", + "ipv4_addr_in": "104.193.135.132", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "techfutures", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Vancouver", + "city_code": "van", + "latitude": 49.25, + "longitude": -123.133333 + } + }, + { + "hostname": "ca-van-ovpn-202", + "ipv4_addr_in": "104.193.135.164", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "techfutures", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Vancouver", + "city_code": "van", + "latitude": 49.25, + "longitude": -123.133333 + } + }, + { + "hostname": "ca-van-wg-201", + "ipv4_addr_in": "104.193.135.196", + "ipv6_addr_in": "2606:9580:103:e::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "techfutures", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "hYbb2NQKB0g2RefngdHl3bfaLImUuzeVIv2i1VCVIlQ=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Vancouver", + "city_code": "van", + "latitude": 49.25, + "longitude": -123.133333 + } + }, + { + "hostname": "ca-van-wg-202", + "ipv4_addr_in": "104.193.135.100", + "ipv6_addr_in": "2606:9580:103:f::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "techfutures", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "wGqcNxXH7A3bSptHZo7Dfmymy/Y30Ea/Zd47UkyEbzo=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Vancouver", + "city_code": "van", + "latitude": 49.25, + "longitude": -123.133333 + } + }, + { + "hostname": "ca-van-wg-301", + "ipv4_addr_in": "149.22.81.194", + "ipv6_addr_in": "2a02:6ea0:5100:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "BzYINbABQiSbRLDZIlmgsLgL88offQJCEH3JkcjRGUk=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Vancouver", + "city_code": "van", + "latitude": 49.25, + "longitude": -123.133333 + } + }, + { + "hostname": "ca-van-wg-302", + "ipv4_addr_in": "149.22.81.207", + "ipv6_addr_in": "2a02:6ea0:5100:2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "EOOkxbmbdHmjb8F45s33yKrIzKWH6lGIgJf2kTOxwFw=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Vancouver", + "city_code": "van", + "latitude": 49.25, + "longitude": -123.133333 + } + } + ] + }, + { + "name": "Calgary", + "code": "yyc", + "latitude": 51.037007, + "longitude": -114.058315, + "relays": [ + { + "hostname": "ca-yyc-wg-201", + "ipv4_addr_in": "38.240.225.36", + "ipv6_addr_in": "2606:9580:438:32::b01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "techfutures", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "L4RcVwk0cJJp2u8O9+86sdyUpxfYnr+ME57Ex0RY1Wo=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Calgary", + "city_code": "yyc", + "latitude": 51.037007, + "longitude": -114.058315 + } + }, + { + "hostname": "ca-yyc-wg-202", + "ipv4_addr_in": "38.240.225.68", + "ipv6_addr_in": "2606:9580:438:64::b02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "techfutures", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "u9J/fzrSqM2aEFjTs91KEKgBsaQ/I/4XkIP1Z/zYkXA=", + "daita": false + } + }, + "location": { + "country": "Canada", + "country_code": "ca", + "city": "Calgary", + "city_code": "yyc", + "latitude": 51.037007, + "longitude": -114.058315 + } + } + ] + } + ] + }, + { + "name": "Switzerland", + "code": "ch", + "cities": [ + { + "name": "Zurich", + "code": "zrh", + "latitude": 47.366667, + "longitude": 8.55, + "relays": [ + { + "hostname": "ch-zrh-ovpn-001", + "ipv4_addr_in": "193.32.127.81", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-ovpn-002", + "ipv4_addr_in": "193.32.127.82", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-ovpn-003", + "ipv4_addr_in": "193.32.127.83", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-ovpn-201", + "ipv4_addr_in": "46.19.140.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "PrivateLayer", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-ovpn-202", + "ipv4_addr_in": "81.17.16.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "PrivateLayer", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-ovpn-501", + "ipv4_addr_in": "146.70.134.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-ovpn-502", + "ipv4_addr_in": "146.70.134.162", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-001", + "ipv4_addr_in": "193.32.127.66", + "ipv6_addr_in": "2a03:1b20:a:f011::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "/iivwlyqWqxQ0BVWmJRhcXIFdJeo0WbHQ/hZwuXaN3g=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-002", + "ipv4_addr_in": "193.32.127.67", + "ipv6_addr_in": "2a03:1b20:a:f011::f101", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "qcvI02LwBnTb7aFrOyZSWvg4kb7zNW9/+rS6alnWyFE=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-003", + "ipv4_addr_in": "193.32.127.68", + "ipv6_addr_in": "2a03:1b20:a:f011::f201", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5Ms10UxGjCSzwImTrvEjcygsWY8AfMIdYyRvgFuTqH8=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-004", + "ipv4_addr_in": "193.32.127.69", + "ipv6_addr_in": "2a03:1b20:a:f011::f301", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "C3jAgPirUZG6sNYe4VuAgDEYunENUyG34X42y+SBngQ=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-005", + "ipv4_addr_in": "193.32.127.70", + "ipv6_addr_in": "2a03:1b20:a:f011::f401", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "dV/aHhwG0fmp0XuvSvrdWjCtdyhPDDFiE/nuv/1xnRM=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-006", + "ipv4_addr_in": "193.32.127.84", + "ipv6_addr_in": "2a03:1b20:a:f011::f601", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "wDjbvO94t0UI1RlimpEFFv7kJ6DngthvuRX6uBN0wAA=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-201", + "ipv4_addr_in": "179.43.189.66", + "ipv6_addr_in": "2a02:29b8:dc01:1832::a1f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "PrivateLayer", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "66NPINP4+1AlojLP0J6O9GxdloiegNnGMV4Yit9Kzg0=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-202", + "ipv4_addr_in": "46.19.136.226", + "ipv6_addr_in": "2a02:29b8:dc01:1831::f002", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "PrivateLayer", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "gSLSfY2zNFRczxHndeda258z+ayMvd7DqTlKYlKWJUo=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-401", + "ipv4_addr_in": "138.199.6.194", + "ipv6_addr_in": "2a02:6ea0:d406:1::a18f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 80, + "endpoint_data": { + "wireguard": { + "public_key": "45ud3I5O6GmPXTrMJiqkiPMI/ubucDqzGaiq3CHJXk8=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-402", + "ipv4_addr_in": "138.199.6.207", + "ipv6_addr_in": "2a02:6ea0:d406:2::a19f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 80, + "endpoint_data": { + "wireguard": { + "public_key": "7VCMEE+Oljm/qKfQJSUCOYPtRSwdOnuPyqo5Vob+GRY=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-403", + "ipv4_addr_in": "138.199.6.220", + "ipv6_addr_in": "2a02:6ea0:d406:3::a20f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 80, + "endpoint_data": { + "wireguard": { + "public_key": "Jmhds6oPu6/j94hjllJCIaKLDyWu6V+ZNRrVVFhWJkI=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-404", + "ipv4_addr_in": "138.199.6.233", + "ipv6_addr_in": "2a02:6ea0:d406:4::a21f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 80, + "endpoint_data": { + "wireguard": { + "public_key": "zfNQqDyPmSUY8+20wxACe/wpk4Q5jpZm5iBqjXj2hk8=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-501", + "ipv4_addr_in": "146.70.134.98", + "ipv6_addr_in": "2001:ac8:28:a7::a36f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "HQzvIK88XSsRujBlwoYvvZ7CMKwiYuOqLXyuckkTPHg=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-502", + "ipv4_addr_in": "146.70.126.162", + "ipv6_addr_in": "2001:ac8:28:a1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "TOA/MQWS6TzJVEa//GPyaET5d52VpHO2isS4786GGwU=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-503", + "ipv4_addr_in": "146.70.126.194", + "ipv6_addr_in": "2001:ac8:28:a2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ApOUMLFcpTpj/sDAMub0SvASFdsSWtsy+vvw/nWvEmY=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-504", + "ipv4_addr_in": "146.70.126.226", + "ipv6_addr_in": "2001:ac8:28:a3::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "I5XiRYHPmxnmGtPJ90Yio6QXL441C/+kYV6UH6wU+jk=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-505", + "ipv4_addr_in": "146.70.134.2", + "ipv6_addr_in": "2001:ac8:28:a4::a33f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "dc16Gcid7jLcHRD7uHma1myX3vWhEy/bZIBtqZw0B2I=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-506", + "ipv4_addr_in": "146.70.134.34", + "ipv6_addr_in": "2001:ac8:28:a5::a34f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "7xVJLzW0nfmACr1VMc+/SiSMFh0j0EI3DrU/8Fnj1zM=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-wg-507", + "ipv4_addr_in": "146.70.134.66", + "ipv6_addr_in": "2001:ac8:28:a6::a35f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "RNTpvmWTyjNf8w9qdP+5XlFnyAk5TrVvT+CRa8a0zys=", + "daita": false + } + }, + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + }, + { + "hostname": "ch-zrh-br-001", + "ipv4_addr_in": "193.32.127.117", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Switzerland", + "country_code": "ch", + "city": "Zurich", + "city_code": "zrh", + "latitude": 47.366667, + "longitude": 8.55 + } + } + ] + } + ] + }, + { + "name": "Chile", + "code": "cl", + "cities": [ + { + "name": "Santiago", + "code": "scl", + "latitude": -33.448891, + "longitude": -70.669266, + "relays": [ + { + "hostname": "cl-scl-wg-001", + "ipv4_addr_in": "149.88.104.2", + "ipv6_addr_in": "2a02:6ea0:fc02:2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "03qeK7CSn6wcMzfqilmVt6Tf81VZIPWnSG04euSkyxM=", + "daita": false + } + }, + "location": { + "country": "Chile", + "country_code": "cl", + "city": "Santiago", + "city_code": "scl", + "latitude": -33.448891, + "longitude": -70.669266 + } + }, + { + "hostname": "cl-scl-wg-002", + "ipv4_addr_in": "149.88.104.15", + "ipv6_addr_in": "2a02:6ea0:fc02:3::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "rn9O+cXj0WQgZAkGCoYvvWgzaB5GcOaVfke3WKsp1Ro=", + "daita": false + } + }, + "location": { + "country": "Chile", + "country_code": "cl", + "city": "Santiago", + "city_code": "scl", + "latitude": -33.448891, + "longitude": -70.669266 + } + } + ] + } + ] + }, + { + "name": "Colombia", + "code": "co", + "cities": [ + { + "name": "Bogota", + "code": "bog", + "latitude": 4.624335, + "longitude": -74.063644, + "relays": [ + { + "hostname": "co-bog-wg-001", + "ipv4_addr_in": "154.47.16.34", + "ipv6_addr_in": "2a02:6ea0:f101:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "iaMa84nCHK+v4TnQH4h2rxkqwwxemORXM12VbJDRZSU=", + "daita": false + } + }, + "location": { + "country": "Colombia", + "country_code": "co", + "city": "Bogota", + "city_code": "bog", + "latitude": 4.624335, + "longitude": -74.063644 + } + }, + { + "hostname": "co-bog-wg-002", + "ipv4_addr_in": "154.47.16.47", + "ipv6_addr_in": "2a02:6ea0:f101:2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "IZDwbG9C/NrOOGVUrn+fDaPr8ZwD/yhvST7XWGk1ln8=", + "daita": false + } + }, + "location": { + "country": "Colombia", + "country_code": "co", + "city": "Bogota", + "city_code": "bog", + "latitude": 4.624335, + "longitude": -74.063644 + } + } + ] + } + ] + }, + { + "name": "Czech Republic", + "code": "cz", + "cities": [ + { + "name": "Prague", + "code": "prg", + "latitude": 50.083333, + "longitude": 14.466667, + "relays": [ + { + "hostname": "cz-prg-ovpn-101", + "ipv4_addr_in": "146.70.129.162", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Czech Republic", + "country_code": "cz", + "city": "Prague", + "city_code": "prg", + "latitude": 50.083333, + "longitude": 14.466667 + } + }, + { + "hostname": "cz-prg-ovpn-102", + "ipv4_addr_in": "146.70.129.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Czech Republic", + "country_code": "cz", + "city": "Prague", + "city_code": "prg", + "latitude": 50.083333, + "longitude": 14.466667 + } + }, + { + "hostname": "cz-prg-wg-101", + "ipv4_addr_in": "146.70.129.98", + "ipv6_addr_in": "2001:ac8:33:c::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "wLBxTaISMJ++vUht4hlAOUog9fhZxDql16TaYWaboDc=", + "daita": false + } + }, + "location": { + "country": "Czech Republic", + "country_code": "cz", + "city": "Prague", + "city_code": "prg", + "latitude": 50.083333, + "longitude": 14.466667 + } + }, + { + "hostname": "cz-prg-wg-102", + "ipv4_addr_in": "146.70.129.130", + "ipv6_addr_in": "2001:ac8:33:d::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "cRCJ0vULwKRbTfzuo9W+fIt0fJGQE7DLvojIiURIpiI=", + "daita": false + } + }, + "location": { + "country": "Czech Republic", + "country_code": "cz", + "city": "Prague", + "city_code": "prg", + "latitude": 50.083333, + "longitude": 14.466667 + } + }, + { + "hostname": "cz-prg-wg-201", + "ipv4_addr_in": "178.249.209.162", + "ipv6_addr_in": "2a02:6ea0:c201:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5FZW+fNA2iVBSY99HFl+KjGc9AFVNE+UFAedLNhu8lc=", + "daita": false + } + }, + "location": { + "country": "Czech Republic", + "country_code": "cz", + "city": "Prague", + "city_code": "prg", + "latitude": 50.083333, + "longitude": 14.466667 + } + }, + { + "hostname": "cz-prg-wg-202", + "ipv4_addr_in": "178.249.209.175", + "ipv6_addr_in": "2a02:6ea0:c201:1::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ReGrGPKDHri64D7qeXmgcLzjsTJ0B/yM7eekFz1P/34=", + "daita": false + } + }, + "location": { + "country": "Czech Republic", + "country_code": "cz", + "city": "Prague", + "city_code": "prg", + "latitude": 50.083333, + "longitude": 14.466667 + } + }, + { + "hostname": "cz-prg-br-101", + "ipv4_addr_in": "217.138.199.106", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Czech Republic", + "country_code": "cz", + "city": "Prague", + "city_code": "prg", + "latitude": 50.083333, + "longitude": 14.466667 + } + } + ] + } + ] + }, + { + "name": "Germany", + "code": "de", + "cities": [ + { + "name": "Berlin", + "code": "ber", + "latitude": 52.520008, + "longitude": 13.404954, + "relays": [ + { + "hostname": "de-ber-ovpn-001", + "ipv4_addr_in": "193.32.248.72", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-ovpn-002", + "ipv4_addr_in": "193.32.248.73", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-ovpn-003", + "ipv4_addr_in": "193.32.248.74", + "ipv6_addr_in": null, + "include_in_country": true, + "active": false, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-wg-001", + "ipv4_addr_in": "193.32.248.66", + "ipv6_addr_in": "2a03:1b20:b:f011::a01f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "0qSP0VxoIhEhRK+fAHVvmfRdjPs2DmmpOCNLFP/7cGw=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-wg-002", + "ipv4_addr_in": "193.32.248.67", + "ipv6_addr_in": "2a03:1b20:b:f011::a02f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "8ov1Ws0ut3ixWDh9Chp7/WLVn9qC6/WVHtcBcuWBlgo=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-wg-003", + "ipv4_addr_in": "193.32.248.68", + "ipv6_addr_in": "2a03:1b20:b:f011::a03f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "USrMatdHiCL5AKdVMpHuYgWuMiK/GHPwRB3Xx00FhU0=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-wg-004", + "ipv4_addr_in": "193.32.248.69", + "ipv6_addr_in": "2a03:1b20:b:f011::a04f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "6PchzRRxzeeHdNLyn3Nz0gmN7pUyjoZMpKmKzJRL4GM=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-wg-005", + "ipv4_addr_in": "193.32.248.70", + "ipv6_addr_in": "2a03:1b20:b:f011::a05f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "I4Y7e8LrtBC/7DLpUgRd5k+IZk+whOFVAZgbSivoiBI=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-wg-006", + "ipv4_addr_in": "193.32.248.71", + "ipv6_addr_in": "2a03:1b20:b:f011::a06f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "eprzkkkSbXCANngQDo305DIAvkKAnZaN71IpTNaOoTk=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + }, + { + "hostname": "de-ber-wg-007", + "ipv4_addr_in": "193.32.248.75", + "ipv6_addr_in": "2a03:1b20:b:f011::f701", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "/ejdxiEsmYbeXXCN6UzvzJ0U/mLuB6baIfQRYKYHWzU=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Berlin", + "city_code": "ber", + "latitude": 52.520008, + "longitude": 13.404954 + } + } + ] + }, + { + "name": "Dusseldorf", + "code": "dus", + "latitude": 51.233334, + "longitude": 6.783333, + "relays": [ + { + "hostname": "de-dus-wg-001", + "ipv4_addr_in": "185.254.75.3", + "ipv6_addr_in": "2a03:d9c0:3000::a20f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 150, + "endpoint_data": { + "wireguard": { + "public_key": "ku1NYeOAGbY65YL/JKZhrqVzDJKXQiVj9USXbfkOBA0=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Dusseldorf", + "city_code": "dus", + "latitude": 51.233334, + "longitude": 6.783333 + } + }, + { + "hostname": "de-dus-wg-002", + "ipv4_addr_in": "185.254.75.4", + "ipv6_addr_in": "2a03:d9c0:3000::a21f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 150, + "endpoint_data": { + "wireguard": { + "public_key": "TPAIPTgu9jIitgX1Bz5xMCZJ9pRRZTdtZEOIxArO0Hc=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Dusseldorf", + "city_code": "dus", + "latitude": 51.233334, + "longitude": 6.783333 + } + }, + { + "hostname": "de-dus-wg-003", + "ipv4_addr_in": "185.254.75.5", + "ipv6_addr_in": "2a03:d9c0:3000::a22f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 150, + "endpoint_data": { + "wireguard": { + "public_key": "XgSe9UwEV4JJNPPzFFOVYS6scMTL4DeNlwqBl32lDw0=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Dusseldorf", + "city_code": "dus", + "latitude": 51.233334, + "longitude": 6.783333 + } + } + ] + }, + { + "name": "Frankfurt", + "code": "fra", + "latitude": 50.110924, + "longitude": 8.682127, + "relays": [ + { + "hostname": "de-fra-ovpn-001", + "ipv4_addr_in": "185.213.155.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-ovpn-002", + "ipv4_addr_in": "185.213.155.67", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-ovpn-003", + "ipv4_addr_in": "185.213.155.68", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-ovpn-004", + "ipv4_addr_in": "185.213.155.69", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-ovpn-005", + "ipv4_addr_in": "185.213.155.70", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-ovpn-006", + "ipv4_addr_in": "185.213.155.71", + "ipv6_addr_in": null, + "include_in_country": true, + "active": false, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-ovpn-101", + "ipv4_addr_in": "146.70.117.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-ovpn-102", + "ipv4_addr_in": "146.70.117.98", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-001", + "ipv4_addr_in": "185.213.155.73", + "ipv6_addr_in": "2a03:1b20:6:f011::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "HQHCrq4J6bSpdW1fI5hR/bvcrYa6HgGgwaa5ZY749ik=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-002", + "ipv4_addr_in": "185.213.155.74", + "ipv6_addr_in": "2a03:1b20:6:f011::f101", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "s1c/NsfnqnwQSxao70DY4Co69AFT9e0h88IFuMD5mjs=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-003", + "ipv4_addr_in": "185.209.196.73", + "ipv6_addr_in": "2a03:1b20:6:f011::f201", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "vVQKs2TeTbdAvl3sH16UWLSESncXAj0oBaNuFIUkLVk=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-004", + "ipv4_addr_in": "185.209.196.74", + "ipv6_addr_in": "2a03:1b20:6:f011::f301", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "tzYLWgBdwrbbBCXYHRSoYIho4dHtrm+8bdONU1I8xzc=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-005", + "ipv4_addr_in": "185.209.196.75", + "ipv6_addr_in": "2a03:1b20:6:f011::f401", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "tpobOO6t18CzHjOg0S3RlZJMxd2tz4+BnRYS7NrjTnM=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-006", + "ipv4_addr_in": "185.209.196.76", + "ipv6_addr_in": "2a03:1b20:6:f011::f501", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "nAF0wrLG2+avwQfqxnXhBGPUBCvc3QCqWKH4nK5PfEU=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-007", + "ipv4_addr_in": "185.209.196.77", + "ipv6_addr_in": "2a03:1b20:6:f011::f601", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "mTmrSuXmTnIC9l2Ur3/QgodGrVEhhIE3pRwOHZpiYys=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-008", + "ipv4_addr_in": "185.209.196.78", + "ipv6_addr_in": "2a03:1b20:6:f011::f701", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "TOS3U/dJPzPnk/qsAx6gHxRVIC2wI5l+tAWaJY2mXzY=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-009", + "ipv4_addr_in": "185.213.155.72", + "ipv6_addr_in": "2a03:1b20:6:f011::f901", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "flq7zR8W5FxouHBuZoTRHY0A0qFEMQZF5uAgV4+sHVw=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-101", + "ipv4_addr_in": "146.70.117.162", + "ipv6_addr_in": "2001:ac8:20:274::a99f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Voioje9Gfb7aTiK2/H6VyHFK1AFap1glIX0Z1EX2mRQ=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-102", + "ipv4_addr_in": "146.70.117.194", + "ipv6_addr_in": "2001:ac8:20:275::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ydXFN45/kROELJrF6id+uIrnS5DvTKSCkZDjfL9De2Q=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-103", + "ipv4_addr_in": "146.70.117.226", + "ipv6_addr_in": "2001:ac8:20:276::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "KkShcqgwbkX2A9n1hhST6qu+m3ldxdJ2Lx8Eiw6mdXw=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-104", + "ipv4_addr_in": "146.70.107.194", + "ipv6_addr_in": "2001:ac8:20:277::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "uKTC5oP/zfn6SSjayiXDDR9L82X0tGYJd5LVn5kzyCc=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-105", + "ipv4_addr_in": "146.70.117.2", + "ipv6_addr_in": "2001:ac8:20:269::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Sttn2cr14dvIcCrE8qdlRGHXriqvTyvQWC7dzujH/iM=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-106", + "ipv4_addr_in": "146.70.117.34", + "ipv6_addr_in": "2001:ac8:20:270::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "9ldhvN7r4xGZkGehbsNfYb5tpyTJ5KBb5B3TbxCwklw=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-301", + "ipv4_addr_in": "194.36.25.3", + "ipv6_addr_in": "2a07:fe00:1::a23f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "dNKRyh2MkJGZdg9jyUJtf9w5GHjX3+/fYatg+xi9TUM=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-302", + "ipv4_addr_in": "194.36.25.18", + "ipv6_addr_in": "2a07:fe00:1::a24f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "A3DbIgPycEJhJ1fQ4zzcajLOKTZsJMeawjdPQiWav20=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-303", + "ipv4_addr_in": "194.36.25.33", + "ipv6_addr_in": "2a07:fe00:1::a25f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "2P+9SjwVCEnMDnBiYfZtQLq9p2S2TFhCM0xJBoevYk4=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-304", + "ipv4_addr_in": "194.36.25.48", + "ipv6_addr_in": "2a07:fe00:1::a26f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "VgNcwWy8MRhfEZY+XSisDM1ykX+uXlHQScOLqqGMLkc=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-401", + "ipv4_addr_in": "169.150.201.2", + "ipv6_addr_in": "2a02:6ea0:c762:1::a35f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "AbM8fnQWmmX6Nv0Tz68LigPbGkamJgNjxgzPfENOdXU=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-402", + "ipv4_addr_in": "169.150.201.15", + "ipv6_addr_in": "2a02:6ea0:c762:2::a36f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "6/PBbPtoeWpJA+HZc9Iqg/PPQWD7mGVvZdwQlr1vtRk=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-wg-403", + "ipv4_addr_in": "169.150.201.28", + "ipv6_addr_in": "2a02:6ea0:c762:3::a37f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "HWzSNMbQOQafkVp68B7aLRirhNJ6x5Wjw8/y7oUuHW0=", + "daita": false + } + }, + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + }, + { + "hostname": "de-fra-br-001", + "ipv4_addr_in": "185.213.155.117", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Germany", + "country_code": "de", + "city": "Frankfurt", + "city_code": "fra", + "latitude": 50.110924, + "longitude": 8.682127 + } + } + ] + } + ] + }, + { + "name": "Denmark", + "code": "dk", + "cities": [ + { + "name": "Copenhagen", + "code": "cph", + "latitude": 55.666667, + "longitude": 12.583333, + "relays": [ + { + "hostname": "dk-cph-ovpn-001", + "ipv4_addr_in": "141.98.254.71", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Denmark", + "country_code": "dk", + "city": "Copenhagen", + "city_code": "cph", + "latitude": 55.666667, + "longitude": 12.583333 + } + }, + { + "hostname": "dk-cph-ovpn-002", + "ipv4_addr_in": "45.129.56.81", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Denmark", + "country_code": "dk", + "city": "Copenhagen", + "city_code": "cph", + "latitude": 55.666667, + "longitude": 12.583333 + } + }, + { + "hostname": "dk-cph-ovpn-401", + "ipv4_addr_in": "146.70.197.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Denmark", + "country_code": "dk", + "city": "Copenhagen", + "city_code": "cph", + "latitude": 55.666667, + "longitude": 12.583333 + } + }, + { + "hostname": "dk-cph-ovpn-402", + "ipv4_addr_in": "146.70.197.2", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Denmark", + "country_code": "dk", + "city": "Copenhagen", + "city_code": "cph", + "latitude": 55.666667, + "longitude": 12.583333 + } + }, + { + "hostname": "dk-cph-wg-001", + "ipv4_addr_in": "45.129.56.67", + "ipv6_addr_in": "2a03:1b20:8:f011::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "egl+0TkpFU39F5O6r6+hIBMPQLOa8/t5CymOZV6CC3Y=", + "daita": false + } + }, + "location": { + "country": "Denmark", + "country_code": "dk", + "city": "Copenhagen", + "city_code": "cph", + "latitude": 55.666667, + "longitude": 12.583333 + } + }, + { + "hostname": "dk-cph-wg-002", + "ipv4_addr_in": "45.129.56.68", + "ipv6_addr_in": "2a03:1b20:8:f011::f101", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "R5LUBgM/1UjeAR4lt+L/yA30Gee6/VqVZ9eAB3ZTajs=", + "daita": false + } + }, + "location": { + "country": "Denmark", + "country_code": "dk", + "city": "Copenhagen", + "city_code": "cph", + "latitude": 55.666667, + "longitude": 12.583333 + } + }, + { + "hostname": "dk-cph-wg-401", + "ipv4_addr_in": "146.70.197.194", + "ipv6_addr_in": "2001:ac8:37:97::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Jjml2TSqKlgzW6UzPiJszaun743QYpyl5jQk8UOQYg0=", + "daita": false + } + }, + "location": { + "country": "Denmark", + "country_code": "dk", + "city": "Copenhagen", + "city_code": "cph", + "latitude": 55.666667, + "longitude": 12.583333 + } + }, + { + "hostname": "dk-cph-wg-402", + "ipv4_addr_in": "146.70.197.130", + "ipv6_addr_in": "2001:ac8:37:96::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ML0NcFPqy+x+ZJg7y9vfh77hXAOtgueIqp1j+CJVrXM=", + "daita": false + } + }, + "location": { + "country": "Denmark", + "country_code": "dk", + "city": "Copenhagen", + "city_code": "cph", + "latitude": 55.666667, + "longitude": 12.583333 + } + } + ] + } + ] + }, + { + "name": "Estonia", + "code": "ee", + "cities": [ + { + "name": "Tallinn", + "code": "tll", + "latitude": 59.436961, + "longitude": 24.753575, + "relays": [ + { + "hostname": "ee-tll-wg-001", + "ipv4_addr_in": "194.127.167.67", + "ipv6_addr_in": "2a07:d880:2::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "bdq37KtfoG1Tm7yQcfitdRyGeZOn/c7PwLN+LgG/6nA=", + "daita": false + } + }, + "location": { + "country": "Estonia", + "country_code": "ee", + "city": "Tallinn", + "city_code": "tll", + "latitude": 59.436961, + "longitude": 24.753575 + } + }, + { + "hostname": "ee-tll-wg-002", + "ipv4_addr_in": "194.127.167.87", + "ipv6_addr_in": "2a07:d880:2::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "vqGmmcERr/PAKDzy6Dxax8g4150rC93kmKYabZuAzws=", + "daita": false + } + }, + "location": { + "country": "Estonia", + "country_code": "ee", + "city": "Tallinn", + "city_code": "tll", + "latitude": 59.436961, + "longitude": 24.753575 + } + }, + { + "hostname": "ee-tll-wg-003", + "ipv4_addr_in": "194.127.167.107", + "ipv6_addr_in": "2a07:d880:2::a03f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "+8dUgpD7YA4wMPnRQkO7EI7AeYd30QPMKh/hOaaGIXY=", + "daita": false + } + }, + "location": { + "country": "Estonia", + "country_code": "ee", + "city": "Tallinn", + "city_code": "tll", + "latitude": 59.436961, + "longitude": 24.753575 + } + } + ] + } + ] + }, + { + "name": "Spain", + "code": "es", + "cities": [ + { + "name": "Barcelona", + "code": "bcn", + "latitude": 41.385063, + "longitude": 2.173404, + "relays": [ + { + "hostname": "es-bcn-wg-001", + "ipv4_addr_in": "185.188.61.195", + "ipv6_addr_in": "2a06:3040:2:210::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "asbfbY0oP07dBdmVNDSuO3o5rbkGnR56PkXTGXO7YFg=", + "daita": false + } + }, + "location": { + "country": "Spain", + "country_code": "es", + "city": "Barcelona", + "city_code": "bcn", + "latitude": 41.385063, + "longitude": 2.173404 + } + }, + { + "hostname": "es-bcn-wg-002", + "ipv4_addr_in": "185.188.61.225", + "ipv6_addr_in": "2a06:3040:2:210::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "SoTWu5Cf7JSfaPVftMrTVzeyICGc7oc+ODl6GfqzUHA=", + "daita": false + } + }, + "location": { + "country": "Spain", + "country_code": "es", + "city": "Barcelona", + "city_code": "bcn", + "latitude": 41.385063, + "longitude": 2.173404 + } + } + ] + }, + { + "name": "Madrid", + "code": "mad", + "latitude": 40.408566, + "longitude": -3.69222, + "relays": [ + { + "hostname": "es-mad-ovpn-201", + "ipv4_addr_in": "146.70.128.162", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Spain", + "country_code": "es", + "city": "Madrid", + "city_code": "mad", + "latitude": 40.408566, + "longitude": -3.69222 + } + }, + { + "hostname": "es-mad-ovpn-202", + "ipv4_addr_in": "146.70.74.98", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Spain", + "country_code": "es", + "city": "Madrid", + "city_code": "mad", + "latitude": 40.408566, + "longitude": -3.69222 + } + }, + { + "hostname": "es-mad-wg-101", + "ipv4_addr_in": "45.134.213.194", + "ipv6_addr_in": "2a02:6ea0:c318:1::a06f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "oPpPeyiQhUYqtOxwR387dmFfII8OK5LX2RPyns1rx2U=", + "daita": false + } + }, + "location": { + "country": "Spain", + "country_code": "es", + "city": "Madrid", + "city_code": "mad", + "latitude": 40.408566, + "longitude": -3.69222 + } + }, + { + "hostname": "es-mad-wg-102", + "ipv4_addr_in": "45.134.213.207", + "ipv6_addr_in": "2a02:6ea0:c318:2::a07f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "1Wo/cQeVHX2q9k95nxN+48lgkGLsPQ+uesRb/9XdY1Y=", + "daita": false + } + }, + "location": { + "country": "Spain", + "country_code": "es", + "city": "Madrid", + "city_code": "mad", + "latitude": 40.408566, + "longitude": -3.69222 + } + }, + { + "hostname": "es-mad-wg-201", + "ipv4_addr_in": "146.70.128.194", + "ipv6_addr_in": "2001:ac8:23:85::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "LyO4Xs1eV8JwFr63a1FRnKboQn2Tu/oeMzHhbr7Y6GU=", + "daita": false + } + }, + "location": { + "country": "Spain", + "country_code": "es", + "city": "Madrid", + "city_code": "mad", + "latitude": 40.408566, + "longitude": -3.69222 + } + }, + { + "hostname": "es-mad-wg-202", + "ipv4_addr_in": "146.70.128.226", + "ipv6_addr_in": "2001:ac8:23:86::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "iehXacO91FbBqni2IFxedEYPlW2Wvvt9GtRPPPMo9zc=", + "daita": false + } + }, + "location": { + "country": "Spain", + "country_code": "es", + "city": "Madrid", + "city_code": "mad", + "latitude": 40.408566, + "longitude": -3.69222 + } + } + ] + }, + { + "name": "Valencia", + "code": "vlc", + "latitude": 39.466667, + "longitude": -0.375, + "relays": [ + { + "hostname": "es-vlc-wg-001", + "ipv4_addr_in": "193.19.207.195", + "ipv6_addr_in": "2a06:3040:3:210::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "aEObX8ThiHcN/Y40UqY8dXaGMJsVQUWhrEphbpuQRkw=", + "daita": false + } + }, + "location": { + "country": "Spain", + "country_code": "es", + "city": "Valencia", + "city_code": "vlc", + "latitude": 39.466667, + "longitude": -0.375 + } + }, + { + "hostname": "es-vlc-wg-002", + "ipv4_addr_in": "193.19.207.225", + "ipv6_addr_in": "2a06:3040:3:210::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "JEDqyG7iGjy/rYsE/9H7y0Sz8Sl+KWYYUvkPG7NnCjk=", + "daita": false + } + }, + "location": { + "country": "Spain", + "country_code": "es", + "city": "Valencia", + "city_code": "vlc", + "latitude": 39.466667, + "longitude": -0.375 + } + } + ] + } + ] + }, + { + "name": "Finland", + "code": "fi", + "cities": [ + { + "name": "Helsinki", + "code": "hel", + "latitude": 60.192059, + "longitude": 24.945831, + "relays": [ + { + "hostname": "fi-hel-ovpn-001", + "ipv4_addr_in": "185.204.1.171", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-ovpn-002", + "ipv4_addr_in": "185.204.1.172", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-ovpn-003", + "ipv4_addr_in": "185.204.1.173", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-ovpn-004", + "ipv4_addr_in": "185.204.1.174", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-ovpn-005", + "ipv4_addr_in": "185.204.1.175", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-ovpn-006", + "ipv4_addr_in": "185.204.1.176", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-ovpn-007", + "ipv4_addr_in": "185.212.149.201", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-ovpn-101", + "ipv4_addr_in": "193.138.7.217", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 101, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-ovpn-102", + "ipv4_addr_in": "193.138.7.237", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-wg-001", + "ipv4_addr_in": "185.204.1.203", + "ipv6_addr_in": "2a0c:f040:0:2790::a01f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "veLqpZazR9j/Ol2G8TfrO32yEhc1i543MCN8rpy1FBA=", + "daita": false + } + }, + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-wg-002", + "ipv4_addr_in": "185.204.1.211", + "ipv6_addr_in": "2a0c:f040:0:2790::a02f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "8BbP3GS01dGkN5ENk1Rgedxfd80friyVOABrdMgD3EY=", + "daita": false + } + }, + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-wg-003", + "ipv4_addr_in": "185.204.1.219", + "ipv6_addr_in": "2a0c:f040:0:2790::a03f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Creanova", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "FKodo9V6BehkNphL+neI0g4/G/cjbZyYhoptSWf3Si4=", + "daita": false + } + }, + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-wg-101", + "ipv4_addr_in": "193.138.7.137", + "ipv6_addr_in": "2a02:ed04:3581:1::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "2S3G7Sm9DVG6+uJtlDu4N6ed5V97sTbA5dCSkUelWyk=", + "daita": false + } + }, + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-wg-102", + "ipv4_addr_in": "193.138.7.157", + "ipv6_addr_in": "2a02:ed04:3581:2::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "xeHVhXxyyFqUEE+nsu5Tzd/t9en+++4fVFcSFngpcAU=", + "daita": false + } + }, + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-wg-103", + "ipv4_addr_in": "193.138.7.177", + "ipv6_addr_in": "2a02:ed04:3581:3::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Mlvu14bSD6jb7ajH/CiJ/IO8W+spB8H6VmdGkFGOcUQ=", + "daita": false + } + }, + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-wg-104", + "ipv4_addr_in": "193.138.7.197", + "ipv6_addr_in": "2a02:ed04:3581:4::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "keRQGHUbYP2qgDTbYqOsI9byfNb0LOpTZ/KdC67cJiA=", + "daita": false + } + }, + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + }, + { + "hostname": "fi-hel-br-101", + "ipv4_addr_in": "193.138.7.132", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Finland", + "country_code": "fi", + "city": "Helsinki", + "city_code": "hel", + "latitude": 60.192059, + "longitude": 24.945831 + } + } + ] + } + ] + }, + { + "name": "France", + "code": "fr", + "cities": [ + { + "name": "Bordeaux", + "code": "bod", + "latitude": 44.837788, + "longitude": -0.57918, + "relays": [ + { + "hostname": "fr-bod-wg-001", + "ipv4_addr_in": "45.134.79.67", + "ipv6_addr_in": "2a06:3040:4:610::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "y6dcYS7MPeApbLoWLahjku5w5cufnNkwHzj1iwDPpS0=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Bordeaux", + "city_code": "bod", + "latitude": 44.837788, + "longitude": -0.57918 + } + }, + { + "hostname": "fr-bod-wg-002", + "ipv4_addr_in": "45.134.79.97", + "ipv6_addr_in": "2a06:3040:4:610::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ZBOJ2w5DqG35T1zjV/F1UgrXkDhNxObnwdm2FUwyu2o=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Bordeaux", + "city_code": "bod", + "latitude": 44.837788, + "longitude": -0.57918 + } + } + ] + }, + { + "name": "Marseille", + "code": "mrs", + "latitude": 43.29648, + "longitude": 5.38107, + "relays": [ + { + "hostname": "fr-mrs-wg-001", + "ipv4_addr_in": "138.199.15.162", + "ipv6_addr_in": "2a02:6ea0:dc05::a15f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "MOk2OTDEaFFN4vsCAgf+qQi6IlY99nCeDEzpXyo65wg=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Marseille", + "city_code": "mrs", + "latitude": 43.29648, + "longitude": 5.38107 + } + }, + { + "hostname": "fr-mrs-wg-002", + "ipv4_addr_in": "138.199.15.146", + "ipv6_addr_in": "2a02:6ea0:dc06::a16f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "Z0LEgZIPhNj0+/VWknU3roHlVI3qqAfoV6th9NSC0F0=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Marseille", + "city_code": "mrs", + "latitude": 43.29648, + "longitude": 5.38107 + } + } + ] + }, + { + "name": "Paris", + "code": "par", + "latitude": 48.866667, + "longitude": 2.333333, + "relays": [ + { + "hostname": "fr-par-ovpn-001", + "ipv4_addr_in": "193.32.126.81", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-ovpn-002", + "ipv4_addr_in": "193.32.126.82", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-ovpn-003", + "ipv4_addr_in": "193.32.126.83", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-ovpn-101", + "ipv4_addr_in": "146.70.184.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-ovpn-102", + "ipv4_addr_in": "146.70.184.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-wg-001", + "ipv4_addr_in": "193.32.126.66", + "ipv6_addr_in": "2a03:1b20:9:f011::a01f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ov323GyDOEHLT0sNRUUPYiE3BkvFDjpmi1a4fzv49hE=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-wg-002", + "ipv4_addr_in": "193.32.126.67", + "ipv6_addr_in": "2a03:1b20:9:f011::f101", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "R5Ve+PJD24QjNXi2Dim7szwCiOLnv+6hg+WyTudAYmE=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-wg-003", + "ipv4_addr_in": "193.32.126.68", + "ipv6_addr_in": "2a03:1b20:9:f011::f201", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "w4r/o6VImF7l0/De3JpOGnpzjAFv9wcCu8Rop5eZkWc=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-wg-004", + "ipv4_addr_in": "193.32.126.69", + "ipv6_addr_in": "2a03:1b20:9:f011::f301", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "E/KjR7nlFouuRXh1pwGDr7iK2TAZ6c4K0LjjmA1A2Tc=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-wg-005", + "ipv4_addr_in": "193.32.126.70", + "ipv6_addr_in": "2a03:1b20:9:f011::f401", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "cmqtSjWUa4/0bENQDKxdr0vQqf4nFVDodarHm0Pc0hY=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-wg-006", + "ipv4_addr_in": "193.32.126.84", + "ipv6_addr_in": "2a03:1b20:9:f011::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "x0k8A2S7Dx7VNX2Yo2qRPZW/VefIogID5bVynklBugE=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-wg-101", + "ipv4_addr_in": "146.70.184.2", + "ipv6_addr_in": "2001:ac8:25:3a::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "e2uj1eu/ZuTPqfY+9ULa6KFPRGLkSWCaooXBg9u9igA=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-wg-102", + "ipv4_addr_in": "146.70.184.66", + "ipv6_addr_in": "2001:ac8:25:3b::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "TR0Gedkbp2mRRXKZ7VB7qaAvJHuQlwaaLFc4fxb4q2M=", + "daita": false + } + }, + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + }, + { + "hostname": "fr-par-br-001", + "ipv4_addr_in": "193.32.126.117", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "France", + "country_code": "fr", + "city": "Paris", + "city_code": "par", + "latitude": 48.866667, + "longitude": 2.333333 + } + } + ] + } + ] + }, + { + "name": "UK", + "code": "gb", + "cities": [ + { + "name": "Glasgow", + "code": "glw", + "latitude": 55.86515, + "longitude": -4.25763, + "relays": [ + { + "hostname": "gb-glw-wg-001", + "ipv4_addr_in": "185.201.188.3", + "ipv6_addr_in": "2a06:3040:d:410::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "xCPSxGj0QVKC637D8HpRsUUCaSfgAF4ephG/CjhQ2kU=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Glasgow", + "city_code": "glw", + "latitude": 55.86515, + "longitude": -4.25763 + } + }, + { + "hostname": "gb-glw-wg-002", + "ipv4_addr_in": "185.201.188.33", + "ipv6_addr_in": "2a06:3040:d:410::f101", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "tX+LKwiFvZhGtbuJq8e62+/vhogHNqdAdjHeoOlWqws=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Glasgow", + "city_code": "glw", + "latitude": 55.86515, + "longitude": -4.25763 + } + } + ] + }, + { + "name": "London", + "code": "lon", + "latitude": 51.514125, + "longitude": -0.093689, + "relays": [ + { + "hostname": "gb-lon-ovpn-001", + "ipv4_addr_in": "141.98.252.131", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-ovpn-002", + "ipv4_addr_in": "141.98.252.132", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-ovpn-003", + "ipv4_addr_in": "141.98.252.133", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-ovpn-005", + "ipv4_addr_in": "185.195.232.85", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-ovpn-006", + "ipv4_addr_in": "185.195.232.86", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-ovpn-301", + "ipv4_addr_in": "146.70.119.98", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-ovpn-302", + "ipv4_addr_in": "146.70.119.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-001", + "ipv4_addr_in": "141.98.252.130", + "ipv6_addr_in": "2a03:1b20:7:f011::a01f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "IJJe0TQtuQOyemL4IZn6oHEsMKSPqOuLfD5HoAWEPTY=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-002", + "ipv4_addr_in": "141.98.252.222", + "ipv6_addr_in": "2a03:1b20:7:f011::a02f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "J57ba81Q8bigy9RXBXvl0DgABTrbl81nb37GuX50gnY=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-003", + "ipv4_addr_in": "185.195.232.66", + "ipv6_addr_in": "2a03:1b20:7:f011::a11f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "VZwE8hrpNzg6SMwn9LtEqonXzSWd5dkFk62PrNWFW3Y=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-004", + "ipv4_addr_in": "185.195.232.67", + "ipv6_addr_in": "2a03:1b20:7:f011::a12f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "PLpO9ikFX1garSFaeUpo7XVSMrILrTB8D9ZwQt6Zgwk=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-005", + "ipv4_addr_in": "185.195.232.68", + "ipv6_addr_in": "2a03:1b20:7:f011::a13f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "bG6WulLmMK408n719B8nQJNuTRyRA3Qjm7bsm9d6v2M=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-006", + "ipv4_addr_in": "185.195.232.69", + "ipv6_addr_in": "2a03:1b20:7:f011::a14f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "INRhM0h4T1hi9j28pcC+vRv47bp7DIsNKtagaFZFSBI=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-007", + "ipv4_addr_in": "185.195.232.70", + "ipv6_addr_in": "2a03:1b20:7:f011::a15f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "MVqe9e9aDwfFuvEhEn4Wd/zWV3cmiCX9fZMWetz+23A=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-008", + "ipv4_addr_in": "141.98.252.138", + "ipv6_addr_in": "2a03:1b20:7:f011::f801", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "uHkxYjfx6yzPHSdyqYqSEHsgFNFV8QCSV6aghuQK3AA=", + "daita": true + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-201", + "ipv4_addr_in": "185.248.85.3", + "ipv6_addr_in": "2a0b:89c1:3::a33f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "b71Y8V/vVwNRGkL4d1zvApDVL18u7m31dN+x+i5OJVs=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-202", + "ipv4_addr_in": "185.248.85.18", + "ipv6_addr_in": "2a0b:89c1:3::a34f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "+iQWuT3wb2DCy1u2eUKovhJTCB4aUdJUnpxGtONDIVE=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-203", + "ipv4_addr_in": "185.248.85.33", + "ipv6_addr_in": "2a0b:89c1:3::a35f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "G7XDQqevQOw1SVL7Iarn9PM+RvmI6H/CfkmahBYEG0g=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-204", + "ipv4_addr_in": "185.248.85.48", + "ipv6_addr_in": "2a0b:89c1:3::a36f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "tJVHqpfkV2Xgmd4YK60aoErSt6PmJKJjkggHNDfWwiU=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-301", + "ipv4_addr_in": "146.70.119.66", + "ipv6_addr_in": "2001:ac8:31:f007::a39f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Gn9WbiHw83r8BI+v/Usx3mSR+TpMAWLFFz0r9Lfy7XQ=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-302", + "ipv4_addr_in": "146.70.119.2", + "ipv6_addr_in": "2001:ac8:31:f005::a37f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "s0i/bDeQ3xfMsLSrg6bILWunyytJNHVgIJlfflA8jFI=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-303", + "ipv4_addr_in": "146.70.119.34", + "ipv6_addr_in": "2001:ac8:31:f006::a38f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ZcDVPTugbxo0rTvDKNnexzJ2qNrh3c/wFRtM2Pfl6jM=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + }, + { + "hostname": "gb-lon-wg-304", + "ipv4_addr_in": "146.70.119.162", + "ipv6_addr_in": "2001:ac8:31:f00a::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "nirHSVXCvnxR3aIW95BN0YV02vW/2I7DaeSexqgHW1I=", + "daita": true + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "London", + "city_code": "lon", + "latitude": 51.514125, + "longitude": -0.093689 + } + } + ] + }, + { + "name": "Manchester", + "code": "mnc", + "latitude": 53.5, + "longitude": -2.216667, + "relays": [ + { + "hostname": "gb-mnc-ovpn-001", + "ipv4_addr_in": "146.70.132.2", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-ovpn-002", + "ipv4_addr_in": "146.70.132.34", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-ovpn-003", + "ipv4_addr_in": "146.70.132.66", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-ovpn-004", + "ipv4_addr_in": "146.70.132.98", + "ipv6_addr_in": null, + "include_in_country": false, + "active": false, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-wg-001", + "ipv4_addr_in": "146.70.133.98", + "ipv6_addr_in": "2001:ac8:8b:2d::a47f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Q2khJLbTSFxmppPGHgq2HdxMQx7CczPZCgVpYZMoNnM=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-wg-002", + "ipv4_addr_in": "146.70.132.130", + "ipv6_addr_in": "2001:ac8:8b:26::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "SkERuKByX8fynFxSFAJVjUFJAeu9b/dfW2FynTM7XAk=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-wg-003", + "ipv4_addr_in": "146.70.132.162", + "ipv6_addr_in": "2001:ac8:8b:27::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "c+RjxBk+wZCv0s4jffQesHdInakRVR3oV0IhpVo0WRY=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-wg-004", + "ipv4_addr_in": "146.70.132.194", + "ipv6_addr_in": "2001:ac8:8b:28::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "DiMqK85O8U1T65HdVgOGh9uI63I3by9Dt6Shik2xbyM=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-wg-005", + "ipv4_addr_in": "146.70.132.226", + "ipv6_addr_in": "2001:ac8:8b:29::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "kbVlSaqHQSpnewQn1X0j5R+WKiSW2e2Gq+I4XZj3Bjk=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-wg-006", + "ipv4_addr_in": "146.70.133.2", + "ipv6_addr_in": "2001:ac8:8b:2a::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "zKOZzAitVBxfdxtXgGIyk7zmTtoHrVts7RQGrtsRIxo=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-wg-007", + "ipv4_addr_in": "146.70.133.34", + "ipv6_addr_in": "2001:ac8:8b:2b::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ANaRAtjxqpPgp7r9VjTDfnBMis+MzSgCXc7TZMa0Vno=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-wg-008", + "ipv4_addr_in": "146.70.133.66", + "ipv6_addr_in": "2001:ac8:8b:2c::f001", + "include_in_country": false, + "active": false, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "2bciRobW0TPtjrZ2teilr+7PjyiBMUGfixvAKOE52Xo=", + "daita": false + } + }, + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + }, + { + "hostname": "gb-mnc-br-001", + "ipv4_addr_in": "89.238.134.58", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "UK", + "country_code": "gb", + "city": "Manchester", + "city_code": "mnc", + "latitude": 53.5, + "longitude": -2.216667 + } + } + ] + } + ] + }, + { + "name": "Greece", + "code": "gr", + "cities": [ + { + "name": "Athens", + "code": "ath", + "latitude": 37.98381, + "longitude": 23.727539, + "relays": [ + { + "hostname": "gr-ath-ovpn-101", + "ipv4_addr_in": "149.102.246.28", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Greece", + "country_code": "gr", + "city": "Athens", + "city_code": "ath", + "latitude": 37.98381, + "longitude": 23.727539 + } + }, + { + "hostname": "gr-ath-ovpn-102", + "ipv4_addr_in": "149.102.246.41", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Greece", + "country_code": "gr", + "city": "Athens", + "city_code": "ath", + "latitude": 37.98381, + "longitude": 23.727539 + } + }, + { + "hostname": "gr-ath-wg-101", + "ipv4_addr_in": "149.102.246.2", + "ipv6_addr_in": "2a02:6ea0:f501:2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "li+thkAD7s6IZDgUoiKw4YSjM/U1q203PuthMzIJIU0=", + "daita": false + } + }, + "location": { + "country": "Greece", + "country_code": "gr", + "city": "Athens", + "city_code": "ath", + "latitude": 37.98381, + "longitude": 23.727539 + } + }, + { + "hostname": "gr-ath-wg-102", + "ipv4_addr_in": "149.102.246.15", + "ipv6_addr_in": "2a02:6ea0:f501:3::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "OL0gbjlNt1s26CDQjRP9wgMZbgYff7/xyUI8ypOn01s=", + "daita": false + } + }, + "location": { + "country": "Greece", + "country_code": "gr", + "city": "Athens", + "city_code": "ath", + "latitude": 37.98381, + "longitude": 23.727539 + } + } + ] + } + ] + }, + { + "name": "Hong Kong", + "code": "hk", + "cities": [ + { + "name": "Hong Kong", + "code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15, + "relays": [ + { + "hostname": "hk-hkg-ovpn-201", + "ipv4_addr_in": "103.125.233.33", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + }, + { + "hostname": "hk-hkg-ovpn-202", + "ipv4_addr_in": "103.125.233.48", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + }, + { + "hostname": "hk-hkg-ovpn-301", + "ipv4_addr_in": "146.70.224.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + }, + { + "hostname": "hk-hkg-ovpn-302", + "ipv4_addr_in": "146.70.224.196", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + }, + { + "hostname": "hk-hkg-wg-201", + "ipv4_addr_in": "103.125.233.18", + "ipv6_addr_in": "2403:2c81:1000::a06f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Oxh13dmwY6nNUa5rVHr7sLiFOj0fjzsaAUAUV87/nGs=", + "daita": false + } + }, + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + }, + { + "hostname": "hk-hkg-wg-202", + "ipv4_addr_in": "103.125.233.3", + "ipv6_addr_in": "2403:2c81:1000::a05f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "zmhMPHfkgo+uQxP+l919Gw7cj5NTatg9nMU37eEUWis=", + "daita": false + } + }, + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + }, + { + "hostname": "hk-hkg-wg-301", + "ipv4_addr_in": "146.70.224.2", + "ipv6_addr_in": "2001:ac8:a:f::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "qbvU06SBHXnqMnpb49rnE0yC4AOWQcWl2bEScu18dh8=", + "daita": false + } + }, + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + }, + { + "hostname": "hk-hkg-wg-302", + "ipv4_addr_in": "146.70.224.66", + "ipv6_addr_in": "2001:ac8:a:19::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "7FADgmd9KyAVs3eFJE/ob9tV3E6m/klONEEIOfCoPTU=", + "daita": false + } + }, + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + }, + { + "hostname": "hk-hkg-br-201", + "ipv4_addr_in": "103.125.233.210", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Hong Kong", + "country_code": "hk", + "city": "Hong Kong", + "city_code": "hkg", + "latitude": 22.2833333, + "longitude": 114.15 + } + } + ] + } + ] + }, + { + "name": "Croatia", + "code": "hr", + "cities": [ + { + "name": "Zagreb", + "code": "zag", + "latitude": 45.821, + "longitude": 15.973, + "relays": [ + { + "hostname": "hr-zag-wg-001", + "ipv4_addr_in": "154.47.29.2", + "ipv6_addr_in": "2a02:6ea0:f401:1::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "PJvsgLogdAgZiVSxwTDyk9ri02mLZGuElklHShIjDGM=", + "daita": false + } + }, + "location": { + "country": "Croatia", + "country_code": "hr", + "city": "Zagreb", + "city_code": "zag", + "latitude": 45.821, + "longitude": 15.973 + } + }, + { + "hostname": "hr-zag-wg-002", + "ipv4_addr_in": "154.47.29.15", + "ipv6_addr_in": "2a02:6ea0:f401:2::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "V0iDOyLSj870sjGGenDvAWqJudlPKDc212cQN85snEo=", + "daita": false + } + }, + "location": { + "country": "Croatia", + "country_code": "hr", + "city": "Zagreb", + "city_code": "zag", + "latitude": 45.821, + "longitude": 15.973 + } + } + ] + } + ] + }, + { + "name": "Hungary", + "code": "hu", + "cities": [ + { + "name": "Budapest", + "code": "bud", + "latitude": 47.5, + "longitude": 19.083333, + "relays": [ + { + "hostname": "hu-bud-ovpn-101", + "ipv4_addr_in": "146.70.196.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Hungary", + "country_code": "hu", + "city": "Budapest", + "city_code": "bud", + "latitude": 47.5, + "longitude": 19.083333 + } + }, + { + "hostname": "hu-bud-ovpn-102", + "ipv4_addr_in": "146.70.196.2", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Hungary", + "country_code": "hu", + "city": "Budapest", + "city_code": "bud", + "latitude": 47.5, + "longitude": 19.083333 + } + }, + { + "hostname": "hu-bud-wg-101", + "ipv4_addr_in": "146.70.196.194", + "ipv6_addr_in": "2001:ac8:26:55::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "u+h0GmQJ8UBaMTi2BP9Ls6UUszcGC51y6vTmNr/y+AU=", + "daita": false + } + }, + "location": { + "country": "Hungary", + "country_code": "hu", + "city": "Budapest", + "city_code": "bud", + "latitude": 47.5, + "longitude": 19.083333 + } + }, + { + "hostname": "hu-bud-wg-102", + "ipv4_addr_in": "146.70.196.130", + "ipv6_addr_in": "2001:ac8:26:54::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "iEWLm2F4xV013ZETeZcT1dyUd5O+JnyndHso8RP8txw=", + "daita": false + } + }, + "location": { + "country": "Hungary", + "country_code": "hu", + "city": "Budapest", + "city_code": "bud", + "latitude": 47.5, + "longitude": 19.083333 + } + } + ] + } + ] + }, + { + "name": "Indonesia", + "code": "id", + "cities": [ + { + "name": "Jakarta", + "code": "jpu", + "latitude": -6.17511, + "longitude": 106.865036, + "relays": [ + { + "hostname": "id-jpu-wg-001", + "ipv4_addr_in": "129.227.46.130", + "ipv6_addr_in": "2602:ffe4:c0d:801d::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Zenlayer", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "XYQvOrRqu8j521Hy/8+jGRDLZoSAssOvCectyKz350Y=", + "daita": false + } + }, + "location": { + "country": "Indonesia", + "country_code": "id", + "city": "Jakarta", + "city_code": "jpu", + "latitude": -6.17511, + "longitude": 106.865036 + } + }, + { + "hostname": "id-jpu-wg-002", + "ipv4_addr_in": "129.227.46.162", + "ipv6_addr_in": "2602:ffe4:c0d:801e::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Zenlayer", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "gWsH1w7lTYbsS+WxsE6w6vtXSAJoHM6PhDX5DFMYM1k=", + "daita": false + } + }, + "location": { + "country": "Indonesia", + "country_code": "id", + "city": "Jakarta", + "city_code": "jpu", + "latitude": -6.17511, + "longitude": 106.865036 + } + } + ] + } + ] + }, + { + "name": "Ireland", + "code": "ie", + "cities": [ + { + "name": "Dublin", + "code": "dub", + "latitude": 53.35014, + "longitude": -6.266155, + "relays": [ + { + "hostname": "ie-dub-ovpn-101", + "ipv4_addr_in": "146.70.189.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Ireland", + "country_code": "ie", + "city": "Dublin", + "city_code": "dub", + "latitude": 53.35014, + "longitude": -6.266155 + } + }, + { + "hostname": "ie-dub-ovpn-102", + "ipv4_addr_in": "146.70.189.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Ireland", + "country_code": "ie", + "city": "Dublin", + "city_code": "dub", + "latitude": 53.35014, + "longitude": -6.266155 + } + }, + { + "hostname": "ie-dub-wg-101", + "ipv4_addr_in": "146.70.189.2", + "ipv6_addr_in": "2001:ac8:88:84::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "lHrukA9+vn7Jjzx2Nb/1NQ0WiaiKppEqVxrGT5X1RFQ=", + "daita": false + } + }, + "location": { + "country": "Ireland", + "country_code": "ie", + "city": "Dublin", + "city_code": "dub", + "latitude": 53.35014, + "longitude": -6.266155 + } + }, + { + "hostname": "ie-dub-wg-102", + "ipv4_addr_in": "146.70.189.66", + "ipv6_addr_in": "2001:ac8:88:85::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "8YhrVbViPmYFZ2KJF2pR7d10EaBz8PJbPtoEiAs1IXA=", + "daita": false + } + }, + "location": { + "country": "Ireland", + "country_code": "ie", + "city": "Dublin", + "city_code": "dub", + "latitude": 53.35014, + "longitude": -6.266155 + } + } + ] + } + ] + }, + { + "name": "Israel", + "code": "il", + "cities": [ + { + "name": "Tel Aviv", + "code": "tlv", + "latitude": 32.0852999, + "longitude": 34.7817676, + "relays": [ + { + "hostname": "il-tlv-wg-101", + "ipv4_addr_in": "169.150.227.197", + "ipv6_addr_in": "2a02:6ea0:3b00:1::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "XOedjVJaT2IrEDJbzvtZeL4hP5uPRHzFxvD1cwVwUFo=", + "daita": false + } + }, + "location": { + "country": "Israel", + "country_code": "il", + "city": "Tel Aviv", + "city_code": "tlv", + "latitude": 32.0852999, + "longitude": 34.7817676 + } + }, + { + "hostname": "il-tlv-wg-102", + "ipv4_addr_in": "169.150.227.210", + "ipv6_addr_in": "2a02:6ea0:3b00:2::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "UNeML4rXjvOerAstTNf4gG5B+OfjVzjSQrWE6mrswD0=", + "daita": false + } + }, + "location": { + "country": "Israel", + "country_code": "il", + "city": "Tel Aviv", + "city_code": "tlv", + "latitude": 32.0852999, + "longitude": 34.7817676 + } + }, + { + "hostname": "il-tlv-wg-103", + "ipv4_addr_in": "169.150.227.222", + "ipv6_addr_in": "2a02:6ea0:3b00:3::a03f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "11FJ/NY3jaAw1PSYG9w7bxsMxAzlI+1p8/juh1LJPT0=", + "daita": false + } + }, + "location": { + "country": "Israel", + "country_code": "il", + "city": "Tel Aviv", + "city_code": "tlv", + "latitude": 32.0852999, + "longitude": 34.7817676 + } + } + ] + } + ] + }, + { + "name": "Italy", + "code": "it", + "cities": [ + { + "name": "Milan", + "code": "mil", + "latitude": 45.466667, + "longitude": 9.2, + "relays": [ + { + "hostname": "it-mil-ovpn-201", + "ipv4_addr_in": "146.70.225.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Italy", + "country_code": "it", + "city": "Milan", + "city_code": "mil", + "latitude": 45.466667, + "longitude": 9.2 + } + }, + { + "hostname": "it-mil-ovpn-202", + "ipv4_addr_in": "146.70.225.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Italy", + "country_code": "it", + "city": "Milan", + "city_code": "mil", + "latitude": 45.466667, + "longitude": 9.2 + } + }, + { + "hostname": "it-mil-wg-001", + "ipv4_addr_in": "178.249.211.66", + "ipv6_addr_in": "2a02:6ea0:d509:1::a09f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "Sa9fFFthvihGMO4cPExJ7ZaWSHNYoXmOqZMvJsaxOVk=", + "daita": false + } + }, + "location": { + "country": "Italy", + "country_code": "it", + "city": "Milan", + "city_code": "mil", + "latitude": 45.466667, + "longitude": 9.2 + } + }, + { + "hostname": "it-mil-wg-002", + "ipv4_addr_in": "178.249.211.79", + "ipv6_addr_in": "2a02:6ea0:d509:2::a10f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "RJ7e37UEP6hfyLQM/lJ2K5wcZOJQFhm2VhFaBniH1kg=", + "daita": false + } + }, + "location": { + "country": "Italy", + "country_code": "it", + "city": "Milan", + "city_code": "mil", + "latitude": 45.466667, + "longitude": 9.2 + } + }, + { + "hostname": "it-mil-wg-003", + "ipv4_addr_in": "178.249.211.92", + "ipv6_addr_in": "2a02:6ea0:d509:3::a11f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "WOyki5Gzoez07X7D3jAhG68hpoiYIWAx1yypVbkQaVY=", + "daita": false + } + }, + "location": { + "country": "Italy", + "country_code": "it", + "city": "Milan", + "city_code": "mil", + "latitude": 45.466667, + "longitude": 9.2 + } + }, + { + "hostname": "it-mil-wg-201", + "ipv4_addr_in": "146.70.225.2", + "ipv6_addr_in": "2001:ac8:24:17::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "XHwDoIVZGoVfUYbfcPiRp1LhaOCDc0A3QrS72i3ztBw=", + "daita": false + } + }, + "location": { + "country": "Italy", + "country_code": "it", + "city": "Milan", + "city_code": "mil", + "latitude": 45.466667, + "longitude": 9.2 + } + }, + { + "hostname": "it-mil-wg-202", + "ipv4_addr_in": "146.70.225.66", + "ipv6_addr_in": "2001:ac8:24:18::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "y5raL0QZx2CpOozrL+Knmjj7nnly3JKatFnxynjXpE0=", + "daita": false + } + }, + "location": { + "country": "Italy", + "country_code": "it", + "city": "Milan", + "city_code": "mil", + "latitude": 45.466667, + "longitude": 9.2 + } + } + ] + }, + { + "name": "Palermo", + "code": "pmo", + "latitude": 38.115688, + "longitude": 13.361267, + "relays": [ + { + "hostname": "it-pmo-wg-001", + "ipv4_addr_in": "149.22.91.66", + "ipv6_addr_in": "2a02:6ea0:4f00::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "cE6s9wV8jfAa84sgXWJ5C4d769m5Ki/XA3rxPdMWhVw=", + "daita": false + } + }, + "location": { + "country": "Italy", + "country_code": "it", + "city": "Palermo", + "city_code": "pmo", + "latitude": 38.115688, + "longitude": 13.361267 + } + }, + { + "hostname": "it-pmo-wg-002", + "ipv4_addr_in": "149.22.91.79", + "ipv6_addr_in": "2a02:6ea0:4f00::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "bGtOejMzRDKzFR1gNBAi185dkr/5RtN+QiC8EVl4kU4=", + "daita": false + } + }, + "location": { + "country": "Italy", + "country_code": "it", + "city": "Palermo", + "city_code": "pmo", + "latitude": 38.115688, + "longitude": 13.361267 + } + } + ] + } + ] + }, + { + "name": "Japan", + "code": "jp", + "cities": [ + { + "name": "Osaka", + "code": "osa", + "latitude": 34.672314, + "longitude": 135.484802, + "relays": [ + { + "hostname": "jp-osa-wg-001", + "ipv4_addr_in": "194.114.136.3", + "ipv6_addr_in": "2400:ddc0:a00b::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "uhbuY1A7g0yNu0lRhLTi020kYeAx34ED30BA5DQRHFo=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Osaka", + "city_code": "osa", + "latitude": 34.672314, + "longitude": 135.484802 + } + }, + { + "hostname": "jp-osa-wg-002", + "ipv4_addr_in": "194.114.136.34", + "ipv6_addr_in": "2400:ddc0:a00b::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "wzGXxsYOraTCPZuRxfXVTNmoWsRkMFLqMqDxI4PutBg=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Osaka", + "city_code": "osa", + "latitude": 34.672314, + "longitude": 135.484802 + } + }, + { + "hostname": "jp-osa-wg-003", + "ipv4_addr_in": "194.114.136.65", + "ipv6_addr_in": "2400:ddc0:a00b::f201", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Pt18GnBffElW0sqnd6IDRr5r0B/NDezy6NicoPI+fG8=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Osaka", + "city_code": "osa", + "latitude": 34.672314, + "longitude": 135.484802 + } + }, + { + "hostname": "jp-osa-wg-004", + "ipv4_addr_in": "194.114.136.96", + "ipv6_addr_in": "2400:ddc0:a00b::f301", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "JpDAtRuR39GLFKoQNiKvpzuJ65jOOLD7h85ekZ3reVc=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Osaka", + "city_code": "osa", + "latitude": 34.672314, + "longitude": 135.484802 + } + } + ] + }, + { + "name": "Tokyo", + "code": "tyo", + "latitude": 35.685, + "longitude": 139.751389, + "relays": [ + { + "hostname": "jp-tyo-ovpn-201", + "ipv4_addr_in": "146.70.201.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Tokyo", + "city_code": "tyo", + "latitude": 35.685, + "longitude": 139.751389 + } + }, + { + "hostname": "jp-tyo-ovpn-202", + "ipv4_addr_in": "146.70.201.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Tokyo", + "city_code": "tyo", + "latitude": 35.685, + "longitude": 139.751389 + } + }, + { + "hostname": "jp-tyo-wg-001", + "ipv4_addr_in": "138.199.21.239", + "ipv6_addr_in": "2a02:6ea0:d31c::a15f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "AUo2zhQ0wCDy3/jmZgOe4QMncWWqrdME7BbY2UlkgyI=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Tokyo", + "city_code": "tyo", + "latitude": 35.685, + "longitude": 139.751389 + } + }, + { + "hostname": "jp-tyo-wg-002", + "ipv4_addr_in": "138.199.21.226", + "ipv6_addr_in": "2a02:6ea0:d31b::a14f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "zdlqydCbeR7sG1y5L8sS65X1oOtRKvfVbAuFgqEGhi4=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Tokyo", + "city_code": "tyo", + "latitude": 35.685, + "longitude": 139.751389 + } + }, + { + "hostname": "jp-tyo-wg-201", + "ipv4_addr_in": "146.70.138.194", + "ipv6_addr_in": "2001:ac8:40:11::b01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "0j7u9Vd+EsqFs8XeV/T/ZM7gE+TWgEsYCsqcZUShvzc=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Tokyo", + "city_code": "tyo", + "latitude": 35.685, + "longitude": 139.751389 + } + }, + { + "hostname": "jp-tyo-wg-202", + "ipv4_addr_in": "146.70.201.2", + "ipv6_addr_in": "2001:ac8:40:13::b02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "yLKGIH/eaNUnrOEPRtgvC3PSMTkyAFK/0t8lNjam02k=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Tokyo", + "city_code": "tyo", + "latitude": 35.685, + "longitude": 139.751389 + } + }, + { + "hostname": "jp-tyo-wg-203", + "ipv4_addr_in": "146.70.201.66", + "ipv6_addr_in": "2001:ac8:40:14::b03f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "tgTYDEfbDgr35h6hYW01MH76CJrwuBvbQFhyVsazEic=", + "daita": false + } + }, + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Tokyo", + "city_code": "tyo", + "latitude": 35.685, + "longitude": 139.751389 + } + }, + { + "hostname": "jp-tyo-br-201", + "ipv4_addr_in": "185.242.4.34", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Japan", + "country_code": "jp", + "city": "Tokyo", + "city_code": "tyo", + "latitude": 35.685, + "longitude": 139.751389 + } + } + ] + } + ] + }, + { + "name": "Latvia", + "code": "lv", + "cities": [ + { + "name": "Riga", + "code": "rix", + "latitude": 56.946285, + "longitude": 24.105078, + "relays": [ + { + "hostname": "lv-rix-ovpn-001", + "ipv4_addr_in": "31.170.22.2", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Makonix", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Latvia", + "country_code": "lv", + "city": "Riga", + "city_code": "rix", + "latitude": 56.946285, + "longitude": 24.105078 + } + }, + { + "hostname": "lv-rix-wg-001", + "ipv4_addr_in": "31.170.22.15", + "ipv6_addr_in": "2a00:c68:0:cbd0::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Makonix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "z0gUPGRwzmOcFLU6b2Z3dCJUJr2/9OvxujUbjFSTB0Q=", + "daita": false + } + }, + "location": { + "country": "Latvia", + "country_code": "lv", + "city": "Riga", + "city_code": "rix", + "latitude": 56.946285, + "longitude": 24.105078 + } + } + ] + } + ] + }, + { + "name": "Mexico", + "code": "mx", + "cities": [ + { + "name": "Queretaro", + "code": "qro", + "latitude": 20.5927744, + "longitude": -100.3902245, + "relays": [ + { + "hostname": "mx-qro-wg-001", + "ipv4_addr_in": "149.88.22.129", + "ipv6_addr_in": "2a02:6ea0:f803::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "yxyntWsANEwxeR0pOPNAcfWY7zEVICZe9G+GxortzEY=", + "daita": false + } + }, + "location": { + "country": "Mexico", + "country_code": "mx", + "city": "Queretaro", + "city_code": "qro", + "latitude": 20.5927744, + "longitude": -100.3902245 + } + }, + { + "hostname": "mx-qro-wg-002", + "ipv4_addr_in": "149.88.22.142", + "ipv6_addr_in": "2a02:6ea0:f803:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "kGkalo3qvm8MynKdzwW7CGBYXkqRwGhHfYVssgKOWnU=", + "daita": false + } + }, + "location": { + "country": "Mexico", + "country_code": "mx", + "city": "Queretaro", + "city_code": "qro", + "latitude": 20.5927744, + "longitude": -100.3902245 + } + }, + { + "hostname": "mx-qro-wg-003", + "ipv4_addr_in": "149.88.22.155", + "ipv6_addr_in": "2a02:6ea0:f803:2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "hRamkTwXw0usPFDorPl2vf1qP8chczEBcqeV5bA1QDA=", + "daita": false + } + }, + "location": { + "country": "Mexico", + "country_code": "mx", + "city": "Queretaro", + "city_code": "qro", + "latitude": 20.5927744, + "longitude": -100.3902245 + } + }, + { + "hostname": "mx-qro-wg-004", + "ipv4_addr_in": "149.88.22.168", + "ipv6_addr_in": "2a02:6ea0:f803:3::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Q3yqhnYHK/bFjrd6yqti8gSV1gzOwvnl5N5tXuUxMyk=", + "daita": false + } + }, + "location": { + "country": "Mexico", + "country_code": "mx", + "city": "Queretaro", + "city_code": "qro", + "latitude": 20.5927744, + "longitude": -100.3902245 + } + } + ] + } + ] + }, + { + "name": "Netherlands", + "code": "nl", + "cities": [ + { + "name": "Amsterdam", + "code": "ams", + "latitude": 52.35, + "longitude": 4.916667, + "relays": [ + { + "hostname": "nl-ams-ovpn-001", + "ipv4_addr_in": "185.65.134.71", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-ovpn-002", + "ipv4_addr_in": "185.65.134.72", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-ovpn-003", + "ipv4_addr_in": "185.65.134.73", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-ovpn-004", + "ipv4_addr_in": "185.65.134.74", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-ovpn-005", + "ipv4_addr_in": "185.65.134.75", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-001", + "ipv4_addr_in": "193.32.249.66", + "ipv6_addr_in": "2a03:1b20:3:f011::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "UrQiI9ISdPPzd4ARw1NHOPKKvKvxUhjwRjaI0JpJFgM=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-002", + "ipv4_addr_in": "185.65.134.82", + "ipv6_addr_in": "2a03:1b20:3:f011::a02f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "DVui+5aifNFRIVDjH3v2y+dQ+uwI+HFZOd21ajbEpBo=", + "daita": true + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-003", + "ipv4_addr_in": "185.65.134.83", + "ipv6_addr_in": "2a03:1b20:3:f011::f201", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "if4HpJZbN7jft5E9R9wAoTcggIu6eZhgYDvqxnwrXic=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-004", + "ipv4_addr_in": "193.32.249.69", + "ipv6_addr_in": "2a03:1b20:3:f011::f301", + "include_in_country": true, + "active": false, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "hnRyse6QxPPcZOoSwRsHUtK1W+APWXnIoaDTmH6JsHQ=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-005", + "ipv4_addr_in": "193.32.249.70", + "ipv6_addr_in": "2a03:1b20:3:f011::f401", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "33BoONMGCm2vknq2eq72eozRsHmHQY6ZHEEZ4851TkY=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-006", + "ipv4_addr_in": "185.65.134.86", + "ipv6_addr_in": "2a03:1b20:3:f011::f501", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "xpZ3ZDEukbqKQvdHwaqKMUhsYhcYD3uLPUh1ACsVr1s=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-007", + "ipv4_addr_in": "185.65.134.76", + "ipv6_addr_in": "2a03:1b20:3:f011::f701", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "Os/BwxAIWehlypQ8QjrKVEK5PhY84b413+U3YWZJYXQ=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-101", + "ipv4_addr_in": "92.60.40.194", + "ipv6_addr_in": "2a0c:59c0:18::a20f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "m9w2Fr0rcN6R1a9HYrGnUTU176rTZIq2pcsovPd9sms=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-102", + "ipv4_addr_in": "92.60.40.209", + "ipv6_addr_in": "2a0c:59c0:18::a21f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "uUYbYGKoA6UBh1hfkAz5tAWFv4SmteYC9kWh7/K6Ah0=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-103", + "ipv4_addr_in": "92.60.40.224", + "ipv6_addr_in": "2a0c:59c0:18::a22f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "CE7mlfDJ4gpwLPB/CyPfIusITnGZwDI9v4IlVueGT24=", + "daita": true + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-201", + "ipv4_addr_in": "169.150.196.2", + "ipv6_addr_in": "2a02:6ea0:c034:1::a30f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "vt+yTcpxWvH8qiSncd1wSPV/78vt2aE2BBU8ZbG7x1Q=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-202", + "ipv4_addr_in": "169.150.196.15", + "ipv6_addr_in": "2a02:6ea0:c034:2::a31f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "BChJDLOwZu9Q1oH0UcrxcHP6xxHhyRbjrBUsE0e07Vk=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-wg-203", + "ipv4_addr_in": "169.150.196.28", + "ipv6_addr_in": "2a02:6ea0:c034:3::a32f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "M5z8TKjJYpIJ3FXoXy7k58IUaoVro2tWMKSgC5WIqR8=", + "daita": false + } + }, + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + }, + { + "hostname": "nl-ams-br-001", + "ipv4_addr_in": "185.65.134.116", + "ipv6_addr_in": null, + "include_in_country": true, + "active": false, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Netherlands", + "country_code": "nl", + "city": "Amsterdam", + "city_code": "ams", + "latitude": 52.35, + "longitude": 4.916667 + } + } + ] + } + ] + }, + { + "name": "Norway", + "code": "no", + "cities": [ + { + "name": "Oslo", + "code": "osl", + "latitude": 59.916667, + "longitude": 10.75, + "relays": [ + { + "hostname": "no-osl-ovpn-001", + "ipv4_addr_in": "91.90.44.11", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-ovpn-002", + "ipv4_addr_in": "91.90.44.12", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-ovpn-003", + "ipv4_addr_in": "91.90.44.13", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-ovpn-004", + "ipv4_addr_in": "91.90.44.14", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-wg-001", + "ipv4_addr_in": "176.125.235.71", + "ipv6_addr_in": "2a02:20c8:4124::a01f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "jOUZjMq2PWHDzQxu3jPXktYB7EKeFwBzGZx56cTXXQg=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-wg-002", + "ipv4_addr_in": "176.125.235.72", + "ipv6_addr_in": "2a02:20c8:4124::a02f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "IhhpKphSFWpwja1P4HBctZ367G3Q53EgdeFGZro29Tc=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-wg-003", + "ipv4_addr_in": "176.125.235.73", + "ipv6_addr_in": "2a02:20c8:4124::a03f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "zOBWmQ3BEOZKsYKbj4dC2hQjxCbr3eKa6wGWyEDYbC4=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-wg-004", + "ipv4_addr_in": "176.125.235.74", + "ipv6_addr_in": "2a02:20c8:4124::a04f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "veeEoYS9a2T6K8WMs/MvRCdNJG580XbhnLfbFjp3B0M=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-wg-005", + "ipv4_addr_in": "178.255.149.140", + "ipv6_addr_in": "2a02:20c8:4124::f401", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ScQu/AqslSPwpXMIEyimrYZWTIdJJXLLeXrijWOF0SE=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-wg-006", + "ipv4_addr_in": "178.255.149.165", + "ipv6_addr_in": "2a02:20c8:4124::f501", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "LBlNBTuT7gNEZoAuxO0PTVPpaDuYA7nAeCyMpg9Agyo=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-wg-007", + "ipv4_addr_in": "91.90.44.15", + "ipv6_addr_in": "2a02:20c8:4124::f701", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "A0gisFM9hOZB0ezDcSIg2WwnyeprHV/dmb5JnzST0EE=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-wg-008", + "ipv4_addr_in": "91.90.44.18", + "ipv6_addr_in": "2a02:20c8:4124::f801", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "/4+nwTRYLjT2UK0g3+S4sjE4oaIQiS6L2b/lpO2bfwI=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + }, + { + "hostname": "no-osl-br-001", + "ipv4_addr_in": "91.90.44.10", + "ipv6_addr_in": null, + "include_in_country": true, + "active": false, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Norway", + "country_code": "no", + "city": "Oslo", + "city_code": "osl", + "latitude": 59.916667, + "longitude": 10.75 + } + } + ] + }, + { + "name": "Stavanger", + "code": "svg", + "latitude": 58.964432, + "longitude": 5.72625, + "relays": [ + { + "hostname": "no-svg-ovpn-001", + "ipv4_addr_in": "194.127.199.114", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Norway", + "country_code": "no", + "city": "Stavanger", + "city_code": "svg", + "latitude": 58.964432, + "longitude": 5.72625 + } + }, + { + "hostname": "no-svg-ovpn-002", + "ipv4_addr_in": "194.127.199.145", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Norway", + "country_code": "no", + "city": "Stavanger", + "city_code": "svg", + "latitude": 58.964432, + "longitude": 5.72625 + } + }, + { + "hostname": "no-svg-wg-001", + "ipv4_addr_in": "194.127.199.2", + "ipv6_addr_in": "2a02:20c8:4120::a01f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "kduYoE/b1mA2Pjszx1CzE4Lktsdc2zsUU8Relul2m2U=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Stavanger", + "city_code": "svg", + "latitude": 58.964432, + "longitude": 5.72625 + } + }, + { + "hostname": "no-svg-wg-002", + "ipv4_addr_in": "194.127.199.31", + "ipv6_addr_in": "2a02:20c8:4120::a02f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "U9fbFesIIr2HotWdkfMpKyOEPk+RYtE2oYn3KoLmkj4=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Stavanger", + "city_code": "svg", + "latitude": 58.964432, + "longitude": 5.72625 + } + }, + { + "hostname": "no-svg-wg-003", + "ipv4_addr_in": "194.127.199.62", + "ipv6_addr_in": "2a02:20c8:4120::a03f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "btc4mh3n9jVCW6yikw3cOPct0x3B5cDK+kKnvgCV0S0=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Stavanger", + "city_code": "svg", + "latitude": 58.964432, + "longitude": 5.72625 + } + }, + { + "hostname": "no-svg-wg-004", + "ipv4_addr_in": "194.127.199.93", + "ipv6_addr_in": "2a02:20c8:4120::a04f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 300, + "endpoint_data": { + "wireguard": { + "public_key": "Fu98PLCZw/FTcQqyTy0vzaepkfxuSLAah7wnafGVO1g=", + "daita": false + } + }, + "location": { + "country": "Norway", + "country_code": "no", + "city": "Stavanger", + "city_code": "svg", + "latitude": 58.964432, + "longitude": 5.72625 + } + }, + { + "hostname": "no-svg-br-001", + "ipv4_addr_in": "194.127.199.245", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "Blix", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Norway", + "country_code": "no", + "city": "Stavanger", + "city_code": "svg", + "latitude": 58.964432, + "longitude": 5.72625 + } + } + ] + } + ] + }, + { + "name": "New Zealand", + "code": "nz", + "cities": [ + { + "name": "Auckland", + "code": "akl", + "latitude": -36.848461, + "longitude": 174.763336, + "relays": [ + { + "hostname": "nz-akl-ovpn-301", + "ipv4_addr_in": "103.75.11.82", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "New Zealand", + "country_code": "nz", + "city": "Auckland", + "city_code": "akl", + "latitude": -36.848461, + "longitude": 174.763336 + } + }, + { + "hostname": "nz-akl-ovpn-302", + "ipv4_addr_in": "103.75.11.98", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "New Zealand", + "country_code": "nz", + "city": "Auckland", + "city_code": "akl", + "latitude": -36.848461, + "longitude": 174.763336 + } + }, + { + "hostname": "nz-akl-wg-301", + "ipv4_addr_in": "103.75.11.50", + "ipv6_addr_in": "2404:f780:5:deb::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "BOEOP01bcND1a0zvmOxRHPB/ObgjgPIzBJE5wbm7B0M=", + "daita": false + } + }, + "location": { + "country": "New Zealand", + "country_code": "nz", + "city": "Auckland", + "city_code": "akl", + "latitude": -36.848461, + "longitude": 174.763336 + } + }, + { + "hostname": "nz-akl-wg-302", + "ipv4_addr_in": "103.75.11.66", + "ipv6_addr_in": "2404:f780:5:dec::c02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "hostuniversal", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "80WGWgFP9q3eU16MuLJISB1fzAu2LM2heschmokVSVU=", + "daita": false + } + }, + "location": { + "country": "New Zealand", + "country_code": "nz", + "city": "Auckland", + "city_code": "akl", + "latitude": -36.848461, + "longitude": 174.763336 + } + } + ] + } + ] + }, + { + "name": "Poland", + "code": "pl", + "cities": [ + { + "name": "Warsaw", + "code": "waw", + "latitude": 52.25, + "longitude": 21.0, + "relays": [ + { + "hostname": "pl-waw-ovpn-201", + "ipv4_addr_in": "146.70.144.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Poland", + "country_code": "pl", + "city": "Warsaw", + "city_code": "waw", + "latitude": 52.25, + "longitude": 21.0 + } + }, + { + "hostname": "pl-waw-ovpn-202", + "ipv4_addr_in": "146.70.144.98", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Poland", + "country_code": "pl", + "city": "Warsaw", + "city_code": "waw", + "latitude": 52.25, + "longitude": 21.0 + } + }, + { + "hostname": "pl-waw-wg-101", + "ipv4_addr_in": "45.134.212.66", + "ipv6_addr_in": "2a02:6ea0:ce08:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "fO4beJGkKZxosCZz1qunktieuPyzPnEVKVQNhzanjnA=", + "daita": false + } + }, + "location": { + "country": "Poland", + "country_code": "pl", + "city": "Warsaw", + "city_code": "waw", + "latitude": 52.25, + "longitude": 21.0 + } + }, + { + "hostname": "pl-waw-wg-102", + "ipv4_addr_in": "45.134.212.79", + "ipv6_addr_in": "2a02:6ea0:ce08:2::a06f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "nJEWae9GebEY7yJONXQ1j4gbURV4QULjx388woAlbDs=", + "daita": false + } + }, + "location": { + "country": "Poland", + "country_code": "pl", + "city": "Warsaw", + "city_code": "waw", + "latitude": 52.25, + "longitude": 21.0 + } + }, + { + "hostname": "pl-waw-wg-103", + "ipv4_addr_in": "45.134.212.92", + "ipv6_addr_in": "2a02:6ea0:ce08:3::a07f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "07eUtSNhiJ9dQXBmUqFODj0OqhmbKQGbRikIq9f90jM=", + "daita": false + } + }, + "location": { + "country": "Poland", + "country_code": "pl", + "city": "Warsaw", + "city_code": "waw", + "latitude": 52.25, + "longitude": 21.0 + } + }, + { + "hostname": "pl-waw-wg-201", + "ipv4_addr_in": "45.128.38.226", + "ipv6_addr_in": "2a0d:5600:13:67::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "XwFAczY5LdogFwE9soDecXWqywSCDGuRyJhr/0psI00=", + "daita": false + } + }, + "location": { + "country": "Poland", + "country_code": "pl", + "city": "Warsaw", + "city_code": "waw", + "latitude": 52.25, + "longitude": 21.0 + } + }, + { + "hostname": "pl-waw-wg-202", + "ipv4_addr_in": "146.70.144.34", + "ipv6_addr_in": "2a0d:5600:13:c47::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "nyfOkamv1ryTS62lsmyU96cqI0dtqek84DhyxWgAQGY=", + "daita": false + } + }, + "location": { + "country": "Poland", + "country_code": "pl", + "city": "Warsaw", + "city_code": "waw", + "latitude": 52.25, + "longitude": 21.0 + } + } + ] + } + ] + }, + { + "name": "Portugal", + "code": "pt", + "cities": [ + { + "name": "Lisbon", + "code": "lis", + "latitude": 38.736946, + "longitude": -9.142685, + "relays": [ + { + "hostname": "pt-lis-wg-201", + "ipv4_addr_in": "149.88.20.206", + "ipv6_addr_in": "2a02:6ea0:fb01:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "JCAe7D/owe11Ii2rhpIKhGZvP/V1P1cVZwZAjpSRqmc=", + "daita": false + } + }, + "location": { + "country": "Portugal", + "country_code": "pt", + "city": "Lisbon", + "city_code": "lis", + "latitude": 38.736946, + "longitude": -9.142685 + } + }, + { + "hostname": "pt-lis-wg-202", + "ipv4_addr_in": "149.88.20.193", + "ipv6_addr_in": "2a02:6ea0:fb01:2::f002", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5P4CQYQeSozk/3KQZh/kl7tUMFGgRB60Ttx6x2nh+F8=", + "daita": false + } + }, + "location": { + "country": "Portugal", + "country_code": "pt", + "city": "Lisbon", + "city_code": "lis", + "latitude": 38.736946, + "longitude": -9.142685 + } + } + ] + } + ] + }, + { + "name": "Romania", + "code": "ro", + "cities": [ + { + "name": "Bucharest", + "code": "buh", + "latitude": 44.433333, + "longitude": 26.1, + "relays": [ + { + "hostname": "ro-buh-ovpn-001", + "ipv4_addr_in": "146.70.124.162", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Romania", + "country_code": "ro", + "city": "Bucharest", + "city_code": "buh", + "latitude": 44.433333, + "longitude": 26.1 + } + }, + { + "hostname": "ro-buh-ovpn-002", + "ipv4_addr_in": "37.120.246.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Romania", + "country_code": "ro", + "city": "Bucharest", + "city_code": "buh", + "latitude": 44.433333, + "longitude": 26.1 + } + }, + { + "hostname": "ro-buh-wg-001", + "ipv4_addr_in": "146.70.124.130", + "ipv6_addr_in": "2a04:9dc0:0:133::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "xpKhRTf9JI269S2PujLbrJm1TwIe67HD5CLe+sP4tUU=", + "daita": false + } + }, + "location": { + "country": "Romania", + "country_code": "ro", + "city": "Bucharest", + "city_code": "buh", + "latitude": 44.433333, + "longitude": 26.1 + } + }, + { + "hostname": "ro-buh-wg-002", + "ipv4_addr_in": "146.70.124.194", + "ipv6_addr_in": "2a04:9dc0:0:135::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Ekc3+qU88FuMfkEMyLlgRqDYv+WHJvUsfOMI/C0ydE4=", + "daita": false + } + }, + "location": { + "country": "Romania", + "country_code": "ro", + "city": "Bucharest", + "city_code": "buh", + "latitude": 44.433333, + "longitude": 26.1 + } + } + ] + } + ] + }, + { + "name": "Serbia", + "code": "rs", + "cities": [ + { + "name": "Belgrade", + "code": "beg", + "latitude": 44.787197, + "longitude": 20.457273, + "relays": [ + { + "hostname": "rs-beg-ovpn-101", + "ipv4_addr_in": "146.70.193.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Serbia", + "country_code": "rs", + "city": "Belgrade", + "city_code": "beg", + "latitude": 44.787197, + "longitude": 20.457273 + } + }, + { + "hostname": "rs-beg-ovpn-102", + "ipv4_addr_in": "146.70.193.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Serbia", + "country_code": "rs", + "city": "Belgrade", + "city_code": "beg", + "latitude": 44.787197, + "longitude": 20.457273 + } + }, + { + "hostname": "rs-beg-wg-101", + "ipv4_addr_in": "146.70.193.2", + "ipv6_addr_in": "2001:ac8:7d:37::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Orrce1127WpljZa+xKbF21zJkJ9wM1M3VJ5GJ/UsIDU=", + "daita": false + } + }, + "location": { + "country": "Serbia", + "country_code": "rs", + "city": "Belgrade", + "city_code": "beg", + "latitude": 44.787197, + "longitude": 20.457273 + } + }, + { + "hostname": "rs-beg-wg-102", + "ipv4_addr_in": "146.70.193.66", + "ipv6_addr_in": "2001:ac8:7d:38::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "35lawt+YUx10ELTFhZhg4/xzXRmjxCl/j1O4RK5d60M=", + "daita": false + } + }, + "location": { + "country": "Serbia", + "country_code": "rs", + "city": "Belgrade", + "city_code": "beg", + "latitude": 44.787197, + "longitude": 20.457273 + } + } + ] + } + ] + }, + { + "name": "Sweden", + "code": "se", + "cities": [ + { + "name": "Gothenburg", + "code": "got", + "latitude": 57.70887, + "longitude": 11.97456, + "relays": [ + { + "hostname": "se-got-ovpn-001", + "ipv4_addr_in": "185.213.154.131", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-ovpn-002", + "ipv4_addr_in": "185.213.154.132", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-ovpn-003", + "ipv4_addr_in": "185.213.154.133", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-ovpn-004", + "ipv4_addr_in": "185.213.154.134", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-001", + "ipv4_addr_in": "185.213.154.66", + "ipv6_addr_in": "2a03:1b20:5:f011:31::a03f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5JMPeO7gXIbR5CnUa/NPNK4L5GqUnreF0/Bozai4pl4=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-002", + "ipv4_addr_in": "185.213.154.67", + "ipv6_addr_in": "2a03:1b20:5:f011::a05f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "AtvE5KdPeQtOcE2QyXaPt9eQoBV3GBxzimQ2FIuGQ2U=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-003", + "ipv4_addr_in": "185.213.154.68", + "ipv6_addr_in": "2a03:1b20:5:f011::a09f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "BLNHNoGO88LjV/wDBa7CUUwUzPq/fO2UwcGLy56hKy4=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-004", + "ipv4_addr_in": "185.213.154.69", + "ipv6_addr_in": "2a03:1b20:5:f011::a10f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "veGD6/aEY6sMfN3Ls7YWPmNgu3AheO7nQqsFT47YSws=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-005", + "ipv4_addr_in": "185.209.199.2", + "ipv6_addr_in": "2a03:1b20:5:f011:5::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "x4h55uXoIIKUqKjjm6PzNiZlzLjxjuAIKzvgU9UjOGw=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-006", + "ipv4_addr_in": "185.209.199.7", + "ipv6_addr_in": "2a03:1b20:5:f011:6::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "dcSpHioI+TY37dbZcviFA/sxSUqmpECXRZIapwR8pVg=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-007", + "ipv4_addr_in": "185.209.199.12", + "ipv6_addr_in": "2a03:1b20:5:f011:7::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ywfkKYdoVAnjsSYW145ACtrw3DV8xTzFS1hlIO7QRD4=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-008", + "ipv4_addr_in": "185.209.199.17", + "ipv6_addr_in": "2a03:1b20:5:f011:8::f001", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Vh3Y2LsBG1yN4kDeebOr3J6dFooGJIBTftzVqlWhiD4=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-wg-101", + "ipv4_addr_in": "185.213.154.70", + "ipv6_addr_in": "2a03:1b20:5:f011::aaaf", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "B8UVAeNkAW4NiGHd1lpl933Drh4y7pMqpXJpH0SrGjQ=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + }, + { + "hostname": "se-got-br-001", + "ipv4_addr_in": "185.213.154.117", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Gothenburg", + "city_code": "got", + "latitude": 57.70887, + "longitude": 11.97456 + } + } + ] + }, + { + "name": "Malmö", + "code": "mma", + "latitude": 55.607075, + "longitude": 13.002716, + "relays": [ + { + "hostname": "se-mma-ovpn-001", + "ipv4_addr_in": "193.138.218.131", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-002", + "ipv4_addr_in": "193.138.218.132", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-013", + "ipv4_addr_in": "141.98.255.83", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-014", + "ipv4_addr_in": "141.98.255.84", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-015", + "ipv4_addr_in": "141.98.255.85", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-016", + "ipv4_addr_in": "141.98.255.86", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-017", + "ipv4_addr_in": "141.98.255.87", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-018", + "ipv4_addr_in": "141.98.255.88", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-019", + "ipv4_addr_in": "141.98.255.89", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-020", + "ipv4_addr_in": "141.98.255.90", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-021", + "ipv4_addr_in": "141.98.255.91", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-022", + "ipv4_addr_in": "141.98.255.92", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-023", + "ipv4_addr_in": "141.98.255.93", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-ovpn-102", + "ipv4_addr_in": "45.83.220.92", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-wg-001", + "ipv4_addr_in": "193.138.218.220", + "ipv6_addr_in": "2a03:1b20:1:f410::a01f", + "include_in_country": true, + "active": false, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Qn1QaXYTJJSmJSMw18CGdnFiVM0/Gj/15OdkxbXCSG0=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-wg-002", + "ipv4_addr_in": "193.138.218.80", + "ipv6_addr_in": "2a03:1b20:1:f410::a15f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5y66WShsFXqM5K7/4CPEGCWfk7PQyNhVBT2ILjbGm2I=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-wg-003", + "ipv4_addr_in": "193.138.218.83", + "ipv6_addr_in": "2a03:1b20:1:f410::a18f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "fZFAcd8vqWOBpRqlXifsjzGf16gMTg2GuwKyZtkG6UU=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-wg-004", + "ipv4_addr_in": "193.138.218.130", + "ipv6_addr_in": "2a03:1b20:1:f410:40::a04f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "m4jnogFbACz7LByjo++8z5+1WV0BuR1T7E1OWA+n8h0=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-wg-005", + "ipv4_addr_in": "193.138.218.82", + "ipv6_addr_in": "2a03:1b20:1:f410::a17f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "qnJrQEf2JiDHMnMWFFxWz8I9NREockylVgYVE95s72s=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-wg-101", + "ipv4_addr_in": "45.83.220.68", + "ipv6_addr_in": "2a03:1b20:1:e011::a21f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "7ncbaCb+9za3jnXlR95I6dJBkwL1ABB5i4ndFUesYxE=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-wg-102", + "ipv4_addr_in": "45.83.220.69", + "ipv6_addr_in": "2a03:1b20:1:e011::a22f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "cwglRdgLQ4gMG36TIYlc5OIemLNrYs4UM1KTc8mnzxk=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-wg-103", + "ipv4_addr_in": "45.83.220.70", + "ipv6_addr_in": "2a03:1b20:1:e011::a23f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "XscA5gebj51nmhAr6o+aUCnMHWGjbS1Gvvd0tuLRiFE=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + }, + { + "hostname": "se-mma-br-001", + "ipv4_addr_in": "193.138.218.71", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Malmö", + "city_code": "mma", + "latitude": 55.607075, + "longitude": 13.002716 + } + } + ] + }, + { + "name": "Stockholm", + "code": "sto", + "latitude": 59.3289, + "longitude": 18.0649, + "relays": [ + { + "hostname": "se-sto-ovpn-001", + "ipv4_addr_in": "185.65.135.80", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-ovpn-002", + "ipv4_addr_in": "185.65.135.81", + "ipv6_addr_in": null, + "include_in_country": true, + "active": false, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-ovpn-003", + "ipv4_addr_in": "185.65.135.82", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-ovpn-004", + "ipv4_addr_in": "185.65.135.83", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-001", + "ipv4_addr_in": "185.195.233.76", + "ipv6_addr_in": "2a03:1b20:4:f011::999f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "MkP/Jytkg51/Y/EostONjIN6YaFRpsAYiNKMX27/CAY=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-002", + "ipv4_addr_in": "185.65.135.67", + "ipv6_addr_in": "2a03:1b20:4:f011::a02f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "q2ZZPfumPaRVl4DJfzNdQF/GHfe6BYAzQ2GZZHb6rmI=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-003", + "ipv4_addr_in": "185.65.135.68", + "ipv6_addr_in": "2a03:1b20:4:f011::f201", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "qZbwfoY4LHhDPzUROFbG+LqOjB0+Odwjg/Nv3kGolWc=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-004", + "ipv4_addr_in": "185.65.135.69", + "ipv6_addr_in": "2a03:1b20:4:f011::f301", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "94qIvXgF0OXZ4IcquoS7AO57OV6JswUFgdONgGiq+jo=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-005", + "ipv4_addr_in": "185.65.135.72", + "ipv6_addr_in": "2a03:1b20:4:f011::f401", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5rVa0M13oMNobMY7ToAMU1L/Mox7AYACvV+nfsE7zF0=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-006", + "ipv4_addr_in": "185.65.135.73", + "ipv6_addr_in": "2a03:1b20:4:f011::f501", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5WNG/KKCtgF4+49e/4iqvHVY/i+6dzUmVKXcJj7zi3I=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-008", + "ipv4_addr_in": "185.65.135.71", + "ipv6_addr_in": "2a03:1b20:4:f011::f701", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "4nOXEaCDYBV//nsVXk7MrnHpxLV9MbGjt+IGQY//p3k=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-009", + "ipv4_addr_in": "185.195.233.69", + "ipv6_addr_in": "2a03:1b20:4:f011::a09f", + "include_in_country": false, + "active": true, + "owned": true, + "provider": "31173", + "weight": 0, + "endpoint_data": { + "wireguard": { + "public_key": "t1XlQD7rER0JUPrmh3R5IpxjUP9YOqodJAwfRorNxl4=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-010", + "ipv4_addr_in": "185.195.233.70", + "ipv6_addr_in": "2a03:1b20:4:f011::a10f", + "include_in_country": true, + "active": false, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "zWh5JzqxNhaJ7tMFDRkj9etq6rqRZrUhv156lG6H+Vc=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-011", + "ipv4_addr_in": "185.195.233.71", + "ipv6_addr_in": "2a03:1b20:4:f011::a11f", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "GqKpm8VwKJQLQEQ0PXbkRueY9hDqiMibr+EpW3n9syk=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-012", + "ipv4_addr_in": "185.195.233.66", + "ipv6_addr_in": "2a03:1b20:4:f011::fb01", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "1493vtFUbIfSpQKRBki/1d0YgWIQwMV4AQAvGxjCNVM=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-wg-014", + "ipv4_addr_in": "185.195.233.68", + "ipv6_addr_in": "2a03:1b20:4:f011::fd01", + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "DYlwUsH63DLjEfKC9yq7P+FoQx99WdKvZGGhXoUZVgk=", + "daita": false + } + }, + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + }, + { + "hostname": "se-sto-br-001", + "ipv4_addr_in": "185.65.135.115", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": true, + "provider": "31173", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Sweden", + "country_code": "se", + "city": "Stockholm", + "city_code": "sto", + "latitude": 59.3289, + "longitude": 18.0649 + } + } + ] + } + ] + }, + { + "name": "Singapore", + "code": "sg", + "cities": [ + { + "name": "Singapore", + "code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333, + "relays": [ + { + "hostname": "sg-sin-ovpn-101", + "ipv4_addr_in": "146.70.199.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Singapore", + "country_code": "sg", + "city": "Singapore", + "city_code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333 + } + }, + { + "hostname": "sg-sin-ovpn-102", + "ipv4_addr_in": "146.70.199.2", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "Singapore", + "country_code": "sg", + "city": "Singapore", + "city_code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333 + } + }, + { + "hostname": "sg-sin-wg-001", + "ipv4_addr_in": "138.199.60.2", + "ipv6_addr_in": "2a02:6ea0:d13e:1::a09f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "sFHv/qzG7b6ds5pow+oAR3G5Wqp9eFbBD3BmEGBuUWU=", + "daita": false + } + }, + "location": { + "country": "Singapore", + "country_code": "sg", + "city": "Singapore", + "city_code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333 + } + }, + { + "hostname": "sg-sin-wg-002", + "ipv4_addr_in": "138.199.60.15", + "ipv6_addr_in": "2a02:6ea0:d13e:2::a10f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "WM5I4IFwQcVysM4fF4NXZtQXNrSkqVWkQxNPPygOiF0=", + "daita": false + } + }, + "location": { + "country": "Singapore", + "country_code": "sg", + "city": "Singapore", + "city_code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333 + } + }, + { + "hostname": "sg-sin-wg-003", + "ipv4_addr_in": "138.199.60.28", + "ipv6_addr_in": "2a02:6ea0:d13e:3::a11f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "3HtGdhEXUPKQIDRW49wCUoTK2ZXfq+QfzjfYoldNchg=", + "daita": false + } + }, + "location": { + "country": "Singapore", + "country_code": "sg", + "city": "Singapore", + "city_code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333 + } + }, + { + "hostname": "sg-sin-wg-101", + "ipv4_addr_in": "146.70.199.194", + "ipv6_addr_in": "2a0d:5600:d:44::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "KB6ZA1PAixd74c+mO0VBY4j7LaitK8B4L1APbFIQyQ0=", + "daita": false + } + }, + "location": { + "country": "Singapore", + "country_code": "sg", + "city": "Singapore", + "city_code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333 + } + }, + { + "hostname": "sg-sin-wg-102", + "ipv4_addr_in": "146.70.199.130", + "ipv6_addr_in": "2a0d:5600:d:43::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "qrhHOwk0ree+LFxW6htvGEfVFuhM2efQ/M+4p0sx/gA=", + "daita": false + } + }, + "location": { + "country": "Singapore", + "country_code": "sg", + "city": "Singapore", + "city_code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333 + } + }, + { + "hostname": "sg-sin-br-101", + "ipv4_addr_in": "146.70.192.38", + "ipv6_addr_in": null, + "include_in_country": true, + "active": false, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "Singapore", + "country_code": "sg", + "city": "Singapore", + "city_code": "sin", + "latitude": 1.2930556, + "longitude": 103.8558333 + } + } + ] + } + ] + }, + { + "name": "Slovenia", + "code": "si", + "cities": [ + { + "name": "Ljubljana", + "code": "lju", + "latitude": 46.0569, + "longitude": 14.5057, + "relays": [ + { + "hostname": "si-lju-wg-001", + "ipv4_addr_in": "93.115.0.3", + "ipv6_addr_in": "2a06:3040:7:210::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "fXWKnogYH3IORGePtkyFg3r/56ZQGkF6hjdw2svhmw8=", + "daita": false + } + }, + "location": { + "country": "Slovenia", + "country_code": "si", + "city": "Ljubljana", + "city_code": "lju", + "latitude": 46.0569, + "longitude": 14.5057 + } + }, + { + "hostname": "si-lju-wg-002", + "ipv4_addr_in": "93.115.0.33", + "ipv6_addr_in": "2a06:3040:7:210::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "HkPoWKRG/KV2C8afaaah9Jl5lYuvJo1loCaFadKDZVU=", + "daita": false + } + }, + "location": { + "country": "Slovenia", + "country_code": "si", + "city": "Ljubljana", + "city_code": "lju", + "latitude": 46.0569, + "longitude": 14.5057 + } + } + ] + } + ] + }, + { + "name": "Slovakia", + "code": "sk", + "cities": [ + { + "name": "Bratislava", + "code": "bts", + "latitude": 48.148598, + "longitude": 17.107748, + "relays": [ + { + "hostname": "sk-bts-wg-001", + "ipv4_addr_in": "138.199.34.129", + "ipv6_addr_in": "2a02:6ea0:2901:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "QEVIaIycN8p5twXCuZeQTEj9utozakw/MU8H6+/whls=", + "daita": false + } + }, + "location": { + "country": "Slovakia", + "country_code": "sk", + "city": "Bratislava", + "city_code": "bts", + "latitude": 48.148598, + "longitude": 17.107748 + } + }, + { + "hostname": "sk-bts-wg-002", + "ipv4_addr_in": "138.199.34.143", + "ipv6_addr_in": "2a02:6ea0:2901::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "JeEuObwimNmoVtPn4kpMI1y1UM+IChGVBLtmP3CNNVQ=", + "daita": false + } + }, + "location": { + "country": "Slovakia", + "country_code": "sk", + "city": "Bratislava", + "city_code": "bts", + "latitude": 48.148598, + "longitude": 17.107748 + } + } + ] + } + ] + }, + { + "name": "Thailand", + "code": "th", + "cities": [ + { + "name": "Bangkok", + "code": "bkk", + "latitude": 13.756331, + "longitude": 100.501762, + "relays": [ + { + "hostname": "th-bkk-wg-001", + "ipv4_addr_in": "156.59.50.194", + "ipv6_addr_in": "2602:ffe4:c09:10a::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Zenlayer", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "zX6pm3TVJe7rjQ9GrFH1IY29vw/PJL6LGh3/ALxEyx4=", + "daita": false + } + }, + "location": { + "country": "Thailand", + "country_code": "th", + "city": "Bangkok", + "city_code": "bkk", + "latitude": 13.756331, + "longitude": 100.501762 + } + }, + { + "hostname": "th-bkk-wg-002", + "ipv4_addr_in": "156.59.50.226", + "ipv6_addr_in": "2602:ffe4:c09:109::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Zenlayer", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "L8CCv3NWDaMyUh4dxO44LSy07ETWCcWBeeGFyQZIlyo=", + "daita": false + } + }, + "location": { + "country": "Thailand", + "country_code": "th", + "city": "Bangkok", + "city_code": "bkk", + "latitude": 13.756331, + "longitude": 100.501762 + } + } + ] + } + ] + }, + { + "name": "Ukraine", + "code": "ua", + "cities": [ + { + "name": "Kyiv", + "code": "iev", + "latitude": 50.4501, + "longitude": 30.5234, + "relays": [ + { + "hostname": "ua-iev-wg-001", + "ipv4_addr_in": "149.102.240.79", + "ipv6_addr_in": "2a02:6ea0:e109:2::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "PO2o3ewguPP24wLy8bbDqx1xuAnTOIVzdzVGVT0d8kU=", + "daita": false + } + }, + "location": { + "country": "Ukraine", + "country_code": "ua", + "city": "Kyiv", + "city_code": "iev", + "latitude": 50.4501, + "longitude": 30.5234 + } + }, + { + "hostname": "ua-iev-wg-002", + "ipv4_addr_in": "149.102.240.66", + "ipv6_addr_in": "2a02:6ea0:e109:1::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "HUj/J8Rxx7QVGh3kJsFgPZoqtm2BQIX03vKJSIyTOSo=", + "daita": false + } + }, + "location": { + "country": "Ukraine", + "country_code": "ua", + "city": "Kyiv", + "city_code": "iev", + "latitude": 50.4501, + "longitude": 30.5234 + } + } + ] + } + ] + }, + { + "name": "USA", + "code": "us", + "cities": [ + { + "name": "Atlanta, GA", + "code": "atl", + "latitude": 33.753746, + "longitude": -84.38633, + "relays": [ + { + "hostname": "us-atl-ovpn-001", + "ipv4_addr_in": "45.134.140.156", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-ovpn-002", + "ipv4_addr_in": "45.134.140.169", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-ovpn-101", + "ipv4_addr_in": "66.115.180.226", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-ovpn-102", + "ipv4_addr_in": "66.115.180.227", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-ovpn-103", + "ipv4_addr_in": "66.115.180.228", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-ovpn-104", + "ipv4_addr_in": "66.115.180.229", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-ovpn-105", + "ipv4_addr_in": "66.115.180.230", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-001", + "ipv4_addr_in": "45.134.140.130", + "ipv6_addr_in": "2a02:6ea0:c122:1::b79f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "nvyBkaEXHwyPBAm8spGB0TFzf2W5wPAl8EEuJ0t+bzs=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-002", + "ipv4_addr_in": "45.134.140.143", + "ipv6_addr_in": "2a02:6ea0:c122:2::b80f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "ECeGYeh8CfPJO3v56ucCDdl+PlKcj2bBszUGkT+hVWQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-101", + "ipv4_addr_in": "66.115.180.231", + "ipv6_addr_in": "2607:f7a0:1:d::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "MNUf9CYsmf72git8MGzui3kplclyPP6xAS6sz3JT2F8=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-102", + "ipv4_addr_in": "66.115.180.232", + "ipv6_addr_in": "2607:f7a0:1:d::f101", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "RFHvvrw6/3qnwsH89GMYm7xdJA72MPSpXI+WPk7sNwk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-103", + "ipv4_addr_in": "66.115.180.233", + "ipv6_addr_in": "2607:f7a0:1:d::f201", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "u3X1bahP8G2MNUJ57ImYx5pvADVhI9YmCsWlTULAQnw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-104", + "ipv4_addr_in": "66.115.180.234", + "ipv6_addr_in": "2607:f7a0:1:d::b70f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "bY+7UNjd1zhZ4GSV9YlarYxB7fl5dhKEyJHaJ3iZg3g=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-105", + "ipv4_addr_in": "66.115.180.235", + "ipv6_addr_in": "2607:f7a0:1:d::b71f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "QEz7T4HN99SCFuWRJA3MJL8B7WnmbdVcM2t5CDe0BQw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-106", + "ipv4_addr_in": "66.115.180.236", + "ipv6_addr_in": "2607:f7a0:1:d::b72f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "s60zDaHwztfLhcrcQXIMhXgTAI1KAUT2osA7k3LSHDE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-107", + "ipv4_addr_in": "66.115.180.237", + "ipv6_addr_in": "2607:f7a0:1:d::f601", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "IbkH8hULcFgUEt/OBXamWI2IotlbYJMyAcAhSTbtD1o=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-108", + "ipv4_addr_in": "66.115.180.238", + "ipv6_addr_in": "2607:f7a0:1:d::f701", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "/38SXpa6r80z/CHrPHDW5uTaXa3Xj0U8hIztCEV4q3I=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-109", + "ipv4_addr_in": "66.115.180.239", + "ipv6_addr_in": "2607:f7a0:1:d::b75f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "n2FGxqt/MhTrHKQyoguto+2s6lTPskTwOsCX9jGHzW0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-110", + "ipv4_addr_in": "66.115.180.240", + "ipv6_addr_in": "2607:f7a0:1:d::f901", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "bjy5pU9WbGfAfnwjI+IajrgYwbbGlTk4xHimTpDQ/HY=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-201", + "ipv4_addr_in": "107.150.22.2", + "ipv6_addr_in": "2607:fcd0:aa80:1304::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "BbW2Gm4IZEW8CrEIg71jZC9pztA/J4h1PK9lwq57ewE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-202", + "ipv4_addr_in": "104.129.24.98", + "ipv6_addr_in": "2607:fcd0:aa80:1302::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "Qnb6TdDA7IkTIISJ40W+6rZA81pb0v4D0jRZRTYNQnQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-203", + "ipv4_addr_in": "104.129.24.114", + "ipv6_addr_in": "2607:fcd0:aa80:1303::b34f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "nZQvI+2ZzDC2titokjWcojbjvn4bxHrhUzg1UK/K0nc=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-wg-204", + "ipv4_addr_in": "104.223.91.18", + "ipv6_addr_in": "2607:fcd0:aa80:1305::b43f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "rlZyrKRSLfvjUBpYD2jUkWhdWkB1RnRr+Q4bv9+nvD8=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + }, + { + "hostname": "us-atl-br-101", + "ipv4_addr_in": "66.115.180.241", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "Atlanta, GA", + "city_code": "atl", + "latitude": 33.753746, + "longitude": -84.38633 + } + } + ] + }, + { + "name": "Boston, MA", + "code": "bos", + "latitude": 42.361145, + "longitude": -71.057083, + "relays": [ + { + "hostname": "us-bos-wg-001", + "ipv4_addr_in": "43.225.189.131", + "ipv6_addr_in": "2a06:3040:12:610::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "CsysTnZ0HvyYRjsKMPx60JIgy777JhD0h9WpbHbV83o=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Boston, MA", + "city_code": "bos", + "latitude": 42.361145, + "longitude": -71.057083 + } + }, + { + "hostname": "us-bos-wg-002", + "ipv4_addr_in": "43.225.189.162", + "ipv6_addr_in": "2a06:3040:12:610::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "LLkA2XSBvfUeXgLdMKP+OTQeKhtGB03kKskJEwlzAE8=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Boston, MA", + "city_code": "bos", + "latitude": 42.361145, + "longitude": -71.057083 + } + }, + { + "hostname": "us-bos-wg-101", + "ipv4_addr_in": "149.40.50.98", + "ipv6_addr_in": "2a02:6ea0:f901::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "oxJ2PIqrQOmS0uiyXvnxT64E1uZnjZDWPbP/+APToAE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Boston, MA", + "city_code": "bos", + "latitude": 42.361145, + "longitude": -71.057083 + } + }, + { + "hostname": "us-bos-wg-102", + "ipv4_addr_in": "149.40.50.112", + "ipv6_addr_in": "2a02:6ea0:f901:1::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "wcmmadJObux2/62ES+QbIO21BkU7p2I0s6n4WNZZgW0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Boston, MA", + "city_code": "bos", + "latitude": 42.361145, + "longitude": -71.057083 + } + } + ] + }, + { + "name": "Chicago, IL", + "code": "chi", + "latitude": 41.881832, + "longitude": -87.623177, + "relays": [ + { + "hostname": "us-chi-ovpn-001", + "ipv4_addr_in": "68.235.43.34", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-ovpn-002", + "ipv4_addr_in": "68.235.43.66", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-ovpn-003", + "ipv4_addr_in": "68.235.43.98", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-001", + "ipv4_addr_in": "68.235.44.2", + "ipv6_addr_in": "2607:9000:0:56::a01f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "T5aabskeYCd5dn81c3jOKVxGWQSLwpqHSHf6wButSgw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-002", + "ipv4_addr_in": "68.235.43.130", + "ipv6_addr_in": "2607:9000:0:54::a02f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "dr0ORuPoV9TYY6G5cM00cOoO72wfUC7Lmni7+Az9m0Y=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-003", + "ipv4_addr_in": "68.235.44.34", + "ipv6_addr_in": "2607:9000:0:57::a03f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "VY5Dos3WeCyI1Jb8Z+KhB4YlEKZmrQeSNcP0WCrzk2I=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-004", + "ipv4_addr_in": "68.235.43.162", + "ipv6_addr_in": "2607:9000:0:55::a04f", + "include_in_country": false, + "active": false, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Na8m5Z3O6kwtLFPsign+JPlLoFm/Q3eBdIMI08psSzg=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-005", + "ipv4_addr_in": "68.235.44.66", + "ipv6_addr_in": "2607:9000:0:58::a05f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "X50kEMmdPc50SYWFaDFNOAMzUYnCZv3rxzw2Y6BqOyk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-006", + "ipv4_addr_in": "68.235.44.98", + "ipv6_addr_in": "2607:9000:0:59::a06f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "01KgzQY+pT7Q+GPUa1ijj0YgdN5owMaK9ViRZO4dIWo=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-007", + "ipv4_addr_in": "68.235.44.194", + "ipv6_addr_in": "2607:9000:0:84::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "qOy1gb7dETzbzzKABZGNmb0V53XN1DEAQBs9/0R/yzs=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-101", + "ipv4_addr_in": "66.63.167.114", + "ipv6_addr_in": "2607:fcd0:bb80:403::b32f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "P1Y04kVMViwZrMhjcX8fDmuVWoKl3xm2Hv/aQOmPWH0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-102", + "ipv4_addr_in": "66.63.167.194", + "ipv6_addr_in": "2607:fcd0:bb80:402::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "6CwMg2aoKNSFFcIsW3R3SY5T6fBYwoRFifl8ZVlw+Vg=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-103", + "ipv4_addr_in": "66.63.167.162", + "ipv6_addr_in": "2607:fcd0:bb80:404::b44f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "GO7SMFDm9Z29PLeX7cw8QndfUsdAe3jYQ8zDr91zt0U=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-104", + "ipv4_addr_in": "66.63.167.146", + "ipv6_addr_in": "2607:fcd0:bb80:405::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "/WirOQ8FNF9tD1+/MYgIAWpjFKiJYhJJ7/w2QmKBrVo=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-201", + "ipv4_addr_in": "87.249.134.1", + "ipv6_addr_in": "2a02:6ea0:c61f::b63f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "+Xx2mJnoJ+JS11Z6g8mp6aUZV7p6DAN9ZTAzPaHakhM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-202", + "ipv4_addr_in": "87.249.134.14", + "ipv6_addr_in": "2a02:6ea0:c61f:1::b64f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "rmN4IM0I0gF7V9503/xnQMOLsu9txl8GTqci9dgUO18=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-wg-203", + "ipv4_addr_in": "87.249.134.27", + "ipv6_addr_in": "2a02:6ea0:c61f:2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "V0ilKm3bVqt0rmJ80sP0zSVK4m6O3nADi88IQAL5kjw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + }, + { + "hostname": "us-chi-br-001", + "ipv4_addr_in": "68.235.44.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "Chicago, IL", + "city_code": "chi", + "latitude": 41.881832, + "longitude": -87.623177 + } + } + ] + }, + { + "name": "Dallas, TX", + "code": "dal", + "latitude": 32.89748, + "longitude": -97.040443, + "relays": [ + { + "hostname": "us-dal-ovpn-001", + "ipv4_addr_in": "146.70.211.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-ovpn-002", + "ipv4_addr_in": "146.70.177.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-ovpn-101", + "ipv4_addr_in": "174.127.113.3", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-ovpn-102", + "ipv4_addr_in": "174.127.113.4", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-ovpn-103", + "ipv4_addr_in": "174.127.113.5", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-ovpn-104", + "ipv4_addr_in": "174.127.113.6", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-ovpn-105", + "ipv4_addr_in": "174.127.113.7", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-001", + "ipv4_addr_in": "146.70.211.66", + "ipv6_addr_in": "2001:ac8:9a:76::1f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "EAzbWMQXxJGsd8j2brhYerGB3t5cPOXqdIDFspDGSng=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-002", + "ipv4_addr_in": "146.70.211.2", + "ipv6_addr_in": "2001:ac8:9a:75::2f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "OYG1hxzz3kUGpVeGjx9DcCYreMO3S6tZN17iHUK+zDE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-003", + "ipv4_addr_in": "146.70.211.130", + "ipv6_addr_in": "2001:ac8:9a:78::3f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "jn/i/ekJOkkRUdMj2I4ViUKd3d/LAdTQ+ICKmBy1tkM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-101", + "ipv4_addr_in": "174.127.113.8", + "ipv6_addr_in": "2606:2e00:8007:1::a30f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "fZXw+9I+tAxRaiYB1tbPYa9EFulu3TJ10SAZoHrS/0U=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-102", + "ipv4_addr_in": "174.127.113.9", + "ipv6_addr_in": "2606:2e00:8007:1::a31f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "C6fRMWc8NehE1Nsn4VTI5RQ1vkAf+nG+IN+jbC1MgSo=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-103", + "ipv4_addr_in": "174.127.113.10", + "ipv6_addr_in": "2606:2e00:8007:1::a32f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "WqCOcFoOHUS5w/7W+psWusNWNLQAQItMHwgBn+zU3V0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-104", + "ipv4_addr_in": "174.127.113.11", + "ipv6_addr_in": "2606:2e00:8007:1::a33f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "c3OgLZw8kh5k3lqACXIiShPGr8xcIfdrUs+qRW9zmk4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-105", + "ipv4_addr_in": "174.127.113.12", + "ipv6_addr_in": "2606:2e00:8007:1::a34f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "REvzY8yCTggZmODs3FOjUc4uqwh4w4PCnNr7BV/7ZFw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-106", + "ipv4_addr_in": "174.127.113.13", + "ipv6_addr_in": "2606:2e00:8007:1::a35f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "k+h3AKF7Lkw5Z2RaCQ7PJzW1zhHZ127XY2YZgKg4mAQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-107", + "ipv4_addr_in": "174.127.113.14", + "ipv6_addr_in": "2606:2e00:8007:1::a36f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "Zmv3KbVF3ZSGvkWrFsNx2qGXpaNg0AC2duEwoAVZrRI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-108", + "ipv4_addr_in": "174.127.113.15", + "ipv6_addr_in": "2606:2e00:8007:1::a37f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "fYuciekV90AUxyJPw2SLOy0Vo73XFS30jBBGIfhvtn4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-109", + "ipv4_addr_in": "174.127.113.16", + "ipv6_addr_in": "2606:2e00:8007:1::a38f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "ICC/pGgEuhgJ8SZykkKBeXyqNtjHPwSTOo6xXGgMq20=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-110", + "ipv4_addr_in": "174.127.113.17", + "ipv6_addr_in": "2606:2e00:8007:1::a39f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "USDvnCyWR5ka523xnxy9KG4rnw/3i9mBprjjp0FQ1QE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-301", + "ipv4_addr_in": "96.44.191.130", + "ipv6_addr_in": "2607:fcd0:da80:1803::b35f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "qWBfuOXxbsSk8Pgi9lqAzpebZtCSKHvwL7ifF5iw3lc=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-302", + "ipv4_addr_in": "96.44.191.146", + "ipv6_addr_in": "2607:fcd0:da80:1804::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "8M6a88xIRG1d7pRD1qTJKKJVAYjkX6/ls8D8M1A2Zxo=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-303", + "ipv4_addr_in": "96.44.189.98", + "ipv6_addr_in": "2607:fcd0:da80:1801::c40f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "9sg8LrGRk5XzHfMeAhgp9IbbqD1NKepHQ5FpBDZWOn0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-401", + "ipv4_addr_in": "37.19.200.156", + "ipv6_addr_in": "2a02:6ea0:d20c:3::b72f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "xZsnCxFN7pOvx6YlTbi92copdsY5xgekTCp//VUMyhE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-402", + "ipv4_addr_in": "37.19.200.143", + "ipv6_addr_in": "2a02:6ea0:d20c:2::b71f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "sPQEji8BhxuM/Za0Q0/9aWYxyACtQF0qRpzaBLumEzo=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-403", + "ipv4_addr_in": "37.19.200.130", + "ipv6_addr_in": "2a02:6ea0:d20c:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "4s9JIhxC/D02tosXYYcgrD+pHI+C7oTAFsXzVisKjRs=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-501", + "ipv4_addr_in": "206.217.206.27", + "ipv6_addr_in": "2606:2e00:8007:a:ae1f:6bff:fef5:7bf5", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "8J4HNTRdwRX1me/sKxPTy8576fCcmVusC194ZLKyjQg=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-502", + "ipv4_addr_in": "206.217.206.47", + "ipv6_addr_in": "2606:2e00:8007:a:ae1f:6bff:fef5:7b21", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "7RegQnJ70PNlB0bpICSlc/W48GCtzszhSelTdlK5QQ0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-503", + "ipv4_addr_in": "206.217.206.67", + "ipv6_addr_in": "2606:2e00:8007:a:ae1f:6bff:fef5:7beb", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "si+P5Ef8D21CAkzh9NgrnIhbZDBcFxoYDaN6amSTkWE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-504", + "ipv4_addr_in": "206.217.206.87", + "ipv6_addr_in": "2606:2e00:8007:a:ae1f:6bff:fef5:7b1b", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "YROBTYZewygT97VTgMHxEwqaUiAjAvsuwTsuh5IBH1Y=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-wg-505", + "ipv4_addr_in": "206.217.206.107", + "ipv6_addr_in": "2606:2e00:8007:a:ae1f:6bff:fef5:7983", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "bf59QZip/y9tvCF6S9pir32LuFtvWH7nayqhzplyGkQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + }, + { + "hostname": "us-dal-br-101", + "ipv4_addr_in": "174.127.113.18", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "Dallas, TX", + "city_code": "dal", + "latitude": 32.89748, + "longitude": -97.040443 + } + } + ] + }, + { + "name": "Denver, CO", + "code": "den", + "latitude": 39.7392358, + "longitude": -104.990251, + "relays": [ + { + "hostname": "us-den-ovpn-001", + "ipv4_addr_in": "198.44.128.98", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Denver, CO", + "city_code": "den", + "latitude": 39.7392358, + "longitude": -104.990251 + } + }, + { + "hostname": "us-den-ovpn-002", + "ipv4_addr_in": "198.44.128.226", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Denver, CO", + "city_code": "den", + "latitude": 39.7392358, + "longitude": -104.990251 + } + }, + { + "hostname": "us-den-wg-001", + "ipv4_addr_in": "198.44.128.194", + "ipv6_addr_in": "2607:9000:2000:16::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "3clcc9092sgEsFGrUfcCBUzT9tN6uy12t77uTmSLqwc=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Denver, CO", + "city_code": "den", + "latitude": 39.7392358, + "longitude": -104.990251 + } + }, + { + "hostname": "us-den-wg-002", + "ipv4_addr_in": "198.44.128.162", + "ipv6_addr_in": "2607:9000:2000:15::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "jh3kAesaULbfC0h7VHwNPiTrz04vPC0Aa4kwRjy2+2Q=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Denver, CO", + "city_code": "den", + "latitude": 39.7392358, + "longitude": -104.990251 + } + }, + { + "hostname": "us-den-wg-003", + "ipv4_addr_in": "198.44.128.130", + "ipv6_addr_in": "2607:9000:2000:14::a46f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "v7CG+wctmTw9LxuWBp3tGARithgbDU7nZZduSefkqzg=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Denver, CO", + "city_code": "den", + "latitude": 39.7392358, + "longitude": -104.990251 + } + }, + { + "hostname": "us-den-wg-101", + "ipv4_addr_in": "37.19.210.1", + "ipv6_addr_in": "2a02:6ea0:d70a::b57f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "74U+9EQrMwVOafgXuSp8eaKG0+p4zjSsDe3J7+ojhx0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Denver, CO", + "city_code": "den", + "latitude": 39.7392358, + "longitude": -104.990251 + } + }, + { + "hostname": "us-den-wg-102", + "ipv4_addr_in": "37.19.210.14", + "ipv6_addr_in": "2a02:6ea0:d70a:1::b58f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "T44stCRbQXFCBCcpdDbZPlNHp2eZEi91ooyk0JDC21E=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Denver, CO", + "city_code": "den", + "latitude": 39.7392358, + "longitude": -104.990251 + } + }, + { + "hostname": "us-den-wg-103", + "ipv4_addr_in": "37.19.210.27", + "ipv6_addr_in": "2a02:6ea0:d70a:2::b59f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "Az+PGHQ0xFElmRBv+PKZuRnEzKPrPtUpRD3vpxb4si4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Denver, CO", + "city_code": "den", + "latitude": 39.7392358, + "longitude": -104.990251 + } + } + ] + }, + { + "name": "Detroit, MI", + "code": "det", + "latitude": 42.331389, + "longitude": -83.045833, + "relays": [ + { + "hostname": "us-det-wg-001", + "ipv4_addr_in": "185.141.119.131", + "ipv6_addr_in": "2a06:3040:11:610::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "+USmlxhnLmlNkDnBbu+rXwjUwa383e0ilYEqPkEkNHA=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Detroit, MI", + "city_code": "det", + "latitude": 42.331389, + "longitude": -83.045833 + } + }, + { + "hostname": "us-det-wg-002", + "ipv4_addr_in": "185.141.119.161", + "ipv6_addr_in": "2a06:3040:11:610::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "HostRoyale", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "cYqP1UqhOYuaj47e4jAbgL55h52L+ALjtML26OtBvFU=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Detroit, MI", + "city_code": "det", + "latitude": 42.331389, + "longitude": -83.045833 + } + } + ] + }, + { + "name": "Houston, TX", + "code": "hou", + "latitude": 29.749907, + "longitude": -95.358421, + "relays": [ + { + "hostname": "us-hou-wg-001", + "ipv4_addr_in": "37.19.221.130", + "ipv6_addr_in": "2a02:6ea0:e001::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "NKscQ4mm24nsYWfpL85Cve+BKIExR0JaysldUtVSlzg=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Houston, TX", + "city_code": "hou", + "latitude": 29.749907, + "longitude": -95.358421 + } + }, + { + "hostname": "us-hou-wg-002", + "ipv4_addr_in": "37.19.221.143", + "ipv6_addr_in": "2a02:6ea0:e001:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "tzSfoiq9ZbCcE5I0Xz9kCrsWksDn0wgvaz9TiHYTmnU=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Houston, TX", + "city_code": "hou", + "latitude": 29.749907, + "longitude": -95.358421 + } + }, + { + "hostname": "us-hou-wg-003", + "ipv4_addr_in": "37.19.221.156", + "ipv6_addr_in": "2a02:6ea0:e001:2::b55f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "fNSu30TCgbADxNKACx+5qWY6XGJOga4COmTZZE0k0R4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Houston, TX", + "city_code": "hou", + "latitude": 29.749907, + "longitude": -95.358421 + } + }, + { + "hostname": "us-hou-wg-004", + "ipv4_addr_in": "37.19.221.169", + "ipv6_addr_in": "2a02:6ea0:e001:3::b56f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "NkZMYUEcHykPkAFdm3dE8l2U9P2mt58Dw6j6BWhzaCc=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Houston, TX", + "city_code": "hou", + "latitude": 29.749907, + "longitude": -95.358421 + } + } + ] + }, + { + "name": "Los Angeles, CA", + "code": "lax", + "latitude": 34.052235, + "longitude": -118.243683, + "relays": [ + { + "hostname": "us-lax-ovpn-101", + "ipv4_addr_in": "198.44.129.162", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-ovpn-102", + "ipv4_addr_in": "198.44.129.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-ovpn-201", + "ipv4_addr_in": "169.150.203.41", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-ovpn-202", + "ipv4_addr_in": "169.150.203.54", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-ovpn-401", + "ipv4_addr_in": "146.70.172.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-ovpn-402", + "ipv4_addr_in": "146.70.172.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-ovpn-403", + "ipv4_addr_in": "146.70.172.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-101", + "ipv4_addr_in": "198.44.129.98", + "ipv6_addr_in": "2607:9000:3000:15::a49f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "IDXrg8s0qYFAWcMcXFb6P/EHOESkTyotZCSlerQfyCQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-102", + "ipv4_addr_in": "198.44.129.66", + "ipv6_addr_in": "2607:9000:3000:14::a50f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Ldwvbs6mOxEbpXLRA3Z/qmEyJo2wVTdQ94+v3UFsbBw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-103", + "ipv4_addr_in": "198.44.129.34", + "ipv6_addr_in": "2607:9000:3000:13::a51f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "gabX4D/Yhut0IMl/9jRK+kMoHbkL38qaUm7r/dH5rWg=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-201", + "ipv4_addr_in": "169.150.203.2", + "ipv6_addr_in": "2a02:6ea0:c859:1::a01f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "xWobY7DWTL+vL1yD4NWwbQ3V4e8qz10Yz+EFdkIjq0Y=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-202", + "ipv4_addr_in": "169.150.203.15", + "ipv6_addr_in": "2a02:6ea0:c859:2::a02f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "SDnciTlujuy2APFTkhzfq5X+LDi+lhfU38wI2HBCxxs=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-203", + "ipv4_addr_in": "169.150.203.28", + "ipv6_addr_in": "2a02:6ea0:c859:3::a03f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "W6/Yamxmfx3geWTwwtBbJe/J8UdEzOfa6M+cEpNPIwg=", + "daita": true + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-301", + "ipv4_addr_in": "198.96.89.194", + "ipv6_addr_in": "2607:fcd0:100:7c03::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "U4uhpKZm/G1i/qU6s0puSuI+UL4bNCWTuiZBJ8Hdi1Y=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-302", + "ipv4_addr_in": "204.152.216.98", + "ipv6_addr_in": "2607:fcd0:100:7c01::b29f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "Ey0LihLvJ0YnkMLXK+Kcb4SniJiqoavQuASdRRFASXw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-303", + "ipv4_addr_in": "204.152.216.114", + "ipv6_addr_in": "2607:fcd0:100:7c02::b30f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "AcExK2CiCHYWU6Sft49uYnLUhIZiId1M+ISzupOJznI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-401", + "ipv4_addr_in": "146.70.173.2", + "ipv6_addr_in": "2a0d:5600:8:4::d1f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "KX+59wAvZwSKv/MVHsFVQS1j9Loaol0c8oOI/BGf3Bk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-402", + "ipv4_addr_in": "146.70.173.66", + "ipv6_addr_in": "2a0d:5600:8:6::d2f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "EKZXvHlSDeqAjfC/m9aQR0oXfQ6Idgffa9L0DH5yaCo=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-403", + "ipv4_addr_in": "146.70.173.130", + "ipv6_addr_in": "2a0d:5600:8:d::d3f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "mBqaWs6pti93U+1feyj6LRzzveNmeklancn3XuKoPWI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-404", + "ipv4_addr_in": "146.70.173.194", + "ipv6_addr_in": "2a0d:5600:8:2f::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "YGl+lj1tk08U9x9Z73zowUW3rk8i0nPmYkxGzNdE4VM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-405", + "ipv4_addr_in": "146.70.172.2", + "ipv6_addr_in": "2a0d:5600:8:37::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Pe86fNGUd+AIeaabsn7Hk4clQf1kJvxOXPykfVGjeho=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-406", + "ipv4_addr_in": "146.70.174.2", + "ipv6_addr_in": "2a0d:5600:8:3b::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "K3KF3TCWbYcHF5XHL2zaifvQGHrPWoCjFYxDaJO71GA=", + "daita": true + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-501", + "ipv4_addr_in": "23.162.40.4", + "ipv6_addr_in": "2602:fa19:4::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "IHFvbxyz7qK6x811dNNf0rs1MFLaZwW9C3FNwOLz6hY=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-502", + "ipv4_addr_in": "23.162.40.45", + "ipv6_addr_in": "2602:fa19:4::f101", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "L3P0XU2RveHw0l845ME8X24xy3oOTMr9pTHkNo8Aw10=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-wg-503", + "ipv4_addr_in": "23.162.40.86", + "ipv6_addr_in": "2602:fa19:4::f201", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "tzDBizpxIHNLPvVdW3pop65cwWNkL73Gam3DUxHDfns=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + }, + { + "hostname": "us-lax-br-401", + "ipv4_addr_in": "62.133.44.202", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "Los Angeles, CA", + "city_code": "lax", + "latitude": 34.052235, + "longitude": -118.243683 + } + } + ] + }, + { + "name": "Miami, FL", + "code": "mia", + "latitude": 25.761681, + "longitude": -80.191788, + "relays": [ + { + "hostname": "us-mia-ovpn-101", + "ipv4_addr_in": "146.70.187.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-ovpn-102", + "ipv4_addr_in": "146.70.183.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-wg-001", + "ipv4_addr_in": "45.134.142.219", + "ipv6_addr_in": "2a02:6ea0:cc1f:2::b62f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "FVEKAMJqaJU2AwWn5Mg9TK9IAfJc4XDUmSzEeC/VXGs=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-wg-002", + "ipv4_addr_in": "45.134.142.206", + "ipv6_addr_in": "2a02:6ea0:cc1f:1::b61f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "H5t7PsMDnUAHrR8D2Jt3Mh6N6w43WmCzrOHShlEU+zw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-wg-003", + "ipv4_addr_in": "45.134.142.193", + "ipv6_addr_in": "2a02:6ea0:cc1f::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 200, + "endpoint_data": { + "wireguard": { + "public_key": "N/3F0QvCuiWWzCwaJmnPZO53LZrKn6sr7rItecrQSQY=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-wg-101", + "ipv4_addr_in": "146.70.187.2", + "ipv6_addr_in": "2a0d:5600:6:104::a01f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "50/sEK7t3on/H2sunx+gzIjJI6E9/Y6gHOHQrvzsij4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-wg-102", + "ipv4_addr_in": "146.70.187.66", + "ipv6_addr_in": "2a0d:5600:6:105::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "sJw9LzH2sunqRes2FNi8l6+bd8jqFAiYFfUGTbCXlA4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-wg-103", + "ipv4_addr_in": "146.70.187.130", + "ipv6_addr_in": "2a0d:5600:6:106::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "TpPDIhObMTeoMVx0MvSstQaIH1EfRYqW2vzGTB+ETVk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-wg-301", + "ipv4_addr_in": "173.44.63.66", + "ipv6_addr_in": "2607:ff48:aa81:2602::b25f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "nCr87vBNEwrERnkcDhWENNVIMaLF+C0p3h9nqwguO2g=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-wg-302", + "ipv4_addr_in": "104.129.41.194", + "ipv6_addr_in": "2607:ff48:aa81:2603::b26f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "voRd3Wi8W4kaEMIJMy7IBkpkAVxQkYF0VubbK1+zgR8=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + }, + { + "hostname": "us-mia-br-101", + "ipv4_addr_in": "146.70.183.34", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "Miami, FL", + "city_code": "mia", + "latitude": 25.761681, + "longitude": -80.191788 + } + } + ] + }, + { + "name": "New York, NY", + "code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242, + "relays": [ + { + "hostname": "us-nyc-ovpn-401", + "ipv4_addr_in": "198.44.136.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-ovpn-402", + "ipv4_addr_in": "198.44.136.162", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-ovpn-501", + "ipv4_addr_in": "146.70.168.2", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-ovpn-502", + "ipv4_addr_in": "146.70.166.2", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-ovpn-503", + "ipv4_addr_in": "146.70.166.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-ovpn-601", + "ipv4_addr_in": "146.70.171.194", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-ovpn-602", + "ipv4_addr_in": "146.70.185.130", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-ovpn-603", + "ipv4_addr_in": "146.70.185.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-301", + "ipv4_addr_in": "143.244.47.65", + "ipv6_addr_in": "2a02:6ea0:c43f::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "IzqkjVCdJYC1AShILfzebchTlKCqVCt/SMEXolaS3Uc=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-302", + "ipv4_addr_in": "143.244.47.78", + "ipv6_addr_in": "2a02:6ea0:c43f:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "gH/fZJwc9iLv9fazk09J/DUWT2X7/LFXijRS15e2n34=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-303", + "ipv4_addr_in": "143.244.47.91", + "ipv6_addr_in": "2a02:6ea0:c43f:2::b52f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "KRO+RzrFV92Ah+qpHgAMKZH2jtjRlmJ4ayl0gletY3c=", + "daita": true + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-401", + "ipv4_addr_in": "198.44.136.34", + "ipv6_addr_in": "2607:9000:a000:12::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "4oR0oc3cyktCoQ1eygZ/EZeCNeI6eQnQJNRuBmRne2Q=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-402", + "ipv4_addr_in": "198.44.136.66", + "ipv6_addr_in": "2607:9000:a000:13::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "/o79urfCcNSCTD4OCPNxn6qoWMchQ5Za6p6hf5cxmwE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-403", + "ipv4_addr_in": "198.44.136.98", + "ipv6_addr_in": "2607:9000:a000:14::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "pFM95uwAFj62uYDkJXcAPYaPmy+nl+dd92ZLV9bWbHQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-404", + "ipv4_addr_in": "198.44.136.194", + "ipv6_addr_in": "2607:9000:a000:17::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "pCZ9NnIgAEwrDy4H/eGz8NvNcbAg7UGFTGYruyCfVwU=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-501", + "ipv4_addr_in": "146.70.165.2", + "ipv6_addr_in": "2a0d:5600:24:2b6::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "FMNXnFgDHNTrT9o49U8bb3Z8J90LZzVJPpRzKtJM9W8=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-502", + "ipv4_addr_in": "146.70.165.130", + "ipv6_addr_in": "2a0d:5600:24:2b8::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "cmUR4g9aIFDa5Xnp4B6Zjyp20jwgTTMgBdhcdvDV0FM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-503", + "ipv4_addr_in": "146.70.165.194", + "ipv6_addr_in": "2a0d:5600:24:2b9::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "czE6NJ8CccA5jnJkKoZGDpMXFqSudeVTzxU5scLP/H8=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-504", + "ipv4_addr_in": "146.70.166.130", + "ipv6_addr_in": "2a0d:5600:24:2c2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "MVa5yuoYnjXJtSCeBsyvaemuaK4KFN1p78+37Nvm2m0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-505", + "ipv4_addr_in": "146.70.166.194", + "ipv6_addr_in": "2a0d:5600:24:2c3::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "jrjogHbVDuPxyloBldvtB51TmebNJo+4rW2JFrN33iM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-506", + "ipv4_addr_in": "146.70.165.66", + "ipv6_addr_in": "2a0d:5600:24:2b7::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "IjdtI6sz8ZjU5tlK3eW4HAPp+GRvHErDtqxBcr8JvTM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-601", + "ipv4_addr_in": "146.70.185.2", + "ipv6_addr_in": "2a0d:5600:24:136a::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "OKyEPafS1lnUTWqtVeWElkTzcmkvLi9dncBHbSyFrH8=", + "daita": true + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-602", + "ipv4_addr_in": "146.70.168.130", + "ipv6_addr_in": "2a0d:5600:24:1378::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "4Lg7yQlukAMp6EX+2Ap+q4O+QIV/OEZyybtFJmN9umw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-603", + "ipv4_addr_in": "146.70.168.66", + "ipv6_addr_in": "2a0d:5600:24:1377::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "s3N8Xeh6khECbgRYPk9pp5slw2uE0deOxa9rSJ6bzwE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-604", + "ipv4_addr_in": "146.70.171.66", + "ipv6_addr_in": "2a0d:5600:24:1372::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "FIcFPDjxfF24xBrv+W7Bcqb2wADSWd+HAWPKYo6xZEk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-605", + "ipv4_addr_in": "146.70.171.130", + "ipv6_addr_in": "2a0d:5600:24:1374::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "78nFhfPEjrfOxBkUf2ylM7w6upYBEcHXm93sr8CMTE4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-wg-606", + "ipv4_addr_in": "146.70.168.194", + "ipv6_addr_in": "2a0d:5600:24:1379::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "a8+VB6Cgah7Q5mWY860VfgU/h3Zf+pMpMdHB22e1uTQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-br-501", + "ipv4_addr_in": "212.103.48.226", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + }, + { + "hostname": "us-nyc-br-601", + "ipv4_addr_in": "38.132.121.146", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "M247", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "New York, NY", + "city_code": "nyc", + "latitude": 40.73061, + "longitude": -73.935242 + } + } + ] + }, + { + "name": "Phoenix, AZ", + "code": "phx", + "latitude": 33.448376, + "longitude": -112.074036, + "relays": [ + { + "hostname": "us-phx-ovpn-101", + "ipv4_addr_in": "198.54.133.34", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Phoenix, AZ", + "city_code": "phx", + "latitude": 33.448376, + "longitude": -112.074036 + } + }, + { + "hostname": "us-phx-ovpn-102", + "ipv4_addr_in": "198.54.133.66", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Phoenix, AZ", + "city_code": "phx", + "latitude": 33.448376, + "longitude": -112.074036 + } + }, + { + "hostname": "us-phx-wg-101", + "ipv4_addr_in": "198.54.133.98", + "ipv6_addr_in": "2607:9000:7000:14::103f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 50, + "endpoint_data": { + "wireguard": { + "public_key": "Tg5LXnudnxEjf6pp7+T0QKCU9K3jzwdA1/l0negOHBk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Phoenix, AZ", + "city_code": "phx", + "latitude": 33.448376, + "longitude": -112.074036 + } + }, + { + "hostname": "us-phx-wg-102", + "ipv4_addr_in": "198.54.133.130", + "ipv6_addr_in": "2607:9000:7000:15::b89f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 50, + "endpoint_data": { + "wireguard": { + "public_key": "1BbuYcr+WcmgcUhZTJ48GxOjQW0k4iEYBnn1Axhm1yA=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Phoenix, AZ", + "city_code": "phx", + "latitude": 33.448376, + "longitude": -112.074036 + } + }, + { + "hostname": "us-phx-wg-103", + "ipv4_addr_in": "198.54.133.162", + "ipv6_addr_in": "2607:9000:7000:16::f001", + "include_in_country": false, + "active": false, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "aEJhNzQJYMH9VzB7bxhimyUFz3uo4mp1RD9VY3KAEWs=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Phoenix, AZ", + "city_code": "phx", + "latitude": 33.448376, + "longitude": -112.074036 + } + } + ] + }, + { + "name": "Ashburn, VA", + "code": "qas", + "latitude": 39.043757, + "longitude": -77.487442, + "relays": [ + { + "hostname": "us-qas-ovpn-001", + "ipv4_addr_in": "198.54.135.162", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-ovpn-002", + "ipv4_addr_in": "198.54.135.194", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 50, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-ovpn-101", + "ipv4_addr_in": "185.156.46.169", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-ovpn-102", + "ipv4_addr_in": "185.156.46.182", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-wg-001", + "ipv4_addr_in": "198.54.135.34", + "ipv6_addr_in": "2607:9000:9000:12::b46f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "UKNLCimke54RqRdj6UFyIuBO6nv2VVpDT3vM9N25VyI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-wg-002", + "ipv4_addr_in": "198.54.135.66", + "ipv6_addr_in": "2607:9000:9000:13::b47f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "UUCBSYnGq+zEDqA6Wyse3JXv8fZuqKEgavRZTnCXlBg=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-wg-003", + "ipv4_addr_in": "198.54.135.98", + "ipv6_addr_in": "2607:9000:9000:14::b48f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "0s0NdIzo+pq0OiHstZHqapYsdevGQGopQ5NM54g/9jo=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-wg-004", + "ipv4_addr_in": "198.54.135.130", + "ipv6_addr_in": "2607:9000:9000:15::b49f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "TvqnL6VkJbz0KrjtHnUYWvA7zRt9ysI64LjTOx2vmm4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-wg-101", + "ipv4_addr_in": "185.156.46.130", + "ipv6_addr_in": "2a02:6ea0:e206:1::a01f", + "include_in_country": true, + "active": false, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "NODBnzBgLO5Itv+HOyQer7jpVn1UdCKfv9uwAAvvMkA=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-wg-102", + "ipv4_addr_in": "185.156.46.143", + "ipv6_addr_in": "2a02:6ea0:e206:2::a02f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5hlEb3AjTzVIJyYWCYvJvbgA4p25Ltfp2cYnys90LQ0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + }, + { + "hostname": "us-qas-wg-103", + "ipv4_addr_in": "185.156.46.156", + "ipv6_addr_in": "2a02:6ea0:e206:3::a03f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "oD9IFZsA5sync37K/sekVXaww76MwA3IvDRpR/irZWQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Ashburn, VA", + "city_code": "qas", + "latitude": 39.043757, + "longitude": -77.487442 + } + } + ] + }, + { + "name": "Raleigh, NC", + "code": "rag", + "latitude": 35.787743, + "longitude": -78.644257, + "relays": [ + { + "hostname": "us-rag-ovpn-101", + "ipv4_addr_in": "198.54.130.34", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + }, + { + "hostname": "us-rag-ovpn-102", + "ipv4_addr_in": "198.54.130.50", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + }, + { + "hostname": "us-rag-ovpn-103", + "ipv4_addr_in": "198.54.130.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": false, + "owned": false, + "provider": "Tzulo", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + }, + { + "hostname": "us-rag-wg-101", + "ipv4_addr_in": "198.54.130.82", + "ipv6_addr_in": "2607:9000:4000:15::b83f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "tKUaUnY6dJhRx3zCMAFMa1I7baVt5QrpnmdRsW99MWk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + }, + { + "hostname": "us-rag-wg-102", + "ipv4_addr_in": "198.54.130.98", + "ipv6_addr_in": "2607:9000:4000:16::b84f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "XT06PnP77El1DOWfg5Kq6GiPzzfvQbTFfWlHPws/TQ0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + }, + { + "hostname": "us-rag-wg-103", + "ipv4_addr_in": "198.54.130.114", + "ipv6_addr_in": "2607:9000:4000:17::b85f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "4xCeK68I0TXZoy1e8VeQDCea/6Qeu57IAtCi8Lnllik=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + }, + { + "hostname": "us-rag-wg-104", + "ipv4_addr_in": "198.54.130.130", + "ipv6_addr_in": "2607:9000:4000:18::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "zSuNvGa8Zk+jc2niP1s75CLTFD/1U1Fqc6ypfzO9mB0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + }, + { + "hostname": "us-rag-wg-105", + "ipv4_addr_in": "198.54.130.146", + "ipv6_addr_in": "2607:9000:4000:19::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "XJDcYZ6peY1cfErhLQ0AqzGTxKuKXz5M//sFvEX8dAI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + }, + { + "hostname": "us-rag-br-101", + "ipv4_addr_in": "198.54.130.178", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "Raleigh, NC", + "city_code": "rag", + "latitude": 35.787743, + "longitude": -78.644257 + } + } + ] + }, + { + "name": "Seattle, WA", + "code": "sea", + "latitude": 47.608013, + "longitude": -122.335167, + "relays": [ + { + "hostname": "us-sea-ovpn-101", + "ipv4_addr_in": "198.54.131.34", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-ovpn-102", + "ipv4_addr_in": "198.54.131.66", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-001", + "ipv4_addr_in": "138.199.43.91", + "ipv6_addr_in": "2a02:6ea0:d80b:3::b75f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "bZQF7VRDRK/JUJ8L6EFzF/zRw2tsqMRk6FesGtTgsC0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-002", + "ipv4_addr_in": "138.199.43.78", + "ipv6_addr_in": "2a02:6ea0:d80b:2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Xt80FGN9eLy1vX3F29huj6oW2MnQt7ne3DMBpo525Qw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-003", + "ipv4_addr_in": "138.199.43.65", + "ipv6_addr_in": "2a02:6ea0:d80b:1::b73f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "4ke8ZSsroiI6Sp23OBbMAU6yQmdF3xU2N8CyzQXE/Qw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-101", + "ipv4_addr_in": "198.54.131.130", + "ipv6_addr_in": "2607:9000:5000:15::b77f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "200em73iD9942d9hlHonAfNXGWwFQcicBVGHeHbdxVM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-102", + "ipv4_addr_in": "198.54.131.162", + "ipv6_addr_in": "2607:9000:5000:16::b78f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "YwwaW1/1vFJKp22Je7btEhVXTzTckxMF1qesHN4T3QA=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-103", + "ipv4_addr_in": "198.54.131.98", + "ipv6_addr_in": "2607:9000:5000:14::b03f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "fU4oTJhFtwvmk0odRe9Jatc+DMh9gKz49WSzO0psCmU=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-201", + "ipv4_addr_in": "199.229.250.52", + "ipv6_addr_in": "2607:f7a0:c:4::c09f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "K+Xt/lYTSTavIW8RoQjzWI7tExy6sp1FqBi3n5pH5SI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-202", + "ipv4_addr_in": "199.229.250.53", + "ipv6_addr_in": "2607:f7a0:c:4::c10f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "t2x4A+F04hKfxIHMcY2RswaVyj3XHelTT8Q1FAwBIj4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-203", + "ipv4_addr_in": "199.229.250.54", + "ipv6_addr_in": "2607:f7a0:c:4::c11f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "eS44Rs1j3BotLKH8AV78KGZQtsMQKpjdYS9chXdxPnw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-204", + "ipv4_addr_in": "199.229.250.55", + "ipv6_addr_in": "2607:f7a0:c:4::f301", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "WyzaVvsFivIx7iC+bYbEV5OhtjSw3aqjU5sB3DltQxI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-205", + "ipv4_addr_in": "199.229.250.56", + "ipv6_addr_in": "2607:f7a0:c:4::f401", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "vnD/2bCGqH4b6zZSRuLGSw9oN4NhQdTW9jlMaa2N1AU=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-206", + "ipv4_addr_in": "199.229.250.57", + "ipv6_addr_in": "2607:f7a0:c:4::f501", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "1TYUyuvJi+RQETmW3aKJDS5p9K7kutK+Qp4ooy92CBQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-207", + "ipv4_addr_in": "199.229.250.58", + "ipv6_addr_in": "2607:f7a0:c:4::f601", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "mdYjW/giLeamWPUuHxLAIcornNrH/2HQrixhBpQZmHA=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-208", + "ipv4_addr_in": "199.229.250.59", + "ipv6_addr_in": "2607:f7a0:c:4::f701", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "k4ah0qvHgn5IsalvehE7GPiDC4BOE9botvd+KITdtyg=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-301", + "ipv4_addr_in": "104.129.57.66", + "ipv6_addr_in": "2607:fcd0:cd00:a00::b27f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "ekaodfDtCmMmHBPWT04FObtHi9uxCn9mI2NB6WAsS0U=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + }, + { + "hostname": "us-sea-wg-302", + "ipv4_addr_in": "173.205.93.2", + "ipv6_addr_in": "2607:fcd0:cd00:a01::b28f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "Plbre6XhYWgXzdAUD94/gqSy6C9z/nD40U2gIt+MAGQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Seattle, WA", + "city_code": "sea", + "latitude": 47.608013, + "longitude": -122.335167 + } + } + ] + }, + { + "name": "San Jose, CA", + "code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286, + "relays": [ + { + "hostname": "us-sjc-ovpn-001", + "ipv4_addr_in": "198.54.134.34", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-ovpn-002", + "ipv4_addr_in": "198.54.134.66", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-001", + "ipv4_addr_in": "198.54.134.98", + "ipv6_addr_in": "2607:9000:8000:14::f001", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "Ow25Pdtyqbv/Y0I0myNixjJ2iljsKcH04PWvtJqbmCk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-002", + "ipv4_addr_in": "198.54.134.130", + "ipv6_addr_in": "2607:9000:8000:15::b95f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "aOt3gFGc0a0UMAdcxhBWX9TCnEabe2s66MHzjXU50Tc=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-003", + "ipv4_addr_in": "198.54.134.162", + "ipv6_addr_in": "2607:9000:8000:16::b96f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Tzulo", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "Vim/OUBT3Bogv+FF623pAHXc/vmRwur2JKcNsLHQH1o=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-101", + "ipv4_addr_in": "66.115.165.211", + "ipv6_addr_in": "2607:f7a0:16:5::c01f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "yohC6MIq62U+BmTdBjTFBQbj5jTaxRHtVdCp5AdDgAs=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-102", + "ipv4_addr_in": "66.115.165.212", + "ipv6_addr_in": "2607:f7a0:16:5::c02f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "wfFi5sBBThR9EK1US0dbwaOiuNMIBpBBhEif9EnUeCM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-103", + "ipv4_addr_in": "66.115.165.213", + "ipv6_addr_in": "2607:f7a0:16:5::c03f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "5AsmDtBqLureV4JcG+dwFq35hUaAff4NzLCkJDkoWQQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-104", + "ipv4_addr_in": "66.115.165.214", + "ipv6_addr_in": "2607:f7a0:16:5::c04f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "fUjjvrtnbokobdzudzXPzCM6Fli28Tsg5kArztU0YnU=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-105", + "ipv4_addr_in": "66.115.165.215", + "ipv6_addr_in": "2607:f7a0:16:5::f401", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "m0PSpvahFXuYOtGZ9hFAMErzKW7vhwqyd82rw+yBHz0=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-106", + "ipv4_addr_in": "66.115.165.216", + "ipv6_addr_in": "2607:f7a0:16:5::f501", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "9xV2ZXE1dVChbxu/ca4jfXoCnYFv8fbP/OCFySD6RjA=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-107", + "ipv4_addr_in": "66.115.165.217", + "ipv6_addr_in": "2607:f7a0:16:5::f601", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "2p37fAPhw+2uPJ5pP5Iy8hgs7506k+8ITqPIzbaa4zQ=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-108", + "ipv4_addr_in": "66.115.165.218", + "ipv6_addr_in": "2607:f7a0:16:5::f701", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 30, + "endpoint_data": { + "wireguard": { + "public_key": "x9/CJ28JOHah+HPRKQpVuCLL3v3eMWj7Xa7dotpPX2c=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-301", + "ipv4_addr_in": "142.147.89.195", + "ipv6_addr_in": "2604:e8c0:7::b66f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 40, + "endpoint_data": { + "wireguard": { + "public_key": "f3bMFNG3xcXRN/i0jHxo68CXFcNNlennuf1jdkPMEVM=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-302", + "ipv4_addr_in": "142.147.89.210", + "ipv6_addr_in": "2604:e8c0:7::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 40, + "endpoint_data": { + "wireguard": { + "public_key": "8wVb4HUgmpQEa5a1Q8Ff1hTDTJVaHts487bksJVugEo=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-303", + "ipv4_addr_in": "142.147.89.225", + "ipv6_addr_in": "2604:e8c0:7::b68f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "xtom", + "weight": 40, + "endpoint_data": { + "wireguard": { + "public_key": "2ZQTRk/3jT+ccfG3G/QoJV3NFC4CFHQwGBCSokOvBnA=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-401", + "ipv4_addr_in": "79.127.217.34", + "ipv6_addr_in": "2a02:6ea0:e611::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "2q0LGwWvnV2qbNEAgOOHh4tvol5vGeQXJZDAbazCSBY=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + }, + { + "hostname": "us-sjc-wg-402", + "ipv4_addr_in": "79.127.217.47", + "ipv6_addr_in": "2a02:6ea0:e611:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "+UZsgTzYTdG3LvqpL+V9ZkwEMiFcls32YlpuI0cqDQ4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "San Jose, CA", + "city_code": "sjc", + "latitude": 37.3382082, + "longitude": -121.8863286 + } + } + ] + }, + { + "name": "Salt Lake City, UT", + "code": "slc", + "latitude": 40.758701, + "longitude": -111.876183, + "relays": [ + { + "hostname": "us-slc-ovpn-101", + "ipv4_addr_in": "69.4.234.132", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-ovpn-102", + "ipv4_addr_in": "69.4.234.133", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-ovpn-103", + "ipv4_addr_in": "69.4.234.134", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-ovpn-104", + "ipv4_addr_in": "69.4.234.135", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-ovpn-105", + "ipv4_addr_in": "69.4.234.136", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-ovpn-106", + "ipv4_addr_in": "69.4.234.137", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-ovpn-201", + "ipv4_addr_in": "69.4.234.150", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-ovpn-202", + "ipv4_addr_in": "69.4.234.151", + "ipv6_addr_in": null, + "include_in_country": true, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": "openvpn", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-101", + "ipv4_addr_in": "69.4.234.147", + "ipv6_addr_in": "2606:2e00:0:b9::b34f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "dbsApGxL4oNd6CyjPrtiV6ep+C1HaFuYGd0DPCHMF2o=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-102", + "ipv4_addr_in": "69.4.234.138", + "ipv6_addr_in": "2606:2e00:0:b9::b35f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "g6yfZKBIS6BtXdTb5yXXVmOkkQ1OBxxJS3H67mebclw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-103", + "ipv4_addr_in": "69.4.234.139", + "ipv6_addr_in": "2606:2e00:0:b9::b36f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "ioipHdOYhc4nVsQKghmJy/vvnMI38VLLFNZXWgxxOx8=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-104", + "ipv4_addr_in": "69.4.234.140", + "ipv6_addr_in": "2606:2e00:0:b9::b37f", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "8gcGDG4XVifgKgjpkiRSxI4QA0lhU1LGX7v7ZL4AXxE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-105", + "ipv4_addr_in": "69.4.234.141", + "ipv6_addr_in": "2606:2e00:0:b9::f401", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "vkbSMnaddVm4YWkuuf8rOSc45XTfpVLJEom0FaJWq2g=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-106", + "ipv4_addr_in": "69.4.234.142", + "ipv6_addr_in": "2606:2e00:0:b9::f501", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "abx3jjkKD+7abroGzeELm4Esa4bESJV72Fm9Tp+YqAE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-107", + "ipv4_addr_in": "69.4.234.143", + "ipv6_addr_in": "2606:2e00:0:b9::f601", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "dJX3V47dAZWGc7BeJCvDfwSqdKRsfPUT9Lm7LzPs2CU=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-108", + "ipv4_addr_in": "69.4.234.144", + "ipv6_addr_in": "2606:2e00:0:b9::f701", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "/fbfBjrhWKRTgOPy+esHuoeFCJWGX+nCYgTo8uKTMCE=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-109", + "ipv4_addr_in": "69.4.234.145", + "ipv6_addr_in": "2606:2e00:0:b9::f801", + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 1, + "endpoint_data": { + "wireguard": { + "public_key": "dClWdBHZT7dwqXzIRzit6CIaJYAFtTL/yYZ8Knj8Cjk=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-201", + "ipv4_addr_in": "69.4.234.9", + "ipv6_addr_in": "2607:fc98:0:8a::f301", + "include_in_country": true, + "active": false, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "sSoow0tFfqSrZIUhFRaGsTvwQsUTe33RA/9PLn93Cno=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-202", + "ipv4_addr_in": "69.4.234.149", + "ipv6_addr_in": "2607:fc98:0:8a::f401", + "include_in_country": true, + "active": false, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "mKD4untTerTbg+1pJh3FA9zjOAOtoTHqOJzIP0lnqH4=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-203", + "ipv4_addr_in": "69.4.234.131", + "ipv6_addr_in": "2607:fc98:0:8a::f501", + "include_in_country": true, + "active": false, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "2yVEeOFScneJRCVTrqCjKlKHg3J2wwOwkY28iy47J1Q=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-wg-204", + "ipv4_addr_in": "69.4.234.10", + "ipv6_addr_in": "2607:fc98:0:8a::f601", + "include_in_country": true, + "active": false, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "SE7HGeByhTo8Ak7FGsjvrYOUJTydQ2L8fWjo17IvhSw=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + }, + { + "hostname": "us-slc-br-101", + "ipv4_addr_in": "69.4.234.146", + "ipv6_addr_in": null, + "include_in_country": false, + "active": true, + "owned": false, + "provider": "100TB", + "weight": 100, + "endpoint_data": "bridge", + "location": { + "country": "USA", + "country_code": "us", + "city": "Salt Lake City, UT", + "city_code": "slc", + "latitude": 40.758701, + "longitude": -111.876183 + } + } + ] + }, + { + "name": "McAllen, TX", + "code": "txc", + "latitude": 26.203407, + "longitude": -98.230011, + "relays": [ + { + "hostname": "us-txc-wg-001", + "ipv4_addr_in": "79.127.222.194", + "ipv6_addr_in": "2a02:6ea0:fe00:1::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "+OCONjBoN5RytiPy000VOzhZsiu1tSzecmc1hl/q8hI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "McAllen, TX", + "city_code": "txc", + "latitude": 26.203407, + "longitude": -98.230011 + } + }, + { + "hostname": "us-txc-wg-002", + "ipv4_addr_in": "79.127.222.207", + "ipv6_addr_in": "2a02:6ea0:fe00:2::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "mjv8qVNwhVKO0ePAI97CRil188uwdR/VR6ihcNY/hio=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "McAllen, TX", + "city_code": "txc", + "latitude": 26.203407, + "longitude": -98.230011 + } + } + ] + }, + { + "name": "Secaucus, NJ", + "code": "uyk", + "latitude": 40.789543, + "longitude": -74.0565, + "relays": [ + { + "hostname": "us-uyk-wg-101", + "ipv4_addr_in": "209.54.101.130", + "ipv6_addr_in": "2607:fcd0:ccc0:1d02::b37f", + "include_in_country": true, + "active": false, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "25c8tyAhFiHXwp71beltk/KmAn0fsXGEl6nnNQQjmHI=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Secaucus, NJ", + "city_code": "uyk", + "latitude": 40.789543, + "longitude": -74.0565 + } + }, + { + "hostname": "us-uyk-wg-102", + "ipv4_addr_in": "104.223.118.34", + "ipv6_addr_in": "2607:fcd0:ccc0:1d03::b38f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "fD/JDsMLFxEZ7awcJJB9h0mjfRlcEvwF8e7arB2fHhU=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Secaucus, NJ", + "city_code": "uyk", + "latitude": 40.789543, + "longitude": -74.0565 + } + }, + { + "hostname": "us-uyk-wg-103", + "ipv4_addr_in": "173.205.85.34", + "ipv6_addr_in": "2607:fcd0:ccc0:1d05::c41f", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "Quadranet", + "weight": 70, + "endpoint_data": { + "wireguard": { + "public_key": "Tysz0Ii2m+DsyhcWoQWxsXUdJxu1lKln4F7ML+nWPXA=", + "daita": false + } + }, + "location": { + "country": "USA", + "country_code": "us", + "city": "Secaucus, NJ", + "city_code": "uyk", + "latitude": 40.789543, + "longitude": -74.0565 + } + } + ] + } + ] + }, + { + "name": "South Africa", + "code": "za", + "cities": [ + { + "name": "Johannesburg", + "code": "jnb", + "latitude": -26.195246, + "longitude": 28.034088, + "relays": [ + { + "hostname": "za-jnb-wg-001", + "ipv4_addr_in": "154.47.30.130", + "ipv6_addr_in": "2a02:6ea0:f206::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "5dOGXJ9JK/Bul0q57jsuvjNnc15gRpSO1rMbxkf4J2M=", + "daita": false + } + }, + "location": { + "country": "South Africa", + "country_code": "za", + "city": "Johannesburg", + "city_code": "jnb", + "latitude": -26.195246, + "longitude": 28.034088 + } + }, + { + "hostname": "za-jnb-wg-002", + "ipv4_addr_in": "154.47.30.143", + "ipv6_addr_in": "2a02:6ea0:f207::f001", + "include_in_country": true, + "active": true, + "owned": false, + "provider": "DataPacket", + "weight": 100, + "endpoint_data": { + "wireguard": { + "public_key": "lTq6+yUYfYsXwBpj/u3LnYqpLhW8ZJXQQ19N/ybP2B8=", + "daita": false + } + }, + "location": { + "country": "South Africa", + "country_code": "za", + "city": "Johannesburg", + "city_code": "jnb", + "latitude": -26.195246, + "longitude": 28.034088 + } + } + ] + } + ] + } + ], + "openvpn": { + "ports": [ + { + "port": 1194, + "protocol": "udp" + }, + { + "port": 1195, + "protocol": "udp" + }, + { + "port": 1196, + "protocol": "udp" + }, + { + "port": 1197, + "protocol": "udp" + }, + { + "port": 1300, + "protocol": "udp" + }, + { + "port": 1301, + "protocol": "udp" + }, + { + "port": 1302, + "protocol": "udp" + }, + { + "port": 443, + "protocol": "tcp" + }, + { + "port": 80, + "protocol": "tcp" + } + ] + }, + "bridge": { + "shadowsocks": [ + { + "port": 443, + "cipher": "aes-256-gcm", + "password": "mullvad", + "protocol": "tcp" + }, + { + "port": 1234, + "cipher": "aes-256-cfb", + "password": "mullvad", + "protocol": "udp" + }, + { + "port": 1236, + "cipher": "aes-256-gcm", + "password": "mullvad", + "protocol": "udp" + } + ] + }, + "wireguard": { + "port_ranges": [ + [ + 53, + 53 + ], + [ + 123, + 123 + ], + [ + 443, + 443 + ], + [ + 4000, + 33433 + ], + [ + 33565, + 51820 + ], + [ + 52001, + 60000 + ] + ], + "ipv4_gateway": "10.64.0.1", + "ipv6_gateway": "fc00:bbbb:bbbb:bb01::1", + "udp2tcp_ports": [] + } +} \ No newline at end of file