diff --git a/internal/models/server.go b/internal/models/server.go index 8749f01f..4f2273a3 100644 --- a/internal/models/server.go +++ b/internal/models/server.go @@ -39,7 +39,8 @@ var ( ErrVPNFieldEmpty = errors.New("vpn field is empty") ErrHostnameFieldEmpty = errors.New("hostname field is empty") ErrIPsFieldEmpty = errors.New("ips field is empty") - ErrNoNetworkProtocol = errors.New("both TCP and UDP fields are false") + ErrNoNetworkProtocol = errors.New("both TCP and UDP fields are false for OpenVPN") + ErrNetworkProtocolSet = errors.New("no network protocol should be set") ErrWireguardPublicKeyEmpty = errors.New("wireguard public key field is empty") ) @@ -51,7 +52,9 @@ func (s *Server) HasMinimumInformation() (err error) { return ErrHostnameFieldEmpty case len(s.IPs) == 0: return ErrIPsFieldEmpty - case !s.TCP && !s.UDP: + case s.VPN == vpn.Wireguard && (s.TCP || s.UDP): + return ErrNetworkProtocolSet + case s.VPN == vpn.OpenVPN && !s.TCP && !s.UDP: return ErrNoNetworkProtocol case s.VPN == vpn.Wireguard && s.WgPubKey == "": return ErrWireguardPublicKeyEmpty diff --git a/internal/provider/example/updater/servers.go b/internal/provider/example/updater/servers.go index 16560edf..11371cba 100644 --- a/internal/provider/example/updater/servers.go +++ b/internal/provider/example/updater/servers.go @@ -99,10 +99,10 @@ func (u *Updater) FetchServers(ctx context.Context, minServers int) ( Region: serverData.Region, City: serverData.City, WgPubKey: serverData.WgPubKey, - UDP: true, } if serverData.OpenVPNHostname != "" { server.VPN = vpn.OpenVPN + server.UDP = true server.TCP = true server.Hostname = serverData.OpenVPNHostname server.IPs = hostToIPs[serverData.OpenVPNHostname] diff --git a/internal/provider/ivpn/updater/servers.go b/internal/provider/ivpn/updater/servers.go index b368673d..9e35efdd 100644 --- a/internal/provider/ivpn/updater/servers.go +++ b/internal/provider/ivpn/updater/servers.go @@ -52,27 +52,26 @@ func (u *Updater) FetchServers(ctx context.Context, minServers int) ( servers = make([]models.Server, 0, len(hosts)) for _, serverData := range data.Servers { - vpnType := vpn.OpenVPN - hostname := serverData.Hostnames.OpenVPN - tcp := true - wgPubKey := "" - if hostname == "" { - vpnType = vpn.Wireguard - hostname = serverData.Hostnames.Wireguard - tcp = false - wgPubKey = serverData.WgPubKey - } - server := models.Server{ - VPN: vpnType, - Country: serverData.Country, - City: serverData.City, - ISP: serverData.ISP, - Hostname: hostname, - WgPubKey: wgPubKey, - TCP: tcp, - UDP: true, - IPs: hostToIPs[hostname], + Country: serverData.Country, + City: serverData.City, + ISP: serverData.ISP, + } + switch { + case serverData.Hostnames.OpenVPN != "": + server.Hostname = serverData.Hostnames.OpenVPN + server.VPN = vpn.OpenVPN + server.UDP = true + server.TCP = true + server.IPs = hostToIPs[server.Hostname] + case serverData.Hostnames.Wireguard != "": + server.Hostname = serverData.Hostnames.Wireguard + server.VPN = vpn.Wireguard + server.IPs = hostToIPs[server.Hostname] + server.WgPubKey = serverData.WgPubKey + default: + warning := fmt.Sprintf("server data %v has no OpenVPN nor Wireguard hostname", serverData) + warnings = append(warnings, warning) } servers = append(servers, server) } diff --git a/internal/provider/ivpn/updater/servers_test.go b/internal/provider/ivpn/updater/servers_test.go index a9da4634..946aa8c9 100644 --- a/internal/provider/ivpn/updater/servers_test.go +++ b/internal/provider/ivpn/updater/servers_test.go @@ -124,7 +124,7 @@ func Test_Updater_GetServers(t *testing.T) { IPs: []net.IP{{3, 3, 3, 3}, {4, 4, 4, 4}}}, {VPN: vpn.Wireguard, Country: "Country3", City: "City C", - Hostname: "hostc", UDP: true, + Hostname: "hostc", WgPubKey: "xyz", IPs: []net.IP{{5, 5, 5, 5}, {6, 6, 6, 6}}}, }, diff --git a/internal/provider/mullvad/updater/hosttoserver.go b/internal/provider/mullvad/updater/hosttoserver.go index 7c05f1c9..98aceb0f 100644 --- a/internal/provider/mullvad/updater/hosttoserver.go +++ b/internal/provider/mullvad/updater/hosttoserver.go @@ -40,7 +40,6 @@ func (hts hostToServer) add(data serverData) (err error) { server.TCP = true case "wireguard": server.VPN = vpn.Wireguard - server.UDP = true case "bridge": // ignore bridge servers return nil diff --git a/internal/provider/windscribe/updater/servers.go b/internal/provider/windscribe/updater/servers.go index e9d41171..7e1b05f3 100644 --- a/internal/provider/windscribe/updater/servers.go +++ b/internal/provider/windscribe/updater/servers.go @@ -56,7 +56,7 @@ func (u *Updater) FetchServers(ctx context.Context, minServers int) ( } server.VPN = vpn.Wireguard - server.UDP = true + server.UDP = false server.TCP = false server.OvpnX509 = "" server.WgPubKey = wgPubKey diff --git a/internal/storage/servers.json b/internal/storage/servers.json index eb02a06a..f5f49e4a 100644 --- a/internal/storage/servers.json +++ b/internal/storage/servers.json @@ -29438,7 +29438,7 @@ }, "ivpn": { "version": 3, - "timestamp": 1661432687, + "timestamp": 1661432934, "servers": [ { "vpn": "openvpn", @@ -29530,7 +29530,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca1.wg.ivpn.net", - "udp": true, "wgpubkey": "rg+GGDmjM4Vxo1hURvKmgm9yonb6qcoKbPCP/DNDBnI=", "ips": [ "37.120.130.58" @@ -29626,7 +29625,6 @@ "city": "Frankfurt", "isp": "Datapacket", "hostname": "de1.wg.ivpn.net", - "udp": true, "wgpubkey": "mS3/WpXjnMAMmXjSpd4nFzx9HSE3ubv2WyjpyH2REgs=", "ips": [ "185.102.219.26" @@ -29734,7 +29732,6 @@ "city": "Milan", "isp": "M247", "hostname": "it1.wg.ivpn.net", - "udp": true, "wgpubkey": "Aj6b81yrDk7I913R+fuSW/NAmIl87N73vHgY5/WQY0Q=", "ips": [ "82.102.21.90" @@ -29794,7 +29791,6 @@ "city": "Amsterdam", "isp": "Datapacket", "hostname": "nl1.wg.ivpn.net", - "udp": true, "wgpubkey": "AsMT2FqpkZbjzWeDch6GwufF5odl259W/hIkGytVfWo=", "ips": [ "185.102.218.104" @@ -29950,7 +29946,6 @@ "city": "Singapore", "isp": "M247", "hostname": "sg1.wg.ivpn.net", - "udp": true, "wgpubkey": "hSg0At4uwuIhmTy5UT4fRbi5AN6JO2ZWTuIvqd4nHCE=", "ips": [ "37.120.151.122" @@ -29998,7 +29993,6 @@ "city": "Stockholm", "isp": "M247", "hostname": "se1.wg.ivpn.net", - "udp": true, "wgpubkey": "2n0nFE1g/+vQr2AOQPm9Igyiy0zh9uTTultvOOSkMRo=", "ips": [ "37.120.153.226" @@ -30022,7 +30016,6 @@ "city": "Zurich", "isp": "Privatelayer", "hostname": "ch1.wg.ivpn.net", - "udp": true, "wgpubkey": "jVZJ61i1xxkAfriDHpwvF/GDuTvZUqhwoWSjkOJvaUA=", "ips": [ "141.255.164.66" @@ -30082,7 +30075,6 @@ "city": "London", "isp": "M247", "hostname": "gb1.wg.ivpn.net", - "udp": true, "wgpubkey": "7+jos+Eg+hMEOQE4Std6OJ+WVnCcmbqS1/EbPwn9w3s=", "ips": [ "81.92.202.114" @@ -30142,7 +30134,6 @@ "city": "Atlanta, GA", "isp": "Datapacket", "hostname": "us-ga1.wg.ivpn.net", - "udp": true, "wgpubkey": "jD8h+pL5/d6fmYcTzl0lR8AWzQVN5XkwRFSmM/3NcDM=", "ips": [ "185.93.0.212" @@ -30178,7 +30169,6 @@ "city": "Chicago, IL", "isp": "Datapacket", "hostname": "us-il1.wg.ivpn.net", - "udp": true, "wgpubkey": "hku9gjamhoii8OvxZgx+TdUDIkOAQYFu39qbav2AyUQ=", "ips": [ "89.187.181.116" @@ -30214,7 +30204,6 @@ "city": "Dallas, TX", "isp": "Quadranet", "hostname": "us-tx1.wg.ivpn.net", - "udp": true, "wgpubkey": "JPT1veXLmasj2uQDstX24mpR7VWD+GmV8JDkidkz91Q=", "ips": [ "198.55.124.114" @@ -30262,7 +30251,6 @@ "city": "Los Angeles, CA", "isp": "Datapacket", "hostname": "us-ca1.wg.ivpn.net", - "udp": true, "wgpubkey": "FGl78s9Ct6xNamQ2/CtAyXwGePrrU0kiZxfM27pm8XA=", "ips": [ "185.180.13.41" @@ -30346,7 +30334,6 @@ "city": "New York, NY", "isp": "M247", "hostname": "us-ny1.wg.ivpn.net", - "udp": true, "wgpubkey": "6/tjvgb7HFl7UuvBSegolxa1zKr3iSlDrlCexCmhAGE=", "ips": [ "91.132.137.170" @@ -30416,7 +30403,7 @@ }, "mullvad": { "version": 4, - "timestamp": 1661432687, + "timestamp": 1661432934, "servers": [ { "vpn": "openvpn", @@ -30515,7 +30502,6 @@ "city": "Melbourne", "isp": "Intergrid", "hostname": "au3-wireguard", - "udp": true, "wgpubkey": "5kKbUwLVpmctk6BS8mxl/zeY3DCtR1jesOlocYr6gzk=", "ips": [ "2407:a080:3000:12::a03f", @@ -30528,7 +30514,6 @@ "city": "Melbourne", "isp": "Intergrid", "hostname": "au4-wireguard", - "udp": true, "wgpubkey": "Ns2SmfonJCi0Ucb7vuSzWz36p+BZqNvIbGFPwFPTaSE=", "ips": [ "2407:a080:3000:11::a04f", @@ -30632,7 +30617,6 @@ "city": "Sydney", "isp": "Intergrid", "hostname": "au1-wireguard", - "udp": true, "wgpubkey": "kOpdNLq/ePrlc2wXGinRvbQWRhy755cZ4G4S7xwsKiw=", "ips": [ "2400:fa80:1:11::a01f", @@ -30645,7 +30629,6 @@ "city": "Sydney", "isp": "M247", "hostname": "au10-wireguard", - "udp": true, "wgpubkey": "pu22RCPeJCeiDIE7a1XtWvmv3BdgPp8ugF6AyntW8xU=", "ips": [ "2001:ac8:84:33::a10f", @@ -30658,7 +30641,6 @@ "city": "Sydney", "isp": "M247", "hostname": "au11-wireguard", - "udp": true, "wgpubkey": "lpNlTCVN/Oru86QtEblGpxKc6R6fEFVmKjm5clumZQQ=", "ips": [ "2001:ac8:84:34::a11f", @@ -30671,7 +30653,6 @@ "city": "Sydney", "isp": "M247", "hostname": "au12-wireguard", - "udp": true, "wgpubkey": "8EVsUWoy+kULNzuxI1pugiAhJ5ffPsfzL94p025rM3I=", "ips": [ "2001:ac8:84:35::a12f", @@ -30684,7 +30665,6 @@ "city": "Sydney", "isp": "M247", "hostname": "au13-wireguard", - "udp": true, "wgpubkey": "VNyHFgr0yhjg2+58Tx3sU2wUPcS9+k7GuIPr1htWkjw=", "ips": [ "2001:ac8:84:36::a13f", @@ -30697,7 +30677,6 @@ "city": "Sydney", "isp": "M247", "hostname": "au14-wireguard", - "udp": true, "wgpubkey": "a6oniBujlUXqOmv5Hst0v8xCqidy7O4JcN8Q6YRM5Hk=", "ips": [ "2001:ac8:84:37::a14f", @@ -30710,7 +30689,6 @@ "city": "Sydney", "isp": "Intergrid", "hostname": "au2-wireguard", - "udp": true, "wgpubkey": "EDMP63ki/c+LKkhmNiya4ujTxx83y2B2YjvDAIsuq0s=", "ips": [ "2400:fa80:1:31::a02f", @@ -30723,7 +30701,6 @@ "city": "Sydney", "isp": "M247", "hostname": "au8-wireguard", - "udp": true, "wgpubkey": "QhE7I5TnUuc3gLqSeF9KhOr0oew5v03bpj0EHrEOR2M=", "ips": [ "2001:ac8:84:31::a08f", @@ -30736,7 +30713,6 @@ "city": "Sydney", "isp": "M247", "hostname": "au9-wireguard", - "udp": true, "wgpubkey": "JrJ6lqsze0Y4lao8w+3P3PLOhzfo+g5PT8AWNkK6wSs=", "ips": [ "2001:ac8:84:32::a09f", @@ -30801,7 +30777,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at-vie-wg-001", - "udp": true, "wgpubkey": "TNrdH73p6h2EfeXxUiLOCOWHcjmjoslLxZptZpIPQXU=", "ips": [ "2001:ac8:29:84::a01f", @@ -30814,7 +30789,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at-vie-wg-002", - "udp": true, "wgpubkey": "ehXBc726YX1N6Dm7fDAVMG5cIaYAFqCA4Lbpl4VWcWE=", "ips": [ "2001:ac8:29:85::a02f", @@ -30827,7 +30801,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at-vie-wg-003", - "udp": true, "wgpubkey": "ddllelPu2ndjSX4lHhd/kdCStaSJOQixs9z551qN6B8=", "ips": [ "2001:ac8:29:86::a03f", @@ -30840,7 +30813,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at4-wireguard", - "udp": true, "wgpubkey": "hZpraeYrNU7Vl+UB2NSpXT2vBRM1fZ/a/gt4TTksP14=", "ips": [ "2001:ac8:29:59::a04f", @@ -30853,7 +30825,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at5-wireguard", - "udp": true, "wgpubkey": "jJVG/lv7RikDG0FMsV3WJgfot5XecPm9aHDrYvU+NAM=", "ips": [ "2001:ac8:29:58::a05f", @@ -30866,7 +30837,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at6-wireguard", - "udp": true, "wgpubkey": "l03RAG49wBmpdWKO6oywtdNO3Ksk8byIx9JCr3r8Mlo=", "ips": [ "2001:ac8:29:57::a06f", @@ -30879,7 +30849,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at7-wireguard", - "udp": true, "wgpubkey": "FnyzqDU4TJeFMO5g1AcGEzLGeVcPAcvdvnEXjPFw3Gg=", "ips": [ "2001:ac8:29:56::a07f", @@ -30892,7 +30861,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at8-wireguard", - "udp": true, "wgpubkey": "VxDx2tErPqmeDHGPfIhnsDg6nfJ5cnE6u4EfHx5MjBE=", "ips": [ "2001:ac8:29:55::a08f", @@ -30905,7 +30873,6 @@ "city": "Vienna", "isp": "M247", "hostname": "at9-wireguard", - "udp": true, "wgpubkey": "f4t0xU1DsADjvHsAeB0pJAOdq+FkYZ5IhHvWom+/dGI=", "ips": [ "2001:ac8:29:54::a09f", @@ -30983,7 +30950,6 @@ "city": "Brussels", "isp": "M247", "hostname": "be1-wireguard", - "udp": true, "wgpubkey": "wkEqQQKK3dJDttRanJWONU/5xuxRDR4cLfvnPJKtijE=", "ips": [ "2001:ac8:27:20::a01f", @@ -30996,7 +30962,6 @@ "city": "Brussels", "isp": "M247", "hostname": "be2-wireguard", - "udp": true, "wgpubkey": "6Esqc4ElaNIde9OODzKBd1/rgsNqjwnLAJ6wp571vTQ=", "ips": [ "5.253.205.162", @@ -31009,7 +30974,6 @@ "city": "Brussels", "isp": "M247", "hostname": "be3-wireguard", - "udp": true, "wgpubkey": "pW/VljNbNWBg42/heyYGHeiKGVuzDhMw59eiSUQfnjo=", "ips": [ "2001:ac8:27:56::a03f", @@ -31022,7 +30986,6 @@ "city": "Brussels", "isp": "M247", "hostname": "be4-wireguard", - "udp": true, "wgpubkey": "zotbXj8reba/gId9QDZ9Az8RsGLyAskCHVVM3HYhGQw=", "ips": [ "2001:ac8:27:57::a04f", @@ -31048,7 +31011,6 @@ "city": "Sao Paulo", "isp": "DataPacket", "hostname": "br-sao-wg-201", - "udp": true, "wgpubkey": "8c9M6w1BQbgMVr/Zgrj4GwSdU6q3qfQfWs17kMLC9y4=", "ips": [ "2a02:6ea0:d00e:1::a01f", @@ -31061,7 +31023,6 @@ "city": "Sao Paulo", "isp": "DataPacket", "hostname": "br-sao-wg-202", - "udp": true, "wgpubkey": "jWURoz8SLBUlRTQnAFTA/LDZUTpvlO0ghiVWH7MgaHQ=", "ips": [ "2a02:6ea0:d00e:2::a02f", @@ -31074,7 +31035,6 @@ "city": "Sao Paulo", "isp": "Qnax", "hostname": "br1-wireguard", - "udp": true, "wgpubkey": "2eYsuY/H7kpeam31OG+eQ7s43BeuyzoVgqwdeGXMd3A=", "ips": [ "2804:5364:3100:9::a01f", @@ -31113,7 +31073,6 @@ "city": "Sofia", "isp": "M247", "hostname": "bg4-wireguard", - "udp": true, "wgpubkey": "6TNimNeecei/wqpJak2Z8hdD25vg5oF/In9q3l4QQk4=", "ips": [ "2001:ac8:30:28::a04f", @@ -31126,7 +31085,6 @@ "city": "Sofia", "isp": "M247", "hostname": "bg5-wireguard", - "udp": true, "wgpubkey": "yXn7ziIFrHRgoZlhWRkxoGFb3maolOxOn6sh+OPLdT8=", "ips": [ "2001:ac8:30:29::a05f", @@ -31139,7 +31097,6 @@ "city": "Sofia", "isp": "M247", "hostname": "bg6-wireguard", - "udp": true, "wgpubkey": "lCGzNzh+hxEOyXQFvNo8FZwZcCD3dLgZvAo6XhnmUmk=", "ips": [ "2001:ac8:30:30::a06f", @@ -31152,7 +31109,6 @@ "city": "Sofia", "isp": "M247", "hostname": "bg7-wireguard", - "udp": true, "wgpubkey": "U2b1yPEcO/vlQrlpNTsgQJoYQ7oaxtW4OJQx6Cod9yo=", "ips": [ "2001:ac8:30:31::a07f", @@ -31269,7 +31225,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca10-wireguard", - "udp": true, "wgpubkey": "dm6IAQ49WmZeLZswJbW8jPbfeQBhfntRs0qchWo7Dyc=", "ips": [ "2a0d:5600:9:bb::a10f", @@ -31282,7 +31237,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca11-wireguard", - "udp": true, "wgpubkey": "hWlbtTvF2lXHx7VYlKguVqC1TAvxU8F/NXW3jcFxBG8=", "ips": [ "2a0d:5600:9:bc::a11f", @@ -31295,7 +31249,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca12-wireguard", - "udp": true, "wgpubkey": "Dn8j7lbdBg8vDJcKFPT/JymWdTwVupQCdm0HtF8YikY=", "ips": [ "2a0d:5600:9:bd::a12f", @@ -31308,7 +31261,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca13-wireguard", - "udp": true, "wgpubkey": "6JseWScYkcFM5ibBZWGp7DbZQgZ1jQ14mrnXbvnKGnc=", "ips": [ "2a0d:5600:9:be::a13f", @@ -31321,7 +31273,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca14-wireguard", - "udp": true, "wgpubkey": "hAFhjCWuSgvIlnBplm4J3iQK4GNW1PSxY0WmoiQP63M=", "ips": [ "2a0d:5600:9:bf::a14f", @@ -31334,7 +31285,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca15-wireguard", - "udp": true, "wgpubkey": "dn27fhdet9sxRl3biHeCBvA5edZMC03bh0zZIj3DJzI=", "ips": [ "2a0d:5600:9:c0::a15f", @@ -31347,7 +31297,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca16-wireguard", - "udp": true, "wgpubkey": "eHHmvUwqIR2EQKxUM1i2HtiaNryOwGTjVP6K//HjRiY=", "ips": [ "2a0d:5600:9:c1::a16f", @@ -31360,7 +31309,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca17-wireguard", - "udp": true, "wgpubkey": "uWQn+YxJzgfChFium04RpovvN5KyoSZmnL9lnCHD9gc=", "ips": [ "2a0d:5600:9:c2::a17f", @@ -31373,7 +31321,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca18-wireguard", - "udp": true, "wgpubkey": "odeJmnpP19GxfiaAhZEqg9OkG4dgp5YxVVJL34ld1QI=", "ips": [ "37.120.205.98", @@ -31386,7 +31333,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca19-wireguard", - "udp": true, "wgpubkey": "5BBUQJ+/BDvI4G8ybxvJihMCkJN9B54Lrm2JYK5JzmY=", "ips": [ "37.120.205.194", @@ -31399,7 +31345,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca20-wireguard", - "udp": true, "wgpubkey": "9yGUwYAwZ38uo1dNos9AVkRApE/2gloiS3cd/MhJmwg=", "ips": [ "37.120.205.210", @@ -31412,7 +31357,6 @@ "city": "Montreal", "isp": "M247", "hostname": "ca21-wireguard", - "udp": true, "wgpubkey": "ywlUvPueZiLIKXTMT2/UslgGv8yU7cUuKdQOpWi4xiI=", "ips": [ "2a0d:5600:9:ca::a21f", @@ -31490,7 +31434,6 @@ "city": "Toronto", "isp": "Tzulo", "hostname": "ca22-wireguard", - "udp": true, "wgpubkey": "9PfLtMmfLsdNuh3Rj3eBDMId2bXZ7+yWJO78CZfuLzU=", "ips": [ "2607:9000:6000:15::a22f", @@ -31503,7 +31446,6 @@ "city": "Toronto", "isp": "Tzulo", "hostname": "ca23-wireguard", - "udp": true, "wgpubkey": "iGwKJTbm/aL4kJXwcJkO0JYPEEGGDcYBrRTG7CHIQx0=", "ips": [ "2607:9000:6000:16::a23f", @@ -31516,7 +31458,6 @@ "city": "Toronto", "isp": "Tzulo", "hostname": "ca24-wireguard", - "udp": true, "wgpubkey": "MbusadbeACMR5bv+PPjhldb5CgwjlCbthnTJNrOJnhI=", "ips": [ "2607:9000:6000:17::a24f", @@ -31529,7 +31470,6 @@ "city": "Toronto", "isp": "Tzulo", "hostname": "ca25-wireguard", - "udp": true, "wgpubkey": "y9JT2B69QiWkbEAiXGq5yhtAvg8YNXNkjhHcUiBCiko=", "ips": [ "2607:9000:6000:18::a25f", @@ -31542,7 +31482,6 @@ "city": "Toronto", "isp": "Tzulo", "hostname": "ca26-wireguard", - "udp": true, "wgpubkey": "XE+hufytSkX14TjskwmYL4HL4mbPf+Vd5Jfgwf/5JHc=", "ips": [ "2607:9000:6000:19::a26f", @@ -31555,7 +31494,6 @@ "city": "Toronto", "isp": "Tzulo", "hostname": "ca27-wireguard", - "udp": true, "wgpubkey": "ptnLZbreIzTZrSyPD0XhOAAmN194hcPSG5TI5TTiL08=", "ips": [ "2607:9000:6000:20::a27f", @@ -31568,7 +31506,6 @@ "city": "Toronto", "isp": "DataPacket", "hostname": "ca28-wireguard", - "udp": true, "wgpubkey": "/ukKnQanjsX5MHbbhe7dJYIrSdPyP5UY7DMGStAznwk=", "ips": [ "2a02:6ea0:de08:1::a28f", @@ -31581,7 +31518,6 @@ "city": "Toronto", "isp": "DataPacket", "hostname": "ca29-wireguard", - "udp": true, "wgpubkey": "JrDXNOO4YQoWvZK2UbpkmxQqvV36Wp/ehlSxCaZlixw=", "ips": [ "2a02:6ea0:de08:2::a29f", @@ -31620,7 +31556,6 @@ "city": "Vancouver", "isp": "Esecuredata", "hostname": "ca7-wireguard", - "udp": true, "wgpubkey": "uPz+Jh+cXpTmNOmCvBJOFWzzygtCcnkAZ0jyFQF9pFQ=", "ips": [ "2605:80:19:4::a07f", @@ -31698,7 +31633,6 @@ "city": "Prague", "isp": "M247", "hostname": "cz-prg-wg-101", - "udp": true, "wgpubkey": "wLBxTaISMJ++vUht4hlAOUog9fhZxDql16TaYWaboDc=", "ips": [ "2001:ac8:33:c::a01f", @@ -31711,7 +31645,6 @@ "city": "Prague", "isp": "M247", "hostname": "cz-prg-wg-102", - "udp": true, "wgpubkey": "cRCJ0vULwKRbTfzuo9W+fIt0fJGQE7DLvojIiURIpiI=", "ips": [ "2001:ac8:33:d::a02f", @@ -31724,7 +31657,6 @@ "city": "Prague", "isp": "M247", "hostname": "cz1-wireguard", - "udp": true, "wgpubkey": "rzjQv6s02Mshlo/dBe/KrDBQ178zbQ0foVA1DFbT3A0=", "ips": [ "2001:ac8:33:a::a01f", @@ -31737,7 +31669,6 @@ "city": "Prague", "isp": "M247", "hostname": "cz2-wireguard", - "udp": true, "wgpubkey": "mE0F3QmdNc44IWWdVZxOF0iMCZDeY/I25qtcsaQ1D3c=", "ips": [ "2001:ac8:33:1a::a02f", @@ -31750,7 +31681,6 @@ "city": "Prague", "isp": "M247", "hostname": "cz3-wireguard", - "udp": true, "wgpubkey": "24BMtS3Wm/TgGUkRDqyGuZHIeCZDn1eY6tesPYWDYns=", "ips": [ "2001:ac8:33:23::a03f", @@ -31763,7 +31693,6 @@ "city": "Prague", "isp": "M247", "hostname": "cz4-wireguard", - "udp": true, "wgpubkey": "HLoMhpEgHr3NapOh4gQv/3txQX+EfyqWWrtY2qAB9iE=", "ips": [ "2001:ac8:33:41::a04f", @@ -31776,7 +31705,6 @@ "city": "Prague", "isp": "M247", "hostname": "cz5-wireguard", - "udp": true, "wgpubkey": "uZTF1+bM/EiXMBbvvZ7qGMtC7PMmHez1XHOomYSQbCs=", "ips": [ "2001:ac8:33:42::a05f", @@ -31857,7 +31785,6 @@ "isp": "31173", "owned": true, "hostname": "dk2-wireguard", - "udp": true, "wgpubkey": "egl+0TkpFU39F5O6r6+hIBMPQLOa8/t5CymOZV6CC3Y=", "ips": [ "2a03:1b20:8:f011::a02f", @@ -31871,7 +31798,6 @@ "isp": "31173", "owned": true, "hostname": "dk3-wireguard", - "udp": true, "wgpubkey": "R5LUBgM/1UjeAR4lt+L/yA30Gee6/VqVZ9eAB3ZTajs=", "ips": [ "2a03:1b20:8:f011::a03f", @@ -31884,7 +31810,6 @@ "city": "Copenhagen", "isp": "M247", "hostname": "dk5-wireguard", - "udp": true, "wgpubkey": "7eykWQ65FV7saXDJiZazA5htM0Fr/01FrUa5Mgyg4j0=", "ips": [ "2001:ac8:37:5d::a05f", @@ -31897,7 +31822,6 @@ "city": "Copenhagen", "isp": "M247", "hostname": "dk6-wireguard", - "udp": true, "wgpubkey": "jlhgiPDCNxhrfMUEAEXxU8AyJU+oZ+4TCYrt7o5VsFs=", "ips": [ "2001:ac8:37:5e::a06f", @@ -31910,7 +31834,6 @@ "city": "Copenhagen", "isp": "M247", "hostname": "dk7-wireguard", - "udp": true, "wgpubkey": "E3XgsLAaDdRhYl5tPbBIO87bdTYQmpF72nqIhFBk3g8=", "ips": [ "2001:ac8:37:5f::a07f", @@ -31923,7 +31846,6 @@ "city": "Copenhagen", "isp": "Asergo", "hostname": "dk8-wireguard", - "udp": true, "wgpubkey": "H7tZk6jMQps9WHn8opffvYmt6XN3v1614EGpsMZoA3w=", "ips": [ "2a00:9080:1:98c::1f", @@ -31936,7 +31858,6 @@ "city": "Tallinn", "isp": "xtom", "hostname": "ee-tll-wg-001", - "udp": true, "wgpubkey": "bdq37KtfoG1Tm7yQcfitdRyGeZOn/c7PwLN+LgG/6nA=", "ips": [ "2a07:d880:2::a01f", @@ -31949,7 +31870,6 @@ "city": "Tallinn", "isp": "xtom", "hostname": "ee-tll-wg-002", - "udp": true, "wgpubkey": "vqGmmcERr/PAKDzy6Dxax8g4150rC93kmKYabZuAzws=", "ips": [ "2a07:d880:2::a02f", @@ -31962,7 +31882,6 @@ "city": "Tallinn", "isp": "xtom", "hostname": "ee-tll-wg-003", - "udp": true, "wgpubkey": "+8dUgpD7YA4wMPnRQkO7EI7AeYd30QPMKh/hOaaGIXY=", "ips": [ "2a07:d880:2::a03f", @@ -32074,7 +31993,6 @@ "isp": "Creanova", "owned": true, "hostname": "fi1-wireguard", - "udp": true, "wgpubkey": "rGL76wTvmRKI2f8VHdGEZnTQbwRG4+RTO1sokGouVGU=", "ips": [ "2a0c:f040:0:2790::a01f", @@ -32088,7 +32006,6 @@ "isp": "Creanova", "owned": true, "hostname": "fi2-wireguard", - "udp": true, "wgpubkey": "PbgdQd49ejV2cbyEvbufUNLGczh0cq2P5E77qbm8M3A=", "ips": [ "2a0c:f040:0:2790::a02f", @@ -32102,7 +32019,6 @@ "isp": "Creanova", "owned": true, "hostname": "fi3-wireguard", - "udp": true, "wgpubkey": "CYFNNfntzhRHn0+QHWv2eBOeU/sCZ5f6FLbTMUyIQHk=", "ips": [ "2a0c:f040:0:2790::a03f", @@ -32115,7 +32031,6 @@ "city": "Marseille", "isp": "DataPacket", "hostname": "fr15-wireguard", - "udp": true, "wgpubkey": "fOrw0hU1D3Wc2A7AsLVdozlDlxwYOHZo6ZJ9OiNmGxU=", "ips": [ "2a02:6ea0:dc05::a15f", @@ -32128,7 +32043,6 @@ "city": "Marseille", "isp": "DataPacket", "hostname": "fr16-wireguard", - "udp": true, "wgpubkey": "fzwXRcbEE7+zZkDcWaR3fpx84+S1cWYzdiSE/1z4V3Q=", "ips": [ "2a02:6ea0:dc06::a16f", @@ -32236,7 +32150,6 @@ "city": "Paris", "isp": "M247", "hostname": "fr10-wireguard", - "udp": true, "wgpubkey": "5O4SgkYRFsGMB2KzlV/ukyVxko+GglmX9TeXX7WajQQ=", "ips": [ "2001:ac8:25:d3::a10f", @@ -32249,7 +32162,6 @@ "city": "Paris", "isp": "M247", "hostname": "fr11-wireguard", - "udp": true, "wgpubkey": "YKHo5jAYWOzvAFzc+9XAjn7rEWqY75MA3fPJmk7D7jU=", "ips": [ "2001:ac8:25:d4::a11f", @@ -32262,7 +32174,6 @@ "city": "Paris", "isp": "M247", "hostname": "fr12-wireguard", - "udp": true, "wgpubkey": "j/1ylCahjyHLiynsaPKykQw8mE5F0M6lQMZfgicJpm8=", "ips": [ "2001:ac8:25:d5::a12f", @@ -32275,7 +32186,6 @@ "city": "Paris", "isp": "M247", "hostname": "fr13-wireguard", - "udp": true, "wgpubkey": "YdJ9oVr5sCvE1kQhMm2d67XFjaQn15AofDgLRJPtlwo=", "ips": [ "2001:ac8:25:d6::a13f", @@ -32288,7 +32198,6 @@ "city": "Paris", "isp": "M247", "hostname": "fr14-wireguard", - "udp": true, "wgpubkey": "2N0hu5kBMUCTBtEp81yMdfFTDpNvklQP3qaq3tuRaXk=", "ips": [ "2001:ac8:25:d7::a14f", @@ -32302,7 +32211,6 @@ "isp": "31173", "owned": true, "hostname": "fr4-wireguard", - "udp": true, "wgpubkey": "ov323GyDOEHLT0sNRUUPYiE3BkvFDjpmi1a4fzv49hE=", "ips": [ "2a03:1b20:9:f011::a01f", @@ -32316,7 +32224,6 @@ "isp": "31173", "owned": true, "hostname": "fr5-wireguard", - "udp": true, "wgpubkey": "R5Ve+PJD24QjNXi2Dim7szwCiOLnv+6hg+WyTudAYmE=", "ips": [ "2a03:1b20:9:f011::a02f", @@ -32330,7 +32237,6 @@ "isp": "31173", "owned": true, "hostname": "fr6-wireguard", - "udp": true, "wgpubkey": "w4r/o6VImF7l0/De3JpOGnpzjAFv9wcCu8Rop5eZkWc=", "ips": [ "2a03:1b20:9:f011::a03f", @@ -32344,7 +32250,6 @@ "isp": "31173", "owned": true, "hostname": "fr7-wireguard", - "udp": true, "wgpubkey": "E/KjR7nlFouuRXh1pwGDr7iK2TAZ6c4K0LjjmA1A2Tc=", "ips": [ "2a03:1b20:9:f011::a04f", @@ -32358,7 +32263,6 @@ "isp": "31173", "owned": true, "hostname": "fr8-wireguard", - "udp": true, "wgpubkey": "cmqtSjWUa4/0bENQDKxdr0vQqf4nFVDodarHm0Pc0hY=", "ips": [ "2a03:1b20:9:f011::a05f", @@ -32371,7 +32275,6 @@ "city": "Dusseldorf", "isp": "xtom", "hostname": "de-dus-wg-001", - "udp": true, "wgpubkey": "ku1NYeOAGbY65YL/JKZhrqVzDJKXQiVj9USXbfkOBA0=", "ips": [ "2a03:d9c0:3000::a20f", @@ -32384,7 +32287,6 @@ "city": "Dusseldorf", "isp": "xtom", "hostname": "de-dus-wg-002", - "udp": true, "wgpubkey": "TPAIPTgu9jIitgX1Bz5xMCZJ9pRRZTdtZEOIxArO0Hc=", "ips": [ "2a03:d9c0:3000::a21f", @@ -32397,7 +32299,6 @@ "city": "Dusseldorf", "isp": "xtom", "hostname": "de-dus-wg-003", - "udp": true, "wgpubkey": "XgSe9UwEV4JJNPPzFFOVYS6scMTL4DeNlwqBl32lDw0=", "ips": [ "2a03:d9c0:3000::a22f", @@ -32587,7 +32488,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de-fra-wg-101", - "udp": true, "wgpubkey": "Voioje9Gfb7aTiK2/H6VyHFK1AFap1glIX0Z1EX2mRQ=", "ips": [ "2001:ac8:20:274::a99f", @@ -32600,7 +32500,6 @@ "city": "Frankfurt", "isp": "xtom", "hostname": "de-fra-wg-301", - "udp": true, "wgpubkey": "dNKRyh2MkJGZdg9jyUJtf9w5GHjX3+/fYatg+xi9TUM=", "ips": [ "2a07:fe00:1::a23f", @@ -32613,7 +32512,6 @@ "city": "Frankfurt", "isp": "xtom", "hostname": "de-fra-wg-302", - "udp": true, "wgpubkey": "A3DbIgPycEJhJ1fQ4zzcajLOKTZsJMeawjdPQiWav20=", "ips": [ "2a07:fe00:1::a24f", @@ -32626,7 +32524,6 @@ "city": "Frankfurt", "isp": "xtom", "hostname": "de-fra-wg-303", - "udp": true, "wgpubkey": "2P+9SjwVCEnMDnBiYfZtQLq9p2S2TFhCM0xJBoevYk4=", "ips": [ "2a07:fe00:1::a25f", @@ -32639,7 +32536,6 @@ "city": "Frankfurt", "isp": "xtom", "hostname": "de-fra-wg-304", - "udp": true, "wgpubkey": "VgNcwWy8MRhfEZY+XSisDM1ykX+uXlHQScOLqqGMLkc=", "ips": [ "2a07:fe00:1::a26f", @@ -32653,7 +32549,6 @@ "isp": "31173", "owned": true, "hostname": "de10-wireguard", - "udp": true, "wgpubkey": "+30LcSQzgNtB01wyCyh4YPjItVyBFX5TP6Fs47AJSnA=", "ips": [ "2a03:1b20:6:f011::a10f", @@ -32667,7 +32562,6 @@ "isp": "31173", "owned": true, "hostname": "de11-wireguard", - "udp": true, "wgpubkey": "uC0C1H4zE6WoDjOq65DByv1dSZt2wAv6gXQ5nYOLiQM=", "ips": [ "2a03:1b20:6:f011::a11f", @@ -32680,7 +32574,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de12-wireguard", - "udp": true, "wgpubkey": "Ec/wwcosVal9Kjc97ZuTTV7Dy5c0/W5iLet7jrSEm2k=", "ips": [ "2001:ac8:20:305::a12f", @@ -32693,7 +32586,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de13-wireguard", - "udp": true, "wgpubkey": "gB+j+wTsZ8dZq2TbUQovV6zwmM9O2SMneGQR6NHxOQQ=", "ips": [ "2001:ac8:20:306::a13f", @@ -32706,7 +32598,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de14-wireguard", - "udp": true, "wgpubkey": "vtqDtifokiHna0eBshGdJLedj/lzGW+iDvWKx+YjDFs=", "ips": [ "2001:ac8:20:307::a14f", @@ -32719,7 +32610,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de15-wireguard", - "udp": true, "wgpubkey": "7YN0g5B6gTRAcgb+78RpfGTw1UaNJprciQTSO/tKjyE=", "ips": [ "2001:ac8:20:308::a15f", @@ -32732,7 +32622,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de16-wireguard", - "udp": true, "wgpubkey": "3bEHVNah9L8nvWZmk7suzNvSQBPTC4EgO7umldY34Ac=", "ips": [ "2001:ac8:20:308::a16f", @@ -32745,7 +32634,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de17-wireguard", - "udp": true, "wgpubkey": "Fp3bDkNLmmTajbN3cSVM9zi0OeSuOZySMGypk7HOO3E=", "ips": [ "2001:ac8:20:309::a17f", @@ -32758,7 +32646,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de30-wireguard", - "udp": true, "wgpubkey": "XW54UEhVows7GnY4p+GlvcJMPBUCD7q/JNMmKLu/DVk=", "ips": [ "2001:ac8:20:275::a30f", @@ -32771,7 +32658,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de31-wireguard", - "udp": true, "wgpubkey": "JbiSKQ5j0B6ap9Uyv2JubCI7X8sy2HGuvQh60wZ8mXw=", "ips": [ "2001:ac8:20:276::a31f", @@ -32784,7 +32670,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de32-wireguard", - "udp": true, "wgpubkey": "uKTC5oP/zfn6SSjayiXDDR9L82X0tGYJd5LVn5kzyCc=", "ips": [ "2001:ac8:20:277::a32f", @@ -32797,7 +32682,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de33-wireguard", - "udp": true, "wgpubkey": "Sttn2cr14dvIcCrE8qdlRGHXriqvTyvQWC7dzujH/iM=", "ips": [ "2001:ac8:20:269::a33f", @@ -32810,7 +32694,6 @@ "city": "Frankfurt", "isp": "M247", "hostname": "de34-wireguard", - "udp": true, "wgpubkey": "9ldhvN7r4xGZkGehbsNfYb5tpyTJ5KBb5B3TbxCwklw=", "ips": [ "2001:ac8:20:270::a34f", @@ -32823,7 +32706,6 @@ "city": "Frankfurt", "isp": "DataPacket", "hostname": "de35-wireguard", - "udp": true, "wgpubkey": "5IKgD53jf94S5XagqkqOo9VWTrDe7iOBGtKj2/EAqFo=", "ips": [ "2a02:6ea0:c762:1::a35f", @@ -32836,7 +32718,6 @@ "city": "Frankfurt", "isp": "DataPacket", "hostname": "de36-wireguard", - "udp": true, "wgpubkey": "DIr7Q97daEFRsGaQNmmDqd4Ef4Zt7DSLoj/r0YspIVo=", "ips": [ "2a02:6ea0:c762:2::a36f", @@ -32849,7 +32730,6 @@ "city": "Frankfurt", "isp": "DataPacket", "hostname": "de37-wireguard", - "udp": true, "wgpubkey": "6sUHBVNdpFzz6qHLF0fISsvtwiG0RZQVVgVC5CEYslg=", "ips": [ "2a02:6ea0:c762:3::a37f", @@ -32863,7 +32743,6 @@ "isp": "31173", "owned": true, "hostname": "de4-wireguard", - "udp": true, "wgpubkey": "XTdlx3YmLb1vg1NsruXYmfzP6FZKmZR90Vr3u9kJ7S0=", "ips": [ "2a03:1b20:6:f011::a01f", @@ -32877,7 +32756,6 @@ "isp": "31173", "owned": true, "hostname": "de5-wireguard", - "udp": true, "wgpubkey": "bRcOjl6Yc+2x0dHCO6eSGoo9Y9euv9DljDJEYoLA0ks=", "ips": [ "2a03:1b20:6:f011::a02f", @@ -32891,7 +32769,6 @@ "isp": "31173", "owned": true, "hostname": "de7-wireguard", - "udp": true, "wgpubkey": "+0BEfUZ3D0DEM/fJVPUUhYYDdkkLjqedVerm8dV4bmE=", "ips": [ "2a03:1b20:6:f011::a07f", @@ -32905,7 +32782,6 @@ "isp": "31173", "owned": true, "hostname": "de8-wireguard", - "udp": true, "wgpubkey": "XIge3HgGEHf52e4Jpzk8iFOrrp6q7trq0udhufFlDVo=", "ips": [ "2a03:1b20:6:f011::a08f", @@ -33009,7 +32885,6 @@ "city": "Hong Kong", "isp": "xtom", "hostname": "hk-hkg-wg-201", - "udp": true, "wgpubkey": "Oxh13dmwY6nNUa5rVHr7sLiFOj0fjzsaAUAUV87/nGs=", "ips": [ "2403:2c81:1000::a06f", @@ -33022,7 +32897,6 @@ "city": "Hong Kong", "isp": "Leaseweb", "hostname": "hk1-wireguard", - "udp": true, "wgpubkey": "n0e99a2tJAC12VqONOeB59LHThtWk2ScVa8R8knSDWw=", "ips": [ "2001:df1:801:a009:10::a01f", @@ -33035,7 +32909,6 @@ "city": "Hong Kong", "isp": "M247", "hostname": "hk2-wireguard", - "udp": true, "wgpubkey": "+jkRog35SuMpU3f8KFXDNoZGxhr5Zf90e6bzqSlNLWU=", "ips": [ "2001:ac8:92:3::a02f", @@ -33048,7 +32921,6 @@ "city": "Hong Kong", "isp": "M247", "hostname": "hk3-wireguard", - "udp": true, "wgpubkey": "iltPGr2j21mAlBGQ0NYGmrmOwyxZGL7rakSDn9qcLgA=", "ips": [ "2001:ac8:92:4::a03f", @@ -33061,7 +32933,6 @@ "city": "Hong Kong", "isp": "M247", "hostname": "hk4-wireguard", - "udp": true, "wgpubkey": "NpthstUXmLmwkfbKvl8XvpCtKm4yfRk55D07s223UX0=", "ips": [ "2001:ac8:92:5::a04f", @@ -33100,7 +32971,6 @@ "city": "Budapest", "isp": "M247", "hostname": "hu3-wireguard", - "udp": true, "wgpubkey": "gHcjEh2XuoCPiExm8ScXdz6pzduZPp6zRyam6NE6VRQ=", "ips": [ "2001:ac8:26:ad::a03f", @@ -33113,7 +32983,6 @@ "city": "Budapest", "isp": "M247", "hostname": "hu4-wireguard", - "udp": true, "wgpubkey": "VLosXjrnpppwX5yjqW6WaFOYEY76hWQrDPlfe/0dzyY=", "ips": [ "2001:ac8:26:ae::a04f", @@ -33126,7 +32995,6 @@ "city": "Budapest", "isp": "M247", "hostname": "hu5-wireguard", - "udp": true, "wgpubkey": "mZM32UGNrhVXeQrTPCMqjh3jMyH5HvHbk8vwieTWpzM=", "ips": [ "2001:ac8:26:af::a05f", @@ -33165,7 +33033,6 @@ "city": "Dublin", "isp": "M247", "hostname": "ie1-wireguard", - "udp": true, "wgpubkey": "202IWDDdX4GK94YtFlB/DEOPxe6BLpiwFYAviWHiKj8=", "ips": [ "2001:ac8:88:5d::a01f", @@ -33178,7 +33045,6 @@ "city": "Dublin", "isp": "M247", "hostname": "ie2-wireguard", - "udp": true, "wgpubkey": "DOunbHw/O5gnTNo1Ov/6rknpvJck9BlQ1zTMHE4JA38=", "ips": [ "2001:ac8:88:5e::a02f", @@ -33204,7 +33070,6 @@ "city": "Tel Aviv", "isp": "DataPacket", "hostname": "il-tlv-wg-101", - "udp": true, "wgpubkey": "2XRonegFgLsboVKocjGnQmFEFsr/YcXnCATNwQstOjA=", "ips": [ "2a02:6ea0:3b00:1::a01f", @@ -33217,7 +33082,6 @@ "city": "Tel Aviv", "isp": "DataPacket", "hostname": "il-tlv-wg-102", - "udp": true, "wgpubkey": "CGTb8OSv5h//o9p3IgDbcUbNIjRaslY+s1uAnbip6BA=", "ips": [ "2a02:6ea0:3b00:2::a02f", @@ -33230,7 +33094,6 @@ "city": "Tel Aviv", "isp": "DataPacket", "hostname": "il-tlv-wg-103", - "udp": true, "wgpubkey": "jBfdlryKshPldinoVWOQ7K1Y7xuvVdF9W50B6o4QXR8=", "ips": [ "2a02:6ea0:3b00:3::a03f", @@ -33295,7 +33158,6 @@ "city": "Milan", "isp": "DataPacket", "hostname": "it10-wireguard", - "udp": true, "wgpubkey": "aBj4bBGwll8lmqQKaeWBwL1KXiChRLXUWXscyWvI9GM=", "ips": [ "2a02:6ea0:d509:2::a10f", @@ -33308,7 +33170,6 @@ "city": "Milan", "isp": "DataPacket", "hostname": "it11-wireguard", - "udp": true, "wgpubkey": "lSgzPzjTnUgsIcu+iJYfZgeR2n2VjVuj7imwT5qYJhA=", "ips": [ "2a02:6ea0:d509:3::a11f", @@ -33321,7 +33182,6 @@ "city": "Milan", "isp": "M247", "hostname": "it4-wireguard", - "udp": true, "wgpubkey": "CJMsEa5/skjmYPc+lvHnmLD1dpSFoRmv/FE815oBbRE=", "ips": [ "2001:ac8:24:7a::a04f", @@ -33334,7 +33194,6 @@ "city": "Milan", "isp": "M247", "hostname": "it5-wireguard", - "udp": true, "wgpubkey": "FetdLS9yyn5FQYWpJQUUdxs17Abjp5AotivoxUiOVHk=", "ips": [ "2001:ac8:24:7b::a05f", @@ -33347,7 +33206,6 @@ "city": "Milan", "isp": "M247", "hostname": "it6-wireguard", - "udp": true, "wgpubkey": "6c25503CIsKKZ5BwFvSnid6dcCKTh5/ftmz4MvGnXzQ=", "ips": [ "2001:ac8:24:7c::a06f", @@ -33360,7 +33218,6 @@ "city": "Milan", "isp": "M247", "hostname": "it7-wireguard", - "udp": true, "wgpubkey": "F4Scn2i1IIHTsWsCfXesNb2XYyrIu8Wn+vJihvPVk2M=", "ips": [ "2001:ac8:24:50::a07f", @@ -33373,7 +33230,6 @@ "city": "Milan", "isp": "M247", "hostname": "it8-wireguard", - "udp": true, "wgpubkey": "hW+QDgH+88xUCgMSZkdMqTIuUossLmopwu6nWqHCsXc=", "ips": [ "2001:ac8:24:49::a08f", @@ -33386,7 +33242,6 @@ "city": "Milan", "isp": "DataPacket", "hostname": "it9-wireguard", - "udp": true, "wgpubkey": "NgwNcjxnm7XEBo/6YTrMzChhUG9KEwZ9RRReShYBF2s=", "ips": [ "2a02:6ea0:d509:1::a09f", @@ -33399,7 +33254,6 @@ "city": "Osaka", "isp": "xtom", "hostname": "jp1-wireguard", - "udp": true, "wgpubkey": "C2TUHPoZlT08iceLM2coBDTbcfg9tTKrUt7tRBWP0nk=", "ips": [ "2400:ddc0:c000::a01f", @@ -33412,7 +33266,6 @@ "city": "Osaka", "isp": "xtom", "hostname": "jp2-wireguard", - "udp": true, "wgpubkey": "SKSP2p2pmtAbLF5QsiULdcqVaeiI/IOOvU06gQRNVUs=", "ips": [ "2400:ddc0:c000::a02f", @@ -33425,7 +33278,6 @@ "city": "Osaka", "isp": "xtom", "hostname": "jp3-wireguard", - "udp": true, "wgpubkey": "oWo/Ljb6SYqJYHHhRd8nKDjFJx9MqfouEYSJvba4XH4=", "ips": [ "2400:ddc0:c000::a03f", @@ -33438,7 +33290,6 @@ "city": "Osaka", "isp": "xtom", "hostname": "jp4-wireguard", - "udp": true, "wgpubkey": "EDkvP9v1ZX0eCTPStNC6PtbHvFk2t1b8iud+UQNe3Es=", "ips": [ "2400:ddc0:c000::a04f", @@ -33516,7 +33367,6 @@ "city": "Tokyo", "isp": "DataPacket", "hostname": "jp-tyo-wg-001", - "udp": true, "wgpubkey": "AUo2zhQ0wCDy3/jmZgOe4QMncWWqrdME7BbY2UlkgyI=", "ips": [ "2a02:6ea0:d31c::a15f", @@ -33529,7 +33379,6 @@ "city": "Tokyo", "isp": "M247", "hostname": "jp10-wireguard", - "udp": true, "wgpubkey": "OR4kf/AOFDn3dCzZdG/hiH92lRHeYPFitKHm40wWTWc=", "ips": [ "2001:ac8:40:ba::a10f", @@ -33542,7 +33391,6 @@ "city": "Tokyo", "isp": "M247", "hostname": "jp11-wireguard", - "udp": true, "wgpubkey": "29LnpTfQyk4mBnp8ne9an0ynqVr8nAPx47UhZ83zX30=", "ips": [ "2001:ac8:40:bb::a11f", @@ -33555,7 +33403,6 @@ "city": "Tokyo", "isp": "M247", "hostname": "jp12-wireguard", - "udp": true, "wgpubkey": "pxL/+Kh5nOwHRNkO0FRkSX423+qPssRp2k9+hUxGoR8=", "ips": [ "2001:ac8:40:bc::a12f", @@ -33568,7 +33415,6 @@ "city": "Tokyo", "isp": "M247", "hostname": "jp13-wireguard", - "udp": true, "wgpubkey": "MirGjkQpzD6c6yxgbcvECZlECFvgO0hx5p+QhpOJYRQ=", "ips": [ "2001:ac8:40:bd::a13f", @@ -33581,7 +33427,6 @@ "city": "Tokyo", "isp": "DataPacket", "hostname": "jp14-wireguard", - "udp": true, "wgpubkey": "0lZx6k2I6+jhZHyBfI7IXHgHqRDWcSo86QH4EdRsanU=", "ips": [ "2a02:6ea0:d31b::a14f", @@ -33594,7 +33439,6 @@ "city": "Tokyo", "isp": "M247", "hostname": "jp6-wireguard", - "udp": true, "wgpubkey": "4EhX6bW/gfcu75nPm9nyexX6cRZXN/RCt/TETfXF0jc=", "ips": [ "2001:ac8:40:b6::a06f", @@ -33607,7 +33451,6 @@ "city": "Tokyo", "isp": "M247", "hostname": "jp7-wireguard", - "udp": true, "wgpubkey": "JYBVvOwWa3cbZrm3ZUWry3CgG6AxsSlxJv7H2yEsCjk=", "ips": [ "2001:ac8:40:b7::a07f", @@ -33620,7 +33463,6 @@ "city": "Tokyo", "isp": "M247", "hostname": "jp8-wireguard", - "udp": true, "wgpubkey": "ATinKg0uacPxUhrxqjixcgksJ8coK8zP2Y9q0Hz4dnA=", "ips": [ "2001:ac8:40:b8::a08f", @@ -33633,7 +33475,6 @@ "city": "Tokyo", "isp": "M247", "hostname": "jp9-wireguard", - "udp": true, "wgpubkey": "6qBkfoucP2xtTJo5hiXl+1b5pbAHPVMcbng/DIhJEiw=", "ips": [ "2001:ac8:40:b9::a09f", @@ -33659,7 +33500,6 @@ "city": "Riga", "isp": "Makonix", "hostname": "lv1-wireguard", - "udp": true, "wgpubkey": "/4WK/eoCp0d2g3Vnd2D+0JVxcUVagZoZm0xg3bZpdgY=", "ips": [ "31.170.22.15", @@ -33698,7 +33538,6 @@ "city": "Luxembourg", "isp": "Evoluso", "hostname": "lu1-wireguard", - "udp": true, "wgpubkey": "nqb90SP3pY5kGjO0UetVv7PdOkZUEOh91Gmcf3LFRXc=", "ips": [ "2a03:90c0:83:2953::a01f", @@ -33711,7 +33550,6 @@ "city": "Luxembourg", "isp": "Evoluso", "hostname": "lu2-wireguard", - "udp": true, "wgpubkey": "08lMToz0IbJfqNdybOrLJ+bGeyl28DuTaM80paWCrVg=", "ips": [ "2a03:90c0:83:2953::a02f", @@ -33737,7 +33575,6 @@ "city": "Chisinau", "isp": "Trabia", "hostname": "md1-wireguard", - "udp": true, "wgpubkey": "BQobp2UXHJguYGz06WWJGJV6QytNIZlgMwr6Joufhx8=", "ips": [ "2a00:1dc0:2925:10::a01f", @@ -33834,7 +33671,6 @@ "city": "Amsterdam", "isp": "xtom", "hostname": "nl-ams-wg-101", - "udp": true, "wgpubkey": "m9w2Fr0rcN6R1a9HYrGnUTU176rTZIq2pcsovPd9sms=", "ips": [ "2a0c:59c0:18::a20f", @@ -33847,7 +33683,6 @@ "city": "Amsterdam", "isp": "xtom", "hostname": "nl-ams-wg-102", - "udp": true, "wgpubkey": "uUYbYGKoA6UBh1hfkAz5tAWFv4SmteYC9kWh7/K6Ah0=", "ips": [ "2a0c:59c0:18::a21f", @@ -33860,7 +33695,6 @@ "city": "Amsterdam", "isp": "xtom", "hostname": "nl-ams-wg-103", - "udp": true, "wgpubkey": "CE7mlfDJ4gpwLPB/CyPfIusITnGZwDI9v4IlVueGT24=", "ips": [ "2a0c:59c0:18::a22f", @@ -33874,7 +33708,6 @@ "isp": "31173", "owned": true, "hostname": "nl1-wireguard", - "udp": true, "wgpubkey": "UrQiI9ISdPPzd4ARw1NHOPKKvKvxUhjwRjaI0JpJFgM=", "ips": [ "2a03:1b20:3:f011::a01f", @@ -33888,7 +33721,6 @@ "isp": "31173", "owned": true, "hostname": "nl2-wireguard", - "udp": true, "wgpubkey": "P0NpAUCe/gfL4lgs/PH4nDd5kA5zNDtHbUcqfYmSdmg=", "ips": [ "2a03:1b20:3:f011::a02f", @@ -33902,7 +33734,6 @@ "isp": "31173", "owned": true, "hostname": "nl3-wireguard", - "udp": true, "wgpubkey": "hnRorSW0YHlHAzGb4Uc/sjOqQIrqDnpJnTQi/n7Rp1c=", "ips": [ "2a03:1b20:3:f011::a03f", @@ -33915,7 +33746,6 @@ "city": "Amsterdam", "isp": "DataPacket", "hostname": "nl30-wireguard", - "udp": true, "wgpubkey": "C6SfQFOfq6/q9nHRdLDN98U/BTxH47Ec1l/PaQZuRk4=", "ips": [ "2a02:6ea0:c034:1::a30f", @@ -33928,7 +33758,6 @@ "city": "Amsterdam", "isp": "DataPacket", "hostname": "nl31-wireguard", - "udp": true, "wgpubkey": "LMmlMjPQXY886ER2Rsjot4UZL44+1CqoI5niOhBU9mc=", "ips": [ "2a02:6ea0:c034:2::a31f", @@ -33941,7 +33770,6 @@ "city": "Amsterdam", "isp": "DataPacket", "hostname": "nl32-wireguard", - "udp": true, "wgpubkey": "+VYWObpgrc9F30Nwz/L8Y7RlTMTTN/cXh68ClCHBJlE=", "ips": [ "2a02:6ea0:c034:3::a32f", @@ -33955,7 +33783,6 @@ "isp": "31173", "owned": true, "hostname": "nl4-wireguard", - "udp": true, "wgpubkey": "hnRyse6QxPPcZOoSwRsHUtK1W+APWXnIoaDTmH6JsHQ=", "ips": [ "2a03:1b20:3:f011::a04f", @@ -33969,7 +33796,6 @@ "isp": "31173", "owned": true, "hostname": "nl5-wireguard", - "udp": true, "wgpubkey": "33BoONMGCm2vknq2eq72eozRsHmHQY6ZHEEZ4851TkY=", "ips": [ "2a03:1b20:3:f011::a05f", @@ -33995,7 +33821,6 @@ "city": "Auckland", "isp": "Intergrid", "hostname": "nz1-wireguard", - "udp": true, "wgpubkey": "fz9sSuR61ZqbFlI004lFBksGbw3U4KADy0Kvxhv5JyY=", "ips": [ "2400:fa80:4:10::a01f", @@ -34008,7 +33833,6 @@ "city": "Auckland", "isp": "Intergrid", "hostname": "nz2-wireguard", - "udp": true, "wgpubkey": "kDVDjSME2WSxhEqOV6fkeNetTHv6tYWD8HNqHXCnESw=", "ips": [ "2400:fa80:4:11::a02f", @@ -34021,7 +33845,6 @@ "city": "Skopje", "isp": "Interspace", "hostname": "mk1-wireguard", - "udp": true, "wgpubkey": "bBpLzsGFejooiGku1yzNIvRb3U8Upr032I3nxCCkzn4=", "ips": [ "2a0d:4500::a01f", @@ -34147,7 +33970,6 @@ "isp": "Blix", "owned": true, "hostname": "no1-wireguard", - "udp": true, "wgpubkey": "jOUZjMq2PWHDzQxu3jPXktYB7EKeFwBzGZx56cTXXQg=", "ips": [ "2a02:20c8:4124::a01f", @@ -34161,7 +33983,6 @@ "isp": "Blix", "owned": true, "hostname": "no2-wireguard", - "udp": true, "wgpubkey": "IhhpKphSFWpwja1P4HBctZ367G3Q53EgdeFGZro29Tc=", "ips": [ "2a02:20c8:4124::a02f", @@ -34175,7 +33996,6 @@ "isp": "Blix", "owned": true, "hostname": "no3-wireguard", - "udp": true, "wgpubkey": "zOBWmQ3BEOZKsYKbj4dC2hQjxCbr3eKa6wGWyEDYbC4=", "ips": [ "2a02:20c8:4124::a03f", @@ -34189,7 +34009,6 @@ "isp": "Blix", "owned": true, "hostname": "no4-wireguard", - "udp": true, "wgpubkey": "veeEoYS9a2T6K8WMs/MvRCdNJG580XbhnLfbFjp3B0M=", "ips": [ "2a02:20c8:4124::a04f", @@ -34280,7 +34099,6 @@ "city": "Warsaw", "isp": "M247", "hostname": "pl1-wireguard", - "udp": true, "wgpubkey": "p9FqkVuPmFXOta1CFn81m0HRgD+uic5UfLU0fQb3t00=", "ips": [ "2a0d:5600:13:9::a01f", @@ -34293,7 +34111,6 @@ "city": "Warsaw", "isp": "M247", "hostname": "pl2-wireguard", - "udp": true, "wgpubkey": "9v9VK6f98rFS2iZvYxqTvNWeeT34EYn6TRRZqNC2MhU=", "ips": [ "37.120.156.242", @@ -34306,7 +34123,6 @@ "city": "Warsaw", "isp": "M247", "hostname": "pl3-wireguard", - "udp": true, "wgpubkey": "VXt/spGVLruJ0m7aSkKWIIc5ktxS6wOg9dlNwDOKw0I=", "ips": [ "5.253.206.210", @@ -34319,7 +34135,6 @@ "city": "Warsaw", "isp": "M247", "hostname": "pl4-wireguard", - "udp": true, "wgpubkey": "fOEmuT2M++Qnk1riHmce8DCriSlO5G5BQZVmzK7tq2E=", "ips": [ "37.120.211.210", @@ -34332,7 +34147,6 @@ "city": "Warsaw", "isp": "DataPacket", "hostname": "pl5-wireguard", - "udp": true, "wgpubkey": "TYQ2DDoazWSxCO4JvtIdj86YUoQ4g5MfQ/m6lTg5SQQ=", "ips": [ "2a02:6ea0:ce08:1::a05f", @@ -34345,7 +34159,6 @@ "city": "Warsaw", "isp": "DataPacket", "hostname": "pl6-wireguard", - "udp": true, "wgpubkey": "idpB87uLzIFTwjhBWJ4HnO+biSb3k7UgrpajQoDUP2c=", "ips": [ "2a02:6ea0:ce08:2::a06f", @@ -34358,7 +34171,6 @@ "city": "Warsaw", "isp": "DataPacket", "hostname": "pl7-wireguard", - "udp": true, "wgpubkey": "KtjnCWDsf9R7rJSPUCFEDSE8PFj/t7mEnscCm8DSsBY=", "ips": [ "2a02:6ea0:ce08:3::a07f", @@ -34371,7 +34183,6 @@ "city": "Lisbon", "isp": "ptisp", "hostname": "pt1-wireguard", - "udp": true, "wgpubkey": "xL7uaEPI7KV3aNPELKpGjVxBCq0yiAc376iS/MRDo3Y=", "ips": [ "2a00:1651:0:4000::a01f", @@ -34384,7 +34195,6 @@ "city": "Lisbon", "isp": "ptisp", "hostname": "pt2-wireguard", - "udp": true, "wgpubkey": "9fS+IEof6FztE6sdxuyq94PzB90obnggin4TuHEpLhY=", "ips": [ "2a00:1651:0:4001::a02f", @@ -34449,7 +34259,6 @@ "city": "Bucharest", "isp": "M247", "hostname": "ro-buh-wg-001", - "udp": true, "wgpubkey": "XXfzn9RiAuOyGCmLCV8JDDHEmYUJIoS16rjP/VEIeQE=", "ips": [ "2a04:9dc0:0:133::a01f", @@ -34462,7 +34271,6 @@ "city": "Bucharest", "isp": "M247", "hostname": "ro-buh-wg-002", - "udp": true, "wgpubkey": "5p7dPHqyQZE/DNwfkyMPwcx/H2omQnVF+4rT8AhZHw4=", "ips": [ "2a04:9dc0:0:134::a02f", @@ -34475,7 +34283,6 @@ "city": "Bucharest", "isp": "M247", "hostname": "ro4-wireguard", - "udp": true, "wgpubkey": "NGG2LF66eJhGOKe77mfX9rzP81gAK45XRj05TVC79GU=", "ips": [ "2a04:9dc0:0:94::a04f", @@ -34488,7 +34295,6 @@ "city": "Bucharest", "isp": "M247", "hostname": "ro5-wireguard", - "udp": true, "wgpubkey": "6hqbJrVJMv5a15d1zvJDw09bB1heRHHupc2GEmUsmGo=", "ips": [ "2a04:9dc0:0:95::a05f", @@ -34501,7 +34307,6 @@ "city": "Bucharest", "isp": "M247", "hostname": "ro6-wireguard", - "udp": true, "wgpubkey": "t1D8bGu6LN9Rtscxe5KtDl9Xfa3wFgj+Mpn+89onYD8=", "ips": [ "2a04:9dc0:0:96::a06f", @@ -34514,7 +34319,6 @@ "city": "Bucharest", "isp": "M247", "hostname": "ro7-wireguard", - "udp": true, "wgpubkey": "PBkAK/T6eQHrBTAvfeSngjNnwb8FvhwQ2FKXEQp5dgM=", "ips": [ "2a04:9dc0:0:97::a07f", @@ -34527,7 +34331,6 @@ "city": "Bucharest", "isp": "M247", "hostname": "ro8-wireguard", - "udp": true, "wgpubkey": "fdEVvu79A9F/VcI0sDK+7RNWBt1Yg2OYXo7O+fliKF8=", "ips": [ "2a04:9dc0:0:98::a08f", @@ -34566,7 +34369,6 @@ "city": "Belgrade", "isp": "M247", "hostname": "rs3-wireguard", - "udp": true, "wgpubkey": "9U+3Wxd6DLZ+p9q0OImYd5FeLYjs86DHO7wsEL04M2A=", "ips": [ "2001:ac8:7d:1b::a03f", @@ -34579,7 +34381,6 @@ "city": "Belgrade", "isp": "M247", "hostname": "rs4-wireguard", - "udp": true, "wgpubkey": "XfYd3s53gcTH4TDL8aCu2sa88TAxuWBD7CcOHtlDmjw=", "ips": [ "2001:ac8:7d:20::a04f", @@ -34618,7 +34419,6 @@ "city": "Singapore", "isp": "DataPacket", "hostname": "sg-sin-wg-001", - "udp": true, "wgpubkey": "sFHv/qzG7b6ds5pow+oAR3G5Wqp9eFbBD3BmEGBuUWU=", "ips": [ "2a02:6ea0:d13e:1::a09f", @@ -34631,7 +34431,6 @@ "city": "Singapore", "isp": "DataPacket", "hostname": "sg10-wireguard", - "udp": true, "wgpubkey": "WM5I4IFwQcVysM4fF4NXZtQXNrSkqVWkQxNPPygOiF0=", "ips": [ "2a02:6ea0:d13e:2::a10f", @@ -34644,7 +34443,6 @@ "city": "Singapore", "isp": "DataPacket", "hostname": "sg11-wireguard", - "udp": true, "wgpubkey": "3HtGdhEXUPKQIDRW49wCUoTK2ZXfq+QfzjfYoldNchg=", "ips": [ "2a02:6ea0:d13e:3::a11f", @@ -34657,7 +34455,6 @@ "city": "Singapore", "isp": "M247", "hostname": "sg4-wireguard", - "udp": true, "wgpubkey": "HbD3PLJKJdHPyjof67Tug83HH5x/KyInbiuPQvkOaDI=", "ips": [ "2a0a:b640:1:57::a04f", @@ -34670,7 +34467,6 @@ "city": "Singapore", "isp": "M247", "hostname": "sg5-wireguard", - "udp": true, "wgpubkey": "+B9zLO2t0vCxoLlrG3fhB8M1OQ/kOSr6VL81eP+AUXU=", "ips": [ "2a0a:b640:1:58::a05f", @@ -34683,7 +34479,6 @@ "city": "Singapore", "isp": "M247", "hostname": "sg6-wireguard", - "udp": true, "wgpubkey": "FfjGK3hSDhCm8xWixKv2O4SbPcQEH9Vx2ykfEWEY7ho=", "ips": [ "2a0a:b640:1:59::a06f", @@ -34696,7 +34491,6 @@ "city": "Singapore", "isp": "M247", "hostname": "sg7-wireguard", - "udp": true, "wgpubkey": "4KtYjALlkYH0xKW6AeUAhyznDAa5GKqDk8WHYso9/D8=", "ips": [ "2a0a:b640:1:5a::a07f", @@ -34709,7 +34503,6 @@ "city": "Singapore", "isp": "M247", "hostname": "sg8-wireguard", - "udp": true, "wgpubkey": "VxROoDxnI3XS5DBgXEucl+iEd964v//8p7dHGMWGbkE=", "ips": [ "2a0a:b640:1:5b::a08f", @@ -34722,7 +34515,6 @@ "city": "Bratislava", "isp": "DataPacket", "hostname": "sk1-wireguard", - "udp": true, "wgpubkey": "fPs3PsvwF/bxeWaGjsgFh88f/m2cdytuaUTl0o9OllA=", "ips": [ "2a02:6ea0:2901:1::a01f", @@ -34735,7 +34527,6 @@ "city": "Bratislava", "isp": "DataPacket", "hostname": "sk2-wireguard", - "udp": true, "wgpubkey": "hff2rFJHAyzSPfQMcv/3bL44c7wGy1LYDRvTX+R62Fs=", "ips": [ "2a02:6ea0:2901::a02f", @@ -34813,7 +34604,6 @@ "city": "Madrid", "isp": "DataPacket", "hostname": "es-mad-wg-101", - "udp": true, "wgpubkey": "oPpPeyiQhUYqtOxwR387dmFfII8OK5LX2RPyns1rx2U=", "ips": [ "2a02:6ea0:c318:1::a06f", @@ -34826,7 +34616,6 @@ "city": "Madrid", "isp": "M247", "hostname": "es1-wireguard", - "udp": true, "wgpubkey": "hDflDse0Nz7GsZ0q5uylWOJaJQ6woJPCGy8IvTXKjzo=", "ips": [ "2001:ac8:23:2c::a01f", @@ -34839,7 +34628,6 @@ "city": "Madrid", "isp": "M247", "hostname": "es2-wireguard", - "udp": true, "wgpubkey": "fMYx8zLs1oBQvXtkdpdCwhy0UUx9QhbF0kaXp1QJJSY=", "ips": [ "2001:ac8:23:4b::a02f", @@ -34852,7 +34640,6 @@ "city": "Madrid", "isp": "M247", "hostname": "es4-wireguard", - "udp": true, "wgpubkey": "Bnrn99Enx6mxeZO77+DanSMhAXi7EHazFUwGmFL2VCo=", "ips": [ "2001:ac8:23:5a::a04f", @@ -34865,7 +34652,6 @@ "city": "Madrid", "isp": "M247", "hostname": "es5-wireguard", - "udp": true, "wgpubkey": "/u0n1ETjberX5jYv0W94zLvX5Qzn+pPL/8umey/iIlE=", "ips": [ "2001:ac8:23:5b::a05f", @@ -34878,7 +34664,6 @@ "city": "Madrid", "isp": "DataPacket", "hostname": "es7-wireguard", - "udp": true, "wgpubkey": "azJb0GofbDjSh2KTPReEeVdB8QVs4QC7E57P7MC7dQg=", "ips": [ "2a02:6ea0:c318:2::a07f", @@ -35060,7 +34845,6 @@ "isp": "31173", "owned": true, "hostname": "se10-wireguard", - "udp": true, "wgpubkey": "veGD6/aEY6sMfN3Ls7YWPmNgu3AheO7nQqsFT47YSws=", "ips": [ "2a03:1b20:5:f011::a10f", @@ -35074,7 +34858,6 @@ "isp": "31173", "owned": true, "hostname": "se3-wireguard", - "udp": true, "wgpubkey": "5JMPeO7gXIbR5CnUa/NPNK4L5GqUnreF0/Bozai4pl4=", "ips": [ "2a03:1b20:5:f011:31::a03f", @@ -35088,7 +34871,6 @@ "isp": "31173", "owned": true, "hostname": "se5-wireguard", - "udp": true, "wgpubkey": "AtvE5KdPeQtOcE2QyXaPt9eQoBV3GBxzimQ2FIuGQ2U=", "ips": [ "2a03:1b20:5:f011::a05f", @@ -35102,7 +34884,6 @@ "isp": "31173", "owned": true, "hostname": "se9-wireguard", - "udp": true, "wgpubkey": "BLNHNoGO88LjV/wDBa7CUUwUzPq/fO2UwcGLy56hKy4=", "ips": [ "2a03:1b20:5:f011::a09f", @@ -35354,7 +35135,6 @@ "isp": "31173", "owned": true, "hostname": "se1-wireguard", - "udp": true, "wgpubkey": "Qn1QaXYTJJSmJSMw18CGdnFiVM0/Gj/15OdkxbXCSG0=", "ips": [ "2a03:1b20:1:f410::a01f", @@ -35368,7 +35148,6 @@ "isp": "31173", "owned": true, "hostname": "se15-wireguard", - "udp": true, "wgpubkey": "5y66WShsFXqM5K7/4CPEGCWfk7PQyNhVBT2ILjbGm2I=", "ips": [ "2a03:1b20:1:f410::a15f", @@ -35382,7 +35161,6 @@ "isp": "31173", "owned": true, "hostname": "se17-wireguard", - "udp": true, "wgpubkey": "dBAObjXtN11hAbyYZxw0m6NQw86ccnkY5O0YKSmq4lI=", "ips": [ "2a03:1b20:1:f410::a17f", @@ -35396,7 +35174,6 @@ "isp": "31173", "owned": true, "hostname": "se18-wireguard", - "udp": true, "wgpubkey": "fZFAcd8vqWOBpRqlXifsjzGf16gMTg2GuwKyZtkG6UU=", "ips": [ "2a03:1b20:1:f410::a18f", @@ -35410,7 +35187,6 @@ "isp": "31173", "owned": true, "hostname": "se21-wireguard", - "udp": true, "wgpubkey": "7ncbaCb+9za3jnXlR95I6dJBkwL1ABB5i4ndFUesYxE=", "ips": [ "2a03:1b20:1:e011::a21f", @@ -35424,7 +35200,6 @@ "isp": "31173", "owned": true, "hostname": "se22-wireguard", - "udp": true, "wgpubkey": "cwglRdgLQ4gMG36TIYlc5OIemLNrYs4UM1KTc8mnzxk=", "ips": [ "2a03:1b20:1:e011::a22f", @@ -35438,7 +35213,6 @@ "isp": "31173", "owned": true, "hostname": "se23-wireguard", - "udp": true, "wgpubkey": "XscA5gebj51nmhAr6o+aUCnMHWGjbS1Gvvd0tuLRiFE=", "ips": [ "2a03:1b20:1:e011::a23f", @@ -35452,7 +35226,6 @@ "isp": "31173", "owned": true, "hostname": "se4-wireguard", - "udp": true, "wgpubkey": "m4jnogFbACz7LByjo++8z5+1WV0BuR1T7E1OWA+n8h0=", "ips": [ "2a03:1b20:1:f410:40::a04f", @@ -35690,7 +35463,6 @@ "isp": "31173", "owned": true, "hostname": "se13-wireguard", - "udp": true, "wgpubkey": "615mnBGkvjZnD/vRbyL/6da7YhtctfB+jimN+wfV724=", "ips": [ "2a03:1b20:4:f011::a13f", @@ -35704,7 +35476,6 @@ "isp": "31173", "owned": true, "hostname": "se14-wireguard", - "udp": true, "wgpubkey": "v02a3f1hdtTFD+bzStbGN6FxwOMAA/4d/yjNKoLTXFI=", "ips": [ "2a03:1b20:4:f011::a14f", @@ -35718,7 +35489,6 @@ "isp": "31173", "owned": true, "hostname": "se2-wireguard", - "udp": true, "wgpubkey": "BfyxzL1mtigKIfM51OhxD+FBBSk+/SHEUE9UlDJ45W4=", "ips": [ "2a03:1b20:4:f011::a02f", @@ -35732,7 +35502,6 @@ "isp": "31173", "owned": true, "hostname": "se26-wireguard", - "udp": true, "wgpubkey": "1493vtFUbIfSpQKRBki/1d0YgWIQwMV4AQAvGxjCNVM=", "ips": [ "2a03:1b20:4:f011::a26f", @@ -35746,7 +35515,6 @@ "isp": "31173", "owned": true, "hostname": "se28-wireguard", - "udp": true, "wgpubkey": "V6RHmYEXDDXvCPZENmhwk5VEn6KgSseTFHw/IkXFzGg=", "ips": [ "2a03:1b20:4:f011::a28f", @@ -35760,7 +35528,6 @@ "isp": "31173", "owned": true, "hostname": "se6-wireguard", - "udp": true, "wgpubkey": "pKcMMeC4jMUxSU5pH1orvp4//GrY8is+y9JRfVP3+BY=", "ips": [ "2a03:1b20:4:f011::a06f", @@ -35774,7 +35541,6 @@ "isp": "31173", "owned": true, "hostname": "se7-wireguard", - "udp": true, "wgpubkey": "Io+BJ9lxGxi8jhvy95tqwudkzzy5zrvrf8KLxWRGs0w=", "ips": [ "2a03:1b20:4:f011::a07f", @@ -35788,7 +35554,6 @@ "isp": "31173", "owned": true, "hostname": "se8-wireguard", - "udp": true, "wgpubkey": "CNn6UoRrPYQYUYt19fXJb75MI6a24Mgq/+OKAahfI0I=", "ips": [ "2a03:1b20:4:f011::a08f", @@ -35802,7 +35567,6 @@ "isp": "31173", "owned": true, "hostname": "beta-got-1", - "udp": true, "wgpubkey": "qF+KXpbfKxUnkdQNbmUifBDwc2HIj2mrEuMiEXGaKgk=", "ips": [ "2a03:1b20:5:f011::aaaf", @@ -35816,7 +35580,6 @@ "isp": "31173", "owned": true, "hostname": "beta-sto-1", - "udp": true, "wgpubkey": "rnM22xReb9NLm2nLADbdpj/dsesS7G27UclJk1v+2QQ=", "ips": [ "2a03:1b20:4:f011::999f", @@ -35989,7 +35752,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch-zrh-wg-501", - "udp": true, "wgpubkey": "HQzvIK88XSsRujBlwoYvvZ7CMKwiYuOqLXyuckkTPHg=", "ips": [ "2001:ac8:28:a7::a36f", @@ -36002,7 +35764,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch10-wireguard", - "udp": true, "wgpubkey": "KYqwrr7VPNXZ69XYRKP8QiQmMrlPMZj4j5BlvapZihY=", "ips": [ "2001:ac8:28:88::a10f", @@ -36015,7 +35776,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch11-wireguard", - "udp": true, "wgpubkey": "cw0Fi1eyfXK15XjuxTLXvmmGB2MMWHqXtgyou88BND4=", "ips": [ "2001:ac8:28:89::a11f", @@ -36028,7 +35788,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch12-wireguard", - "udp": true, "wgpubkey": "nm+od1xQfib6hOHupY4STktnjlDSKBcLVTyV5ukBTlE=", "ips": [ "2001:ac8:28:90::a12f", @@ -36041,7 +35800,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch13-wireguard", - "udp": true, "wgpubkey": "68OCxVdQLk9wtE2Bcag2+Yo3X8jb+raKXxHdCUamaiM=", "ips": [ "2001:ac8:28:91::a13f", @@ -36054,7 +35812,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch14-wireguard", - "udp": true, "wgpubkey": "s+gmJDvPmOPJkCYaXE2qydVnnM5vvQsazGLxnVW/GQM=", "ips": [ "2001:ac8:28:92::a14f", @@ -36067,7 +35824,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch15-wireguard", - "udp": true, "wgpubkey": "jLddqPJjcG0nGagLsJwxGWWkKcS0GwQgiEZL7iX/n0E=", "ips": [ "2001:ac8:28:93::a15f", @@ -36080,7 +35836,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch16-wireguard", - "udp": true, "wgpubkey": "wGY+iakQnz4nJIPBf8X/ahRqB8qL5/GHxEvCw80Kjkc=", "ips": [ "2001:ac8:28:94::a16f", @@ -36093,7 +35848,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch17-wireguard", - "udp": true, "wgpubkey": "4cr4WJxUbl5EqayrN2EecNROHjiXGkZKEProFeyaPWo=", "ips": [ "2001:ac8:28:95::a17f", @@ -36106,7 +35860,6 @@ "city": "Zurich", "isp": "DataPacket", "hostname": "ch18-wireguard", - "udp": true, "wgpubkey": "DMMY46sOiyCKaY+8BPUyDGqgyAk9jyw/qkwGQO3+I1U=", "ips": [ "2a02:6ea0:d406:1::a18f", @@ -36119,7 +35872,6 @@ "city": "Zurich", "isp": "DataPacket", "hostname": "ch19-wireguard", - "udp": true, "wgpubkey": "AUqDi4OgZKUsJMmggT8CgO4psXKRSwm6vspDVlGWDwM=", "ips": [ "2a02:6ea0:d406:2::a19f", @@ -36132,7 +35884,6 @@ "city": "Zurich", "isp": "PrivateLayer", "hostname": "ch2-wireguard", - "udp": true, "wgpubkey": "bmy9vGzMqc0yS3IiMMyOONyXRwPCMiyhR/bnNQ2LsCE=", "ips": [ "31.7.59.250", @@ -36145,7 +35896,6 @@ "city": "Zurich", "isp": "DataPacket", "hostname": "ch20-wireguard", - "udp": true, "wgpubkey": "CrVsR/GimomhjhSaBJaM9nRQSRoztLMuEMjZgnoq7ng=", "ips": [ "2a02:6ea0:d406:3::a20f", @@ -36158,7 +35908,6 @@ "city": "Zurich", "isp": "DataPacket", "hostname": "ch21-wireguard", - "udp": true, "wgpubkey": "nt4J55Ndxvrr+ZHQ0EDRh1L+gYynqNFKaJS2hUX4pQg=", "ips": [ "2a02:6ea0:d406:4::a21f", @@ -36171,7 +35920,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch30-wireguard", - "udp": true, "wgpubkey": "SBbljxCZkalFGf2abrAsflkqCxromW/dHbkFI6cz30Q=", "ips": [ "2001:ac8:28:a1::a30f", @@ -36184,7 +35932,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch31-wireguard", - "udp": true, "wgpubkey": "RIEfhD/bJovOHA/FB03orNZ98/5AAcQq48ofMWpb/g8=", "ips": [ "2001:ac8:28:a2::a31f", @@ -36197,7 +35944,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch32-wireguard", - "udp": true, "wgpubkey": "I5XiRYHPmxnmGtPJ90Yio6QXL441C/+kYV6UH6wU+jk=", "ips": [ "2001:ac8:28:a3::a32f", @@ -36210,7 +35956,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch33-wireguard", - "udp": true, "wgpubkey": "RdRmzC/dFLnWae7oHeHvC3QoLoapoFwwANjCE1jShm4=", "ips": [ "2001:ac8:28:a4::a33f", @@ -36223,7 +35968,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch34-wireguard", - "udp": true, "wgpubkey": "oSSHqICfNSsRK6vdIcw00cx5G4KnHDtnZD7ieriPYhQ=", "ips": [ "2001:ac8:28:a5::a34f", @@ -36236,7 +35980,6 @@ "city": "Zurich", "isp": "M247", "hostname": "ch35-wireguard", - "udp": true, "wgpubkey": "/PLVCdGatn3Jl4lQ/btcG9sQRhczOzgAza2fwuJ2WX8=", "ips": [ "2001:ac8:28:a6::a35f", @@ -36250,7 +35993,6 @@ "isp": "31173", "owned": true, "hostname": "ch5-wireguard", - "udp": true, "wgpubkey": "/iivwlyqWqxQ0BVWmJRhcXIFdJeo0WbHQ/hZwuXaN3g=", "ips": [ "2a03:1b20:a:f011::a01f", @@ -36264,7 +36006,6 @@ "isp": "31173", "owned": true, "hostname": "ch6-wireguard", - "udp": true, "wgpubkey": "qcvI02LwBnTb7aFrOyZSWvg4kb7zNW9/+rS6alnWyFE=", "ips": [ "2a03:1b20:a:f011::a02f", @@ -36278,7 +36019,6 @@ "isp": "31173", "owned": true, "hostname": "ch7-wireguard", - "udp": true, "wgpubkey": "5Ms10UxGjCSzwImTrvEjcygsWY8AfMIdYyRvgFuTqH8=", "ips": [ "2a03:1b20:a:f011::a03f", @@ -36292,7 +36032,6 @@ "isp": "31173", "owned": true, "hostname": "ch8-wireguard", - "udp": true, "wgpubkey": "C3jAgPirUZG6sNYe4VuAgDEYunENUyG34X42y+SBngQ=", "ips": [ "2a03:1b20:a:f011::a04f", @@ -36306,7 +36045,6 @@ "isp": "31173", "owned": true, "hostname": "ch9-wireguard", - "udp": true, "wgpubkey": "dV/aHhwG0fmp0XuvSvrdWjCtdyhPDDFiE/nuv/1xnRM=", "ips": [ "2a03:1b20:a:f011::a05f", @@ -36482,7 +36220,6 @@ "city": "London", "isp": "M247", "hostname": "gb-lon-wg-101", - "udp": true, "wgpubkey": "MPZX0ZQtB5r1pmcvIcsAt1AMvenios2ICBz9rjbN/l4=", "ips": [ "2001:ac8:31:f007::a39f", @@ -36496,7 +36233,6 @@ "isp": "31173", "owned": true, "hostname": "gb11-wireguard", - "udp": true, "wgpubkey": "VZwE8hrpNzg6SMwn9LtEqonXzSWd5dkFk62PrNWFW3Y=", "ips": [ "2a03:1b20:7:f011::a11f", @@ -36510,7 +36246,6 @@ "isp": "31173", "owned": true, "hostname": "gb12-wireguard", - "udp": true, "wgpubkey": "PLpO9ikFX1garSFaeUpo7XVSMrILrTB8D9ZwQt6Zgwk=", "ips": [ "2a03:1b20:7:f011::a12f", @@ -36524,7 +36259,6 @@ "isp": "31173", "owned": true, "hostname": "gb13-wireguard", - "udp": true, "wgpubkey": "bG6WulLmMK408n719B8nQJNuTRyRA3Qjm7bsm9d6v2M=", "ips": [ "2a03:1b20:7:f011::a13f", @@ -36538,7 +36272,6 @@ "isp": "31173", "owned": true, "hostname": "gb14-wireguard", - "udp": true, "wgpubkey": "INRhM0h4T1hi9j28pcC+vRv47bp7DIsNKtagaFZFSBI=", "ips": [ "2a03:1b20:7:f011::a14f", @@ -36552,7 +36285,6 @@ "isp": "31173", "owned": true, "hostname": "gb15-wireguard", - "udp": true, "wgpubkey": "MVqe9e9aDwfFuvEhEn4Wd/zWV3cmiCX9fZMWetz+23A=", "ips": [ "2a03:1b20:7:f011::a15f", @@ -36565,7 +36297,6 @@ "city": "London", "isp": "M247", "hostname": "gb17-wireguard", - "udp": true, "wgpubkey": "9ERbjhPKAITbf5J8NPXlyrJeeBzAJ7TlxKVAV4Cf+iA=", "ips": [ "2001:ac8:31:238::a17f", @@ -36578,7 +36309,6 @@ "city": "London", "isp": "M247", "hostname": "gb18-wireguard", - "udp": true, "wgpubkey": "4CO8lBJQ+iyP7wtsn41oxTWvAWZlOYqdM4oAabpwslw=", "ips": [ "2001:ac8:31:239::a18f", @@ -36591,7 +36321,6 @@ "city": "London", "isp": "M247", "hostname": "gb19-wireguard", - "udp": true, "wgpubkey": "rRfIbGqzAgcIivBVAu0oQgZUvCoQTLQDKC3I1l5ZUVA=", "ips": [ "2001:ac8:31:23a::a19f", @@ -36604,7 +36333,6 @@ "city": "London", "isp": "M247", "hostname": "gb20-wireguard", - "udp": true, "wgpubkey": "Kt7nO9EG5CpRJ8ga56gnmcP4K/dr87xtpMOtpj1GtEs=", "ips": [ "2001:ac8:31:23b::a20f", @@ -36617,7 +36345,6 @@ "city": "London", "isp": "xtom", "hostname": "gb33-wireguard", - "udp": true, "wgpubkey": "b71Y8V/vVwNRGkL4d1zvApDVL18u7m31dN+x+i5OJVs=", "ips": [ "2a0b:89c1:3::a33f", @@ -36630,7 +36357,6 @@ "city": "London", "isp": "xtom", "hostname": "gb34-wireguard", - "udp": true, "wgpubkey": "+iQWuT3wb2DCy1u2eUKovhJTCB4aUdJUnpxGtONDIVE=", "ips": [ "2a0b:89c1:3::a34f", @@ -36643,7 +36369,6 @@ "city": "London", "isp": "xtom", "hostname": "gb35-wireguard", - "udp": true, "wgpubkey": "G7XDQqevQOw1SVL7Iarn9PM+RvmI6H/CfkmahBYEG0g=", "ips": [ "2a0b:89c1:3::a35f", @@ -36656,7 +36381,6 @@ "city": "London", "isp": "xtom", "hostname": "gb36-wireguard", - "udp": true, "wgpubkey": "tJVHqpfkV2Xgmd4YK60aoErSt6PmJKJjkggHNDfWwiU=", "ips": [ "2a0b:89c1:3::a36f", @@ -36669,7 +36393,6 @@ "city": "London", "isp": "M247", "hostname": "gb37-wireguard", - "udp": true, "wgpubkey": "XtXd2k1wMra6dSODZYCZdzU5ZJ7XKQGR1nfhF3s9wSw=", "ips": [ "2001:ac8:31:f005::a37f", @@ -36682,7 +36405,6 @@ "city": "London", "isp": "M247", "hostname": "gb38-wireguard", - "udp": true, "wgpubkey": "QY3xZuhOqhQXiaYjO0Jp4Cdl41pHOz68xPS54rM0Q1M=", "ips": [ "2001:ac8:31:f006::a38f", @@ -36696,7 +36418,6 @@ "isp": "31173", "owned": true, "hostname": "gb4-wireguard", - "udp": true, "wgpubkey": "IJJe0TQtuQOyemL4IZn6oHEsMKSPqOuLfD5HoAWEPTY=", "ips": [ "2a03:1b20:7:f011::a01f", @@ -36710,7 +36431,6 @@ "isp": "31173", "owned": true, "hostname": "gb5-wireguard", - "udp": true, "wgpubkey": "J57ba81Q8bigy9RXBXvl0DgABTrbl81nb37GuX50gnY=", "ips": [ "2a03:1b20:7:f011::a02f", @@ -36827,7 +36547,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb-mnc-wg-001", - "udp": true, "wgpubkey": "Q2khJLbTSFxmppPGHgq2HdxMQx7CczPZCgVpYZMoNnM=", "ips": [ "2001:ac8:8b:2d::a47f", @@ -36840,7 +36559,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb22-wireguard", - "udp": true, "wgpubkey": "BDTfnJvtHlh15E54kLYHJlZBL5yXkEQlC0AtOyDXNRU=", "ips": [ "2001:ac8:21:ac::a22f", @@ -36853,7 +36571,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb24-wireguard", - "udp": true, "wgpubkey": "vx3qY69JPrJoeIFIMoWjNGCz4VQhkhrF97+ekj3nVTU=", "ips": [ "2001:ac8:21:ae::a24f", @@ -36866,7 +36583,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb25-wireguard", - "udp": true, "wgpubkey": "HAsZqzSSc9sxOTfpV6PQg0ll8rRn0IzRNdyGL/Vq+X0=", "ips": [ "2001:ac8:21:af::a25f", @@ -36879,7 +36595,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb26-wireguard", - "udp": true, "wgpubkey": "oSsZE1FGG+KbUHCBgT84RkSOhkZfUBKLPcF9SNL9yCY=", "ips": [ "2001:ac8:21:b5::a26f", @@ -36892,7 +36607,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb27-wireguard", - "udp": true, "wgpubkey": "MFY3o3SFgAsTRL0EVAfvFU0qxQ2GWLdtE1xTsk87w1U=", "ips": [ "2001:ac8:21:b6::a27f", @@ -36905,7 +36619,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb28-wireguard", - "udp": true, "wgpubkey": "6cp7iV7x3DGcvcfL83VohcMu5BYaJOo9b1ffC/4L31Q=", "ips": [ "2001:ac8:21:b7::a28f", @@ -36918,7 +36631,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb29-wireguard", - "udp": true, "wgpubkey": "uaBPua4Tnbluy51WbNOahHx77RGJFGRr/MAqWFILJhI=", "ips": [ "2001:ac8:21:b8::a29f", @@ -36931,7 +36643,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb30-wireguard", - "udp": true, "wgpubkey": "/XJ5QVlczjYpsYj7acmoXu+17PRkY68NYUx1jk7dvyY=", "ips": [ "2001:ac8:21:b9::a30f", @@ -36944,7 +36655,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb31-wireguard", - "udp": true, "wgpubkey": "+tcSmB5oL9s+eIRl33hFKH+qAJVG9t42cfym7WzRMB0=", "ips": [ "2001:ac8:21:ba::a31f", @@ -36957,7 +36667,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb32-wireguard", - "udp": true, "wgpubkey": "u/CMY/BfJDTQk6n7WXbhHvM7LUvHIqJRuzGk0V8y/U8=", "ips": [ "2001:ac8:21:bb::a32f", @@ -36970,7 +36679,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb40-wireguard", - "udp": true, "wgpubkey": "Jr8ukrsqtIEh18VNTH5vlEARA+H6GpJmFlcP4uoeXUY=", "ips": [ "2001:ac8:8b:26::a40f", @@ -36983,7 +36691,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb41-wireguard", - "udp": true, "wgpubkey": "GBA7YHUNxU4NUC/GJKjDOTiaCodsViq9J606Lq5dgC4=", "ips": [ "2001:ac8:8b:27::a41f", @@ -36996,7 +36703,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb42-wireguard", - "udp": true, "wgpubkey": "A5HcG8nw8YN5KxGpewx2kkENVUiTRkf+sFMrHGB1mnc=", "ips": [ "2001:ac8:8b:28::a42f", @@ -37009,7 +36715,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb43-wireguard", - "udp": true, "wgpubkey": "6ymCVAr+mkCJo76RYgDHZeIa5UVo7r4POQNB3IfCHzg=", "ips": [ "2001:ac8:8b:29::a43f", @@ -37022,7 +36727,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb44-wireguard", - "udp": true, "wgpubkey": "7UuHL+7aufCbEXTh70QWOuJUHaayEtZS5hSxY0XP2Vg=", "ips": [ "2001:ac8:8b:2a::a44f", @@ -37035,7 +36739,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb45-wireguard", - "udp": true, "wgpubkey": "v+dOPx0FM8lGCjJ7m/7miWy67PGuazYYzvJoeMb97n4=", "ips": [ "2001:ac8:8b:2b::a45f", @@ -37048,7 +36751,6 @@ "city": "Manchester", "isp": "M247", "hostname": "gb46-wireguard", - "udp": true, "wgpubkey": "2bciRobW0TPtjrZ2teilr+7PjyiBMUGfixvAKOE52Xo=", "ips": [ "2001:ac8:8b:2c::a46f", @@ -37100,7 +36802,6 @@ "city": "Ashburn VA", "isp": "DataPacket", "hostname": "us-qas-wg-102", - "udp": true, "wgpubkey": "F6bECDPFVtdmF5ShrBYkCm+9vK8DbWam68R0Hpq4jwI=", "ips": [ "2a02:6ea0:e206:2::a02f", @@ -37113,7 +36814,6 @@ "city": "Ashburn VA", "isp": "DataPacket", "hostname": "us-qas-wg-103", - "udp": true, "wgpubkey": "CCyFLcE2FwncKYTXqqVyokzZZy2pUm5R+VtC3DpVplQ=", "ips": [ "2a02:6ea0:e206:3::a03f", @@ -37126,7 +36826,6 @@ "city": "Ashburn VA", "isp": "Tzulo", "hostname": "us246-wireguard", - "udp": true, "wgpubkey": "UKNLCimke54RqRdj6UFyIuBO6nv2VVpDT3vM9N25VyI=", "ips": [ "2607:9000:9000:12::b46f", @@ -37139,7 +36838,6 @@ "city": "Ashburn VA", "isp": "Tzulo", "hostname": "us247-wireguard", - "udp": true, "wgpubkey": "UUCBSYnGq+zEDqA6Wyse3JXv8fZuqKEgavRZTnCXlBg=", "ips": [ "2607:9000:9000:13::b47f", @@ -37152,7 +36850,6 @@ "city": "Ashburn VA", "isp": "Tzulo", "hostname": "us248-wireguard", - "udp": true, "wgpubkey": "0s0NdIzo+pq0OiHstZHqapYsdevGQGopQ5NM54g/9jo=", "ips": [ "2607:9000:9000:14::b48f", @@ -37165,7 +36862,6 @@ "city": "Ashburn VA", "isp": "Tzulo", "hostname": "us249-wireguard", - "udp": true, "wgpubkey": "TvqnL6VkJbz0KrjtHnUYWvA7zRt9ysI64LjTOx2vmm4=", "ips": [ "2607:9000:9000:15::b49f", @@ -37269,7 +36965,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us167-wireguard", - "udp": true, "wgpubkey": "Qnb4cyMyHnrQlXUZ8YHh6UPYktfFaGeimjznPaZCpBY=", "ips": [ "2607:f7a0:1:d::b67f", @@ -37282,7 +36977,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us168-wireguard", - "udp": true, "wgpubkey": "pg4kotnWL9a3BahNti+vFBvficl1o4iZ/+t35pbsPgY=", "ips": [ "2607:f7a0:1:d::b68f", @@ -37295,7 +36989,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us169-wireguard", - "udp": true, "wgpubkey": "clLbW98O5wGCAf8E/H/uAW3n7orhY3bQO+cNxOCedzw=", "ips": [ "2607:f7a0:1:d::b69f", @@ -37308,7 +37001,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us170-wireguard", - "udp": true, "wgpubkey": "KOenblckGztqhbgUGFCagR8qDDtIX2/RIGRDmEBjxGM=", "ips": [ "2607:f7a0:1:d::b70f", @@ -37321,7 +37013,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us171-wireguard", - "udp": true, "wgpubkey": "UpNcVbTDbcOYfcGqDT52M2OR9RPI1HcQFrbXUPEIpT4=", "ips": [ "2607:f7a0:1:d::b71f", @@ -37334,7 +37025,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us172-wireguard", - "udp": true, "wgpubkey": "j2Bac2450sZJyeeBTo8YQkdIFiPwwx8PSPxqkXSDN34=", "ips": [ "2607:f7a0:1:d::b72f", @@ -37347,7 +37037,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us173-wireguard", - "udp": true, "wgpubkey": "o3YKd2Hn//+R8r0vdE2DMSgnLleARo8DvjMM7XjzFQw=", "ips": [ "2607:f7a0:1:d::b73f", @@ -37360,7 +37049,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us174-wireguard", - "udp": true, "wgpubkey": "XgXzdXuzqeMBlM3p56j6kogTPkKYXkBfIM5WkmjEXws=", "ips": [ "2607:f7a0:1:d::b74f", @@ -37373,7 +37061,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us175-wireguard", - "udp": true, "wgpubkey": "dVF4vhm2wGsfNjvX+5CsgTSPp70YjHbtYe+8uhWVzBA=", "ips": [ "2607:f7a0:1:d::b75f", @@ -37386,7 +37073,6 @@ "city": "Atlanta GA", "isp": "100TB", "hostname": "us176-wireguard", - "udp": true, "wgpubkey": "Cx/hhbSGCLO3fwm8vU2c81CRziEU7pF8aEkAcPClG0A=", "ips": [ "2607:f7a0:1:d::b76f", @@ -37399,7 +37085,6 @@ "city": "Atlanta GA", "isp": "Quadranet", "hostname": "us233-wireguard", - "udp": true, "wgpubkey": "6HYOLpMu3qna9C3p+yz9uPXaT+Gdm9htVKrwAY517wQ=", "ips": [ "2607:fcd0:aa80:1302::b33f", @@ -37412,7 +37097,6 @@ "city": "Atlanta GA", "isp": "Quadranet", "hostname": "us234-wireguard", - "udp": true, "wgpubkey": "Mq78MwH+pE/xVjRm6AZVJD3MtCe8QGDomSbQ7bFfxlU=", "ips": [ "2607:fcd0:aa80:1303::b34f", @@ -37425,7 +37109,6 @@ "city": "Atlanta GA", "isp": "Quadranet", "hostname": "us242-wireguard", - "udp": true, "wgpubkey": "FD9SpN5wRFt4Df6wBGx3Afu1suBFqOgo0+vOKFVI3zA=", "ips": [ "2607:fcd0:aa80:1304::b42f", @@ -37438,7 +37121,6 @@ "city": "Atlanta GA", "isp": "Quadranet", "hostname": "us243-wireguard", - "udp": true, "wgpubkey": "7SsdOV15w0po1smXcXYlX9F+bjDHt3mbrZk8zgl0uh4=", "ips": [ "2607:fcd0:aa80:1305::b43f", @@ -37451,7 +37133,6 @@ "city": "Atlanta GA", "isp": "DataPacket", "hostname": "us279-wireguard", - "udp": true, "wgpubkey": "CRhwV0jEBFbRb1BTfgIVFVoK2E8vGutZxGjfoBroKxQ=", "ips": [ "2a02:6ea0:c122:1::b79f", @@ -37464,7 +37145,6 @@ "city": "Atlanta GA", "isp": "DataPacket", "hostname": "us280-wireguard", - "udp": true, "wgpubkey": "ENZxThOv6O4u1i95wzHh94dWrjOWdvxsnm6cxW2D+m8=", "ips": [ "2a02:6ea0:c122:2::b80f", @@ -37542,7 +37222,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us128-wireguard", - "udp": true, "wgpubkey": "6S4lS+ShQOI0BHMunSiuM++0gy+o+jtpHx9pbJ5XeFk=", "ips": [ "2607:9000:0:67::b28f", @@ -37555,7 +37234,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us129-wireguard", - "udp": true, "wgpubkey": "dr0ORuPoV9TYY6G5cM00cOoO72wfUC7Lmni7+Az9m0Y=", "ips": [ "2607:9000:0:68::b29f", @@ -37568,7 +37246,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us130-wireguard", - "udp": true, "wgpubkey": "VY5Dos3WeCyI1Jb8Z+KhB4YlEKZmrQeSNcP0WCrzk2I=", "ips": [ "2607:9000:0:69::b30f", @@ -37581,7 +37258,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us131-wireguard", - "udp": true, "wgpubkey": "Na8m5Z3O6kwtLFPsign+JPlLoFm/Q3eBdIMI08psSzg=", "ips": [ "2607:9000:0:70::b31f", @@ -37594,7 +37270,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us132-wireguard", - "udp": true, "wgpubkey": "X50kEMmdPc50SYWFaDFNOAMzUYnCZv3rxzw2Y6BqOyk=", "ips": [ "2607:9000:0:71::b32f", @@ -37607,7 +37282,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us133-wireguard", - "udp": true, "wgpubkey": "01KgzQY+pT7Q+GPUa1ijj0YgdN5owMaK9ViRZO4dIWo=", "ips": [ "2607:9000:0:72::b33f", @@ -37620,7 +37294,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us18-wireguard", - "udp": true, "wgpubkey": "ol481cXpMyefr/BiXiJZQ5ITTkuazXCDETr4UZaZ8Ww=", "ips": [ "2607:9000:0:61::a02f", @@ -37633,7 +37306,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us22-wireguard", - "udp": true, "wgpubkey": "Fenda7dhi0ZROU5MS7Q3CGojIdSSuY2thWLBOHFIXHQ=", "ips": [ "2607:9000:0:62::a03f", @@ -37646,7 +37318,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us23-wireguard", - "udp": true, "wgpubkey": "3+7obQ7g6LT4uoHOtViDBEddTGWRyrEC2h6s3ELnfic=", "ips": [ "2607:9000:0:63::a04f", @@ -37659,7 +37330,6 @@ "city": "Chicago IL", "isp": "Quadranet", "hostname": "us231-wireguard", - "udp": true, "wgpubkey": "tZzQt3tfqG+yZlvbcqPuUtwM23mKiI7ncNnKV8/+7xM=", "ips": [ "2607:fcd0:bb80:402::b31f", @@ -37672,7 +37342,6 @@ "city": "Chicago IL", "isp": "DataPacket", "hostname": "us263-wireguard", - "udp": true, "wgpubkey": "vVw9pMlo0Yban2uzc5eEE7cVILHhyc2pWk6NE99gJhA=", "ips": [ "2a02:6ea0:c61f::b63f", @@ -37685,7 +37354,6 @@ "city": "Chicago IL", "isp": "DataPacket", "hostname": "us264-wireguard", - "udp": true, "wgpubkey": "clNKbrrlhGDon1Dy250omwFLki/7Jj9EyTs1Wb7WJBM=", "ips": [ "2a02:6ea0:c61f:1::b64f", @@ -37698,7 +37366,6 @@ "city": "Chicago IL", "isp": "DataPacket", "hostname": "us265-wireguard", - "udp": true, "wgpubkey": "E7RPtlWcWKVhvLmqPBLPb8P5mmsf847wpJCcwKwrj2E=", "ips": [ "2a02:6ea0:c61f:2::b65f", @@ -37711,7 +37378,6 @@ "city": "Chicago IL", "isp": "Tzulo", "hostname": "us4-wireguard", - "udp": true, "wgpubkey": "MRZsEblqO4wlq0WPnZgp5X9ex4Z2FHm9bljO/a/Mznk=", "ips": [ "2607:9000:0:60::a01f", @@ -37841,7 +37507,6 @@ "city": "Dallas TX", "isp": "DataPacket", "hostname": "us-dal-wg-401", - "udp": true, "wgpubkey": "xZsnCxFN7pOvx6YlTbi92copdsY5xgekTCp//VUMyhE=", "ips": [ "37.19.200.156", @@ -37854,7 +37519,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us143-wireguard", - "udp": true, "wgpubkey": "ys1/HwvP8ajGFVUooMA4CjE11QGqZUCdcO0uw7pxm3c=", "ips": [ "2001:ac8:9a:5::b43f", @@ -37867,7 +37531,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us144-wireguard", - "udp": true, "wgpubkey": "oLDrbdUAs51AAA9TjFnSvmmfV85dp2ZWFqr29P2HxzM=", "ips": [ "2001:ac8:9a:6::b44f", @@ -37880,7 +37543,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us145-wireguard", - "udp": true, "wgpubkey": "MXSRliYAgPs3/BKO0pxLCDz4wTCQ4cafj02J1LriBj4=", "ips": [ "2001:ac8:9a:7::b45f", @@ -37893,7 +37555,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us146-wireguard", - "udp": true, "wgpubkey": "1QfJqj4XweHehHtQyS3kPibLXVIB8gB72ECLdxrgfWM=", "ips": [ "2001:ac8:9a:8::b46f", @@ -37906,7 +37567,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us147-wireguard", - "udp": true, "wgpubkey": "Q/slQ6Agjqp6iNvfbTGyz7CXv/LgsK4XnJil7UE60ng=", "ips": [ "2001:ac8:9a:9::b47f", @@ -37919,7 +37579,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us148-wireguard", - "udp": true, "wgpubkey": "yK1wfMTkMbksuR7+rlEbkq6mk5wsdyIJYSD9fB/htnA=", "ips": [ "2001:ac8:9a:11::b48f", @@ -37932,7 +37591,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us149-wireguard", - "udp": true, "wgpubkey": "vh34NFVrwEKbmX+Rqy5xKyQ81unOWLb0DpYXSGHLxyk=", "ips": [ "2001:ac8:9a:12::b49f", @@ -37945,7 +37603,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us150-wireguard", - "udp": true, "wgpubkey": "bigXstWXYiY7BznqpvHr40hyhcAXCyDsajLJ+HxRTk8=", "ips": [ "2001:ac8:9a:13::b50f", @@ -37958,7 +37615,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us151-wireguard", - "udp": true, "wgpubkey": "RRQAnqeXwqxhltKBEFWdg9nwoPraRMvr7LIE91kg+zg=", "ips": [ "2001:ac8:9a:14::b51f", @@ -37971,7 +37627,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us152-wireguard", - "udp": true, "wgpubkey": "fymKfaPctNpWCfC4xGl9UjZQ4bvEXT6GTK1+7DtVYBk=", "ips": [ "2001:ac8:9a:15::b52f", @@ -37984,7 +37639,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us153-wireguard", - "udp": true, "wgpubkey": "GYU0qZ/in7Bw9mxgQw1z5hAuTbXF8Tt8rGyAD7rA0Ho=", "ips": [ "2001:ac8:9a:16::b53f", @@ -37997,7 +37651,6 @@ "city": "Dallas TX", "isp": "M247", "hostname": "us154-wireguard", - "udp": true, "wgpubkey": "AFmZ9bQhiP4yCbAddJTpxbzF/IWlNgjrzN0OqqCE6A8=", "ips": [ "2001:ac8:9a:17::b54f", @@ -38010,7 +37663,6 @@ "city": "Dallas TX", "isp": "Quadranet", "hostname": "us235-wireguard", - "udp": true, "wgpubkey": "/eAFrbWF72bLtQC0u0p8q/NXYq6dwrst4ZXuSx9HXHE=", "ips": [ "2607:fcd0:da80:1803::b35f", @@ -38023,7 +37675,6 @@ "city": "Dallas TX", "isp": "Quadranet", "hostname": "us236-wireguard", - "udp": true, "wgpubkey": "H7CKyeh+CpwMJyeY5s203PUEYqqTiZyp7ukdfczWKj8=", "ips": [ "2607:fcd0:da80:1804::b36f", @@ -38036,7 +37687,6 @@ "city": "Dallas TX", "isp": "Quadranet", "hostname": "us240-wireguard", - "udp": true, "wgpubkey": "Z3z461A/wSb1i41+Maz14YKfLezJA7BYk1kkUj6Gpno=", "ips": [ "2607:fcd0:da80:1801::c40f", @@ -38049,7 +37699,6 @@ "city": "Dallas TX", "isp": "DataPacket", "hostname": "us270-wireguard", - "udp": true, "wgpubkey": "rzv9QSk5+vKHQ5zusPtxCS8wcrntkkQSml+7nJJJ1h8=", "ips": [ "37.19.200.130", @@ -38062,7 +37711,6 @@ "city": "Dallas TX", "isp": "DataPacket", "hostname": "us271-wireguard", - "udp": true, "wgpubkey": "sPi2QiA6l7mamZYtgLnEgPIQ6g8cqEpx4SBimVVgPnA=", "ips": [ "37.19.200.143", @@ -38075,7 +37723,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us30-wireguard", - "udp": true, "wgpubkey": "RW+wwTv4BqRNbHPZFcIwl74f9kuRQlFLxnaocpMyKgw=", "ips": [ "2606:2e00:8007:1::a30f", @@ -38088,7 +37735,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us31-wireguard", - "udp": true, "wgpubkey": "jByGGMuJ53aax6Kvo5CTL7Bz2e9ZglFgHbC6IOoux2o=", "ips": [ "2606:2e00:8007:1::a31f", @@ -38101,7 +37747,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us32-wireguard", - "udp": true, "wgpubkey": "jHxY2OKpxjqAwWH4r1Pb2K6xDUDt087ivxpM1KpE0Ec=", "ips": [ "2606:2e00:8007:1::a32f", @@ -38114,7 +37759,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us33-wireguard", - "udp": true, "wgpubkey": "d0QX/luq22c8W+SEeegfI02NL1gCg7F6HSZFiDZK4k8=", "ips": [ "2606:2e00:8007:1::a33f", @@ -38127,7 +37771,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us34-wireguard", - "udp": true, "wgpubkey": "GCfWfE0241Hj8oSZIDQzk9VsLVC5VQ3MgFAEdhepNyA=", "ips": [ "2606:2e00:8007:1::a34f", @@ -38140,7 +37783,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us35-wireguard", - "udp": true, "wgpubkey": "sUve70TE2F3AaSGRPjN5aYr4um9OlKlIbnDw/2Ab8xg=", "ips": [ "2606:2e00:8007:1::a35f", @@ -38153,7 +37795,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us36-wireguard", - "udp": true, "wgpubkey": "fb9f0n73/qk9wvQQ9ufo7EZmeIH9bxmjETLdetuMyz8=", "ips": [ "2606:2e00:8007:1::a36f", @@ -38166,7 +37807,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us37-wireguard", - "udp": true, "wgpubkey": "smo7KmPLfKStrAlIwU5Vmr2aCD/UNUfR6LrUAraY3jY=", "ips": [ "2606:2e00:8007:1::a37f", @@ -38179,7 +37819,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us38-wireguard", - "udp": true, "wgpubkey": "EWuW/w7GpnxKdl0sr+dfxJ3DTxjMN6JWs/GR6OIzgB4=", "ips": [ "2606:2e00:8007:1::a38f", @@ -38192,7 +37831,6 @@ "city": "Dallas TX", "isp": "100TB", "hostname": "us39-wireguard", - "udp": true, "wgpubkey": "fjO/un6d9DFtxjhwbe8cMohORIgbPFN0WgLw/LdHoRg=", "ips": [ "2606:2e00:8007:1::a39f", @@ -38244,7 +37882,6 @@ "city": "Denver CO", "isp": "Tzulo", "hostname": "us10-wireguard", - "udp": true, "wgpubkey": "dEtwYUFPV0pF7MWJpzo+AixB2CdEIXxBQcQg1ljQkVo=", "ips": [ "2607:9000:2000:19::a10f", @@ -38257,7 +37894,6 @@ "city": "Denver CO", "isp": "Tzulo", "hostname": "us11-wireguard", - "udp": true, "wgpubkey": "/oMM8Z3svzY5wteCZPL111XjfaJvek/8s+PkUmvDIHs=", "ips": [ "2607:9000:2000:20::a11f", @@ -38270,7 +37906,6 @@ "city": "Denver CO", "isp": "Tzulo", "hostname": "us12-wireguard", - "udp": true, "wgpubkey": "fBVnH5KCfh1tCYzRlMusbUDLK1IswpE984JCLY3jQCA=", "ips": [ "2607:9000:2000:25::a12f", @@ -38283,7 +37918,6 @@ "city": "Denver CO", "isp": "DataPacket", "hostname": "us257-wireguard", - "udp": true, "wgpubkey": "ELo9g48V0FSx8fgpAPKcSlRf1my+vagqI9J26IRLIC4=", "ips": [ "37.19.210.1", @@ -38296,7 +37930,6 @@ "city": "Denver CO", "isp": "DataPacket", "hostname": "us258-wireguard", - "udp": true, "wgpubkey": "8HqjKTfSI9OZ//G9yekEaHrx+eUHBuUMpIPaKWaElBk=", "ips": [ "37.19.210.14", @@ -38309,7 +37942,6 @@ "city": "Denver CO", "isp": "DataPacket", "hostname": "us259-wireguard", - "udp": true, "wgpubkey": "9BP/NfyAc1gljj86BXgu0/DcP5nK9OismCKxX70kO2k=", "ips": [ "37.19.210.27", @@ -38322,7 +37954,6 @@ "city": "Denver CO", "isp": "Tzulo", "hostname": "us44-wireguard", - "udp": true, "wgpubkey": "Cbcd0TNfEsI45BFzJO8mK9uF2mjGSiXPfF+EwOQSy0Y=", "ips": [ "2607:9000:2000:16::a44f", @@ -38335,7 +37966,6 @@ "city": "Denver CO", "isp": "Tzulo", "hostname": "us45-wireguard", - "udp": true, "wgpubkey": "9xreD+7LFgwE74vlpqDOqJzXg5BCCi7Qk4QiAzAMyXs=", "ips": [ "2607:9000:2000:15::a45f", @@ -38348,7 +37978,6 @@ "city": "Denver CO", "isp": "Tzulo", "hostname": "us46-wireguard", - "udp": true, "wgpubkey": "49D0pBK50sOxNXURjkoAQHZYDGmhGXWcSx9y7p7BWyU=", "ips": [ "2607:9000:2000:14::a46f", @@ -38361,7 +37990,6 @@ "city": "Denver CO", "isp": "Tzulo", "hostname": "us47-wireguard", - "udp": true, "wgpubkey": "Hp5qr3VmbPdD6vV8N1RPxasaES6RxRkMAnPr30bUdlw=", "ips": [ "2607:9000:2000:13::a47f", @@ -38374,7 +38002,6 @@ "city": "Houston TX", "isp": "DataPacket", "hostname": "us253-wireguard", - "udp": true, "wgpubkey": "iBNkQJyjw1iTZ9P7XxODXQgUXLqfGTVRjos3eQ+6jGk=", "ips": [ "37.19.221.130", @@ -38387,7 +38014,6 @@ "city": "Houston TX", "isp": "DataPacket", "hostname": "us254-wireguard", - "udp": true, "wgpubkey": "kpb/k07BetSfEwh9pboHvF5q/1uOgbJzHixvCaCM0D4=", "ips": [ "37.19.221.143", @@ -38400,7 +38026,6 @@ "city": "Houston TX", "isp": "DataPacket", "hostname": "us255-wireguard", - "udp": true, "wgpubkey": "arh7i4ptcw/4pzHLSJgfH5B5GI7c4J8yaZ3UJbch3X8=", "ips": [ "37.19.221.156", @@ -38413,7 +38038,6 @@ "city": "Houston TX", "isp": "DataPacket", "hostname": "us256-wireguard", - "udp": true, "wgpubkey": "STIUJn8A0SY8caTGd6rZFt2GLO79iZVY6HCYJ+kYMWw=", "ips": [ "37.19.221.169", @@ -38634,7 +38258,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us-lax-wg-001", - "udp": true, "wgpubkey": "Ev1YD8MjlDPEfx2I1koG82QvUKGdttym/Sxu0+Udu1g=", "ips": [ "2a0d:5600:8:e::a02f", @@ -38647,7 +38270,6 @@ "city": "Los Angeles CA", "isp": "Quadranet", "hostname": "us229-wireguard", - "udp": true, "wgpubkey": "dvuppQNVY4DsoqMbPyLmdODBP27uuRPvmVCrwOC5GF0=", "ips": [ "2607:fcd0:100:7c01::b29f", @@ -38660,7 +38282,6 @@ "city": "Los Angeles CA", "isp": "Quadranet", "hostname": "us230-wireguard", - "udp": true, "wgpubkey": "boR0Y8kuqvEtgmr8xHRfHYGBT5YK8KBCImqgzXd0YT4=", "ips": [ "2607:fcd0:100:7c02::b30f", @@ -38673,7 +38294,6 @@ "city": "Los Angeles CA", "isp": "Quadranet", "hostname": "us239-wireguard", - "udp": true, "wgpubkey": "RF9UyTkLz+dki4rbkZ+dBz+PWFbxdjFMnr8WW8avFUk=", "ips": [ "2607:fcd0:100:7c03::c39f", @@ -38686,7 +38306,6 @@ "city": "Los Angeles CA", "isp": "Tzulo", "hostname": "us48-wireguard", - "udp": true, "wgpubkey": "qzi6yOzbLmoJXYYLzijkA5GO9lFhcEwglxI5qi4NpCI=", "ips": [ "2607:9000:3000:16::a48f", @@ -38699,7 +38318,6 @@ "city": "Los Angeles CA", "isp": "Tzulo", "hostname": "us49-wireguard", - "udp": true, "wgpubkey": "BmtJaMoC5AeSGuDIAmySreki0yix5Y2upboTeMkzN0Q=", "ips": [ "2607:9000:3000:15::a49f", @@ -38712,7 +38330,6 @@ "city": "Los Angeles CA", "isp": "Tzulo", "hostname": "us50-wireguard", - "udp": true, "wgpubkey": "Yonaeu428pg8Z2YO0hCddNaxyxzHQkRlXJoJNkQ+vQk=", "ips": [ "2607:9000:3000:14::a50f", @@ -38725,7 +38342,6 @@ "city": "Los Angeles CA", "isp": "Tzulo", "hostname": "us51-wireguard", - "udp": true, "wgpubkey": "6aUVzlDMGDsP8F3lUO8FLMMKH1ebuBgpclmL3eZPC0k=", "ips": [ "2607:9000:3000:13::a51f", @@ -38738,7 +38354,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us52-wireguard", - "udp": true, "wgpubkey": "1NSZOTeVWspGU54LHPUNcSTadeHGKCppQK7c8u0h7hc=", "ips": [ "2a0d:5600:8:f::a52f", @@ -38751,7 +38366,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us53-wireguard", - "udp": true, "wgpubkey": "OkkaubPQ9V9by5ydXjTt4OiIQky8XdF4BtFx5RTgN3o=", "ips": [ "2a0d:5600:8:f::a53f", @@ -38764,7 +38378,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us54-wireguard", - "udp": true, "wgpubkey": "md75wPaX9e+FVMm+ofn5L/6m/WSn/wgLX7OU5e+la0Y=", "ips": [ "2a0d:5600:8:f::a54f", @@ -38777,7 +38390,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us55-wireguard", - "udp": true, "wgpubkey": "IWQ4E6ISyL/LwP8I6g+KDH5OS6YrIiyRoIJiNbTbBDw=", "ips": [ "2a0d:5600:8:1e::a55f", @@ -38790,7 +38402,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us56-wireguard", - "udp": true, "wgpubkey": "cwOpOvSrmQ2gTYT+Ooaa465xIu70tKL8Sk3ZmeK3uWE=", "ips": [ "2a0d:5600:8:1e::a56f", @@ -38803,7 +38414,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us57-wireguard", - "udp": true, "wgpubkey": "UWD9qoCkmI+lMSwb9zSEvQSBOQUmdzek62Fv/4rm1gA=", "ips": [ "2a0d:5600:8:1e::a57f", @@ -38816,7 +38426,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us58-wireguard", - "udp": true, "wgpubkey": "VPjm8+vXRVDw2zJxokcL9D75IdmW7wCkF2KGYCXF9wQ=", "ips": [ "2a0d:5600:8:1f::a58f", @@ -38829,7 +38438,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us59-wireguard", - "udp": true, "wgpubkey": "wK/bz3FXa2acfp115kTuoojgBeO2XxUkQoqcAxycfgA=", "ips": [ "2a0d:5600:8:1f::a59f", @@ -38842,7 +38450,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us60-wireguard", - "udp": true, "wgpubkey": "i71i1n8AHGHkubR/kXyPTHs1r/skXflsUsRBTyTM7kI=", "ips": [ "2a0d:5600:8:21::a60f", @@ -38855,7 +38462,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us61-wireguard", - "udp": true, "wgpubkey": "IO/0guK2s4M67Coqm8X7F1B6eKU5/ODiIT1m/htd6z8=", "ips": [ "2a0d:5600:8:21::a61f", @@ -38868,7 +38474,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us62-wireguard", - "udp": true, "wgpubkey": "kybE86Vw+jXYGVOdvAI5bAfV3pWI+fJg3Se/Mps5kw8=", "ips": [ "2a0d:5600:8:21::a62f", @@ -38881,7 +38486,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us63-wireguard", - "udp": true, "wgpubkey": "OHVBM9rbVR9JBDeZV/s+3ddSYrVZV1zEn+CuEUQD3Ew=", "ips": [ "2a0d:5600:8:28::a63f", @@ -38894,7 +38498,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us64-wireguard", - "udp": true, "wgpubkey": "ssSNWnB928CLCXsI7RW41rlT2EPtwojqP6Z1WkwU2lw=", "ips": [ "2a0d:5600:8:28::a64f", @@ -38907,7 +38510,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us65-wireguard", - "udp": true, "wgpubkey": "ibHB8CwfE4m7jTmR02U+7pg7PcxZMmUgp1KbAgIGWAo=", "ips": [ "2a0d:5600:8:28::a65f", @@ -38920,7 +38522,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us66-wireguard", - "udp": true, "wgpubkey": "Hmdgk+/yokh0ay7WFEatRqkXE/qogxBKo/U7Dys+WVs=", "ips": [ "2a0d:5600:8:29::a66f", @@ -38933,7 +38534,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us67-wireguard", - "udp": true, "wgpubkey": "FZRPPizkxi7sQ58aj66KP5D5lP5pwEB37OixpD5CpmI=", "ips": [ "2a0d:5600:8:29::a67f", @@ -38946,7 +38546,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us68-wireguard", - "udp": true, "wgpubkey": "xI30tHqtyxishhqVldwGLOV9IZSSj9Z/98WPyuU4di8=", "ips": [ "2a0d:5600:8:29::a68f", @@ -38959,7 +38558,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us69-wireguard", - "udp": true, "wgpubkey": "BbmBfc0iCOC1tG1k/RYFKiSKU/Wx8VmhRDQ5yK4MJDg=", "ips": [ "2a0d:5600:8:3f::a69f", @@ -38972,7 +38570,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us70-wireguard", - "udp": true, "wgpubkey": "FMV/t0/949sbLAUVqbgdEx+JIMsTHvhnCRQdxn2Kv0o=", "ips": [ "2a0d:5600:8:3f::a70f", @@ -38985,7 +38582,6 @@ "city": "Los Angeles CA", "isp": "M247", "hostname": "us71-wireguard", - "udp": true, "wgpubkey": "Mto7xFQpCJxylTDf/hMGV8d+eO6/28hXrBLgmMWnaVo=", "ips": [ "2a0d:5600:8:3f::a71f", @@ -39076,7 +38672,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us155-wireguard", - "udp": true, "wgpubkey": "c2ifgyT1M41zbFEaSCbeLY033u/RurG5eJKYHZOMrBE=", "ips": [ "2a0d:5600:6:37::b55f", @@ -39089,7 +38684,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us156-wireguard", - "udp": true, "wgpubkey": "GMBXSH/CBSxkz1TptnYTwQO/ilEXherAicOaD/O/p0c=", "ips": [ "2a0d:5600:6:38::b56f", @@ -39102,7 +38696,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us157-wireguard", - "udp": true, "wgpubkey": "EhxJ+GqKZq3CCU4cd15A7TelT2ejWvsJuNI8NqCB+io=", "ips": [ "2a0d:5600:6:39::b57f", @@ -39115,7 +38708,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us158-wireguard", - "udp": true, "wgpubkey": "sMDULNyxlCjepgfB83cw2fYQIYT96jnrs22mtYevfCE=", "ips": [ "2a0d:5600:6:40::b58f", @@ -39128,7 +38720,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us159-wireguard", - "udp": true, "wgpubkey": "Xottq8FZOISCWMfJNapyVEA3dvKpmZ00L6wPeljGOWc=", "ips": [ "2a0d:5600:6:41::b59f", @@ -39141,7 +38732,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us160-wireguard", - "udp": true, "wgpubkey": "jxKlvTobgX32KYjSuLYb1Fm7gU1skslm3DatfxQCOl4=", "ips": [ "2a0d:5600:6:42::b60f", @@ -39154,7 +38744,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us161-wireguard", - "udp": true, "wgpubkey": "SYM77EPyWfOIK9CSJyuZ4mnGf17NLmj1i8VhWRbgPCs=", "ips": [ "2a0d:5600:6:43::b61f", @@ -39167,7 +38756,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us162-wireguard", - "udp": true, "wgpubkey": "VM0nmizpRkwPOKmIzgBGm0fbfZfMkZa6q/YvUtWz8V4=", "ips": [ "2a0d:5600:6:44::b62f", @@ -39180,7 +38768,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us163-wireguard", - "udp": true, "wgpubkey": "CIPpa9aYSN+KdwdLpIOxBP0egzdUFzDGUAmwzGZGoGY=", "ips": [ "2a0d:5600:6:45::b63f", @@ -39193,7 +38780,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us164-wireguard", - "udp": true, "wgpubkey": "iUpEL5CW9iTVR+NPWnd4DUAD5YaT6x1fKJl8uCa/xhE=", "ips": [ "2a0d:5600:6:46::b64f", @@ -39206,7 +38792,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us165-wireguard", - "udp": true, "wgpubkey": "AhxM2YMzknN6/yeIsNluflHQYyGPVHX+RAztHHzwek0=", "ips": [ "2a0d:5600:6:47::b65f", @@ -39219,7 +38804,6 @@ "city": "Miami FL", "isp": "M247", "hostname": "us166-wireguard", - "udp": true, "wgpubkey": "6n/1JcWj8udnJkPvrbpbY6sp6v/HPHSXsVNaTxZ3A0E=", "ips": [ "2a0d:5600:6:48::b66f", @@ -39232,7 +38816,6 @@ "city": "Miami FL", "isp": "Quadranet", "hostname": "us225-wireguard", - "udp": true, "wgpubkey": "6q3NHk1BBbh70HkONto2l4kCVY7z2KPi0Ysgb+ukKTg=", "ips": [ "2607:ff48:aa81:2602::b25f", @@ -39245,7 +38828,6 @@ "city": "Miami FL", "isp": "Quadranet", "hostname": "us226-wireguard", - "udp": true, "wgpubkey": "8SQ8EvKLNVv5xtTvwNOE5p5T8XwhQgWYsI4jRJ8zkRE=", "ips": [ "2607:ff48:aa81:2603::b26f", @@ -39258,7 +38840,6 @@ "city": "Miami FL", "isp": "DataPacket", "hostname": "us260-wireguard", - "udp": true, "wgpubkey": "WS/jfv+g8NYiyeinysCSEI4NI19CDKYn3jNKyrzD3WM=", "ips": [ "2a02:6ea0:cc1f::b60f", @@ -39271,7 +38852,6 @@ "city": "Miami FL", "isp": "DataPacket", "hostname": "us261-wireguard", - "udp": true, "wgpubkey": "bPWuD5x0UiL5ygkIY7g0bBlYlF93HPGyao8oZC+rpV4=", "ips": [ "2a02:6ea0:cc1f:1::b61f", @@ -39557,7 +39137,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us101-wireguard", - "udp": true, "wgpubkey": "UJMSoBnY0wPwiv9vVMJzQJ7OVBWYu/A/Kb1dP3CHk2M=", "ips": [ "2a0d:5600:24:aa5::b01f", @@ -39570,7 +39149,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us102-wireguard", - "udp": true, "wgpubkey": "iyizPwlAPqocE5AN8vMpTEaM1AHjWdYMjucq/vWuNlM=", "ips": [ "2a0d:5600:24:aa6::b02f", @@ -39583,7 +39161,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us103-wireguard", - "udp": true, "wgpubkey": "Xn6infIF/0BCHjlHLHLQP4EwQ2U4L3tlTREVCbmrTkU=", "ips": [ "2a0d:5600:24:aa7::b03f", @@ -39596,7 +39173,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us104-wireguard", - "udp": true, "wgpubkey": "M+9Hzk0/OZXjrcrh43cMfoQoPR0gVdfNkzFL3DxafEY=", "ips": [ "2a0d:5600:24:aa8::b04f", @@ -39609,7 +39185,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us105-wireguard", - "udp": true, "wgpubkey": "WiE50yOURC8fidt45l64WcGCbUshydXK5eKodwq2n3U=", "ips": [ "2a0d:5600:24:aa9::b05f", @@ -39622,7 +39197,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us106-wireguard", - "udp": true, "wgpubkey": "wkO/RF0VeIw4D2ipzo+AB92lHuVHiYZC9b6hIg3jSFY=", "ips": [ "2a0d:5600:24:aaa::b06f", @@ -39635,7 +39209,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us107-wireguard", - "udp": true, "wgpubkey": "NS1nBz5b5vY0kX8lhws8ThLL5a2YKf/imbf3DwAeOCQ=", "ips": [ "2a0d:5600:24:aab::b07f", @@ -39648,7 +39221,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us108-wireguard", - "udp": true, "wgpubkey": "amrczbHyG3drrWZWNmqTQgvYgai/b+S0koW8gw3T30I=", "ips": [ "2a0d:5600:24:aac::b08f", @@ -39661,7 +39233,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us110-wireguard", - "udp": true, "wgpubkey": "lUVsbRT2Hr5TrBpJ10A+5CELy3vBuQD6T9U8ugGjjxg=", "ips": [ "2a0d:5600:24:aae::b10f", @@ -39674,7 +39245,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us111-wireguard", - "udp": true, "wgpubkey": "D/RNeclyNIc/7MYYiPVem8b7fq6dl7CBXWKiGuxeI24=", "ips": [ "2a0d:5600:24:aaf::b11f", @@ -39687,7 +39257,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us112-wireguard", - "udp": true, "wgpubkey": "hlORU2FfEiLVKZ6l+Y+xTl1jb2RJ44Zkx0Yo1fu25F0=", "ips": [ "2a0d:5600:24:ab1::b12f", @@ -39700,7 +39269,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us113-wireguard", - "udp": true, "wgpubkey": "j1+O4eNoLsYijHy0chsS3JooJ5kIBSb4eiJnYjRfBSk=", "ips": [ "2a0d:5600:24:ab2::b13f", @@ -39713,7 +39281,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us114-wireguard", - "udp": true, "wgpubkey": "MiLbvPXMv8Wj6P28gibGTyqHDPMHRnDSQud2/w/EpF4=", "ips": [ "2a0d:5600:24:ab3::b14f", @@ -39726,7 +39293,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us115-wireguard", - "udp": true, "wgpubkey": "AhBAK9BM0hsgwTO87ym060O+MUJRMGkzRQh7NbmVk10=", "ips": [ "2a0d:5600:24:ab4::b15f", @@ -39739,7 +39305,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us116-wireguard", - "udp": true, "wgpubkey": "vSAviJq8DWTRqHcpXWgyEP12mG99IW76SvnPPI9scxY=", "ips": [ "2a0d:5600:24:ab5::b16f", @@ -39752,7 +39317,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us117-wireguard", - "udp": true, "wgpubkey": "mvbH1lEY18SLbkh1yOoKGKJr7uxKEl8G92bxkmyulCg=", "ips": [ "2a0d:5600:24:ab6::b17f", @@ -39765,7 +39329,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us118-wireguard", - "udp": true, "wgpubkey": "3z24/Gh6esJfpndNxnUmexwjsINfIQOPH+NDPNKemVs=", "ips": [ "2a0d:5600:24:ab7::b18f", @@ -39778,7 +39341,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us119-wireguard", - "udp": true, "wgpubkey": "d7//MrBJQIozdjePL7P3QnzqfcLfDnwW0UxvcrnA9Ws=", "ips": [ "2a0d:5600:24:ab8::b19f", @@ -39791,7 +39353,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us120-wireguard", - "udp": true, "wgpubkey": "MvddXAa3aXgVT54Jc9sT9YFw/ZCEh8VWZkJbxnadRQY=", "ips": [ "2a0d:5600:24:ab9::b20f", @@ -39804,7 +39365,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us121-wireguard", - "udp": true, "wgpubkey": "PlgdYkuyERUOOBUBlBFt+S/FyvU1YOTsQWobC3Fl70A=", "ips": [ "2a0d:5600:24:aba::b21f", @@ -39817,7 +39377,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us122-wireguard", - "udp": true, "wgpubkey": "rkG5usMK3vr7PvwV7Cco3+EJ2PDaOTSw67vB72tc9ig=", "ips": [ "2a0d:5600:24:abb::b22f", @@ -39830,7 +39389,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us123-wireguard", - "udp": true, "wgpubkey": "CgjcZsG3LQxmfEQVuzHpLKAetyB/AGiyT/O5UuO+KgE=", "ips": [ "2a0d:5600:24:abc::b23f", @@ -39843,7 +39401,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us124-wireguard", - "udp": true, "wgpubkey": "45hQDC8nOLC0Aa1utKNJTETNanbEzpvlJhdQ/jjuQTI=", "ips": [ "2a0d:5600:24:abd::b24f", @@ -39856,7 +39413,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us125-wireguard", - "udp": true, "wgpubkey": "6pO+0KxNHjzB5XuW4U0NYiuVSuZJ0cX50Fav38BLFAo=", "ips": [ "2a0d:5600:24:abe::b25f", @@ -39869,7 +39425,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us126-wireguard", - "udp": true, "wgpubkey": "8gzcDfKpG+MxQbz7waFfo9oQstqppes8ebTrEYrFST8=", "ips": [ "2a0d:5600:24:abf::b26f", @@ -39882,7 +39437,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us127-wireguard", - "udp": true, "wgpubkey": "P/oO8/UBL5rUEUt5CZieP9khFOJaUV6hwRm42biy2TI=", "ips": [ "2a0d:5600:24:ac1::b27f", @@ -39895,7 +39449,6 @@ "city": "New York NY", "isp": "DataPacket", "hostname": "us250-wireguard", - "udp": true, "wgpubkey": "jV1WhbAYRSmfEUwVRuT8AlOT5HpnW7raL40D4Cs46Wc=", "ips": [ "2a02:6ea0:c43f::b50f", @@ -39908,7 +39461,6 @@ "city": "New York NY", "isp": "DataPacket", "hostname": "us251-wireguard", - "udp": true, "wgpubkey": "POrL2QOU6Kl37YPIfzFSJ1leLoBJxNhu93p6AEZ5WSs=", "ips": [ "2a02:6ea0:c43f:1::b51f", @@ -39921,7 +39473,6 @@ "city": "New York NY", "isp": "DataPacket", "hostname": "us252-wireguard", - "udp": true, "wgpubkey": "eR7g2lqwupyyhHWEIV67k/SEHRF2AtQ1bIac6m8ClmY=", "ips": [ "2a02:6ea0:c43f:2::b52f", @@ -39934,7 +39485,6 @@ "city": "New York NY", "isp": "Tzulo", "hostname": "us276-wireguard", - "udp": true, "wgpubkey": "4oR0oc3cyktCoQ1eygZ/EZeCNeI6eQnQJNRuBmRne2Q=", "ips": [ "2607:9000:a000:12::b76f", @@ -39947,7 +39497,6 @@ "city": "New York NY", "isp": "Tzulo", "hostname": "us277-wireguard", - "udp": true, "wgpubkey": "/o79urfCcNSCTD4OCPNxn6qoWMchQ5Za6p6hf5cxmwE=", "ips": [ "2607:9000:a000:13::b77f", @@ -39960,7 +39509,6 @@ "city": "New York NY", "isp": "Tzulo", "hostname": "us278-wireguard", - "udp": true, "wgpubkey": "7ie5CZC8B4vT6ofd468P6aCy2DTXctFW8zwmmkQnQnY=", "ips": [ "2607:9000:a000:14::b78f", @@ -39973,7 +39521,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us72-wireguard", - "udp": true, "wgpubkey": "+/HYwELAaww6XTtPmvf3Hr8NqLIr69YNUpAMBvWJiGw=", "ips": [ "2a0d:5600:24:a7b::a72f", @@ -39986,7 +39533,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us73-wireguard", - "udp": true, "wgpubkey": "34rw+ei9qLjTOTOHCoz/3pG4XaMfmuRwYajuG/7Tsyc=", "ips": [ "2a0d:5600:24:a7c::a73f", @@ -39999,7 +39545,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us74-wireguard", - "udp": true, "wgpubkey": "3KoxhZNXXuXnVt0T7Ka4XnSbIRTZnh+DFq+eI05yVHo=", "ips": [ "2a0d:5600:24:a7d::a74f", @@ -40012,7 +39557,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us75-wireguard", - "udp": true, "wgpubkey": "U06dpwDLyRfe+H0p80SjrdlKEVraqEsHFsAVUd/Chls=", "ips": [ "2a0d:5600:24:a7e::a75f", @@ -40025,7 +39569,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us76-wireguard", - "udp": true, "wgpubkey": "cVDIYPzNChIeANp+0jE12kWM5Ga1MbmNErT1Pmaf12A=", "ips": [ "2a0d:5600:24:a7f::a76f", @@ -40038,7 +39581,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us77-wireguard", - "udp": true, "wgpubkey": "mqSfg28JSJwUuqvOBKbCwPp2E7zgNi46kuxKj5FzDUY=", "ips": [ "2a0d:5600:24:a80::a77f", @@ -40051,7 +39593,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us78-wireguard", - "udp": true, "wgpubkey": "9BXmWC1UkQMnzS71WXVxfBW5O+AIFTXRCx31SpCvhSg=", "ips": [ "2a0d:5600:24:a81::a78f", @@ -40064,7 +39605,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us79-wireguard", - "udp": true, "wgpubkey": "oofWbWXoLbEzmnsQX6ZYdgYNzSjkBg58zpAdIBUlUAk=", "ips": [ "2a0d:5600:24:a82::a79f", @@ -40077,7 +39617,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us80-wireguard", - "udp": true, "wgpubkey": "t/VsxDKzPfh3H3XG3ckVr1e8sJ3PuuD0YxdfFtyKjRM=", "ips": [ "2a0d:5600:24:a83::a80f", @@ -40090,7 +39629,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us81-wireguard", - "udp": true, "wgpubkey": "kxS/gAMkGwpR/F7J4L0JCjZEzR+rq0i2lqK6wWnZLAE=", "ips": [ "2a0d:5600:24:a84::a81f", @@ -40103,7 +39641,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us82-wireguard", - "udp": true, "wgpubkey": "qS+FVzRxR0VXljM2aguVXLq494VRuS5sqcE3/DscJRU=", "ips": [ "2a0d:5600:24:a85::a82f", @@ -40116,7 +39653,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us83-wireguard", - "udp": true, "wgpubkey": "7TLCd9zMWxlB2geyeaMDVRJsdPtTvXEApADfoCA3zCY=", "ips": [ "2a0d:5600:24:a86::a83f", @@ -40129,7 +39665,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us84-wireguard", - "udp": true, "wgpubkey": "rFV47I3lu0zlLqJBfV+0Zq8Kt8ytnFVWA02lOq5IyFw=", "ips": [ "2a0d:5600:24:a87::a84f", @@ -40142,7 +39677,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us85-wireguard", - "udp": true, "wgpubkey": "9iNdLMieZ5V2Hv4Dmm4xFqMAbtjnBReEe4iy8A5WRHo=", "ips": [ "2a0d:5600:24:a88::a85f", @@ -40155,7 +39689,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us86-wireguard", - "udp": true, "wgpubkey": "5FXy0/tMXj/TYKVj9PHJ42lCpbWP4qLAOpLZa6FnsRw=", "ips": [ "2a0d:5600:24:a89::a86f", @@ -40168,7 +39701,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us87-wireguard", - "udp": true, "wgpubkey": "QRp4cLDKwbJbondYIi0mPlGmBxI8NV5geXBy4EdKhEM=", "ips": [ "2a0d:5600:24:a8a::a87f", @@ -40181,7 +39713,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us88-wireguard", - "udp": true, "wgpubkey": "ru9aQRxYBkK5pWvNkdFlCR8VMPSqcEENBPGkIGEN0XU=", "ips": [ "2a0d:5600:24:a8b::a88f", @@ -40194,7 +39725,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us89-wireguard", - "udp": true, "wgpubkey": "u5NkFaOlhZX9AtjBVb4hTYqwgmTToernOrCc2D7B7hk=", "ips": [ "2a0d:5600:24:a8c::a89f", @@ -40207,7 +39737,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us90-wireguard", - "udp": true, "wgpubkey": "0OcKhUBT4o0h0j5vEro0/3vK8Ezw1R9B1eXiU9CKFBo=", "ips": [ "2a0d:5600:24:a8d::a90f", @@ -40220,7 +39749,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us91-wireguard", - "udp": true, "wgpubkey": "bOOP5lIjqCdDx5t+mP/kEcSbHS4cZqE0rMlBI178lyY=", "ips": [ "2a0d:5600:24:a8e::a91f", @@ -40233,7 +39761,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us92-wireguard", - "udp": true, "wgpubkey": "JQo2XN042FQbMrpvRMpEoA+CpqhRESeSWjkNB+k41Ds=", "ips": [ "2a0d:5600:24:a8f::a92f", @@ -40246,7 +39773,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us93-wireguard", - "udp": true, "wgpubkey": "g7+2YdOdlhe24m7B9lizdUBFCYw+bJ1CWFd9eVt7+XA=", "ips": [ "2a0d:5600:24:a90::a93f", @@ -40259,7 +39785,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us94-wireguard", - "udp": true, "wgpubkey": "oKKbNl27XkJvtyQx8ikzH0heoFJ+INjQeg4JzasBWTA=", "ips": [ "2a0d:5600:24:a91::a94f", @@ -40272,7 +39797,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us95-wireguard", - "udp": true, "wgpubkey": "GcnYpduxlDZhlzmRiXV6rwXbeJDgBZMn8e7adsMNg3Y=", "ips": [ "2a0d:5600:24:a92::a95f", @@ -40285,7 +39809,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us96-wireguard", - "udp": true, "wgpubkey": "CYoBb5hayfNzt+lOgJyMXcsWKitTn4QAXut7kg4relc=", "ips": [ "2a0d:5600:24:a93::a96f", @@ -40298,7 +39821,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us97-wireguard", - "udp": true, "wgpubkey": "5fzEFqyRqc6qa1QPngIBK1gmWc0ex1Bpot/f6RqZPmc=", "ips": [ "2a0d:5600:24:a94::a97f", @@ -40311,7 +39833,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us98-wireguard", - "udp": true, "wgpubkey": "bo50ppMvVlNG4S6zqgd/J5l1Ce7Og89u+wR10OvJrQ4=", "ips": [ "2a0d:5600:24:a95::a98f", @@ -40324,7 +39845,6 @@ "city": "New York NY", "isp": "M247", "hostname": "us99-wireguard", - "udp": true, "wgpubkey": "EPLh6pVel06dND8cE4Prix9GP4hGLYNhQhn5mSN2yzM=", "ips": [ "2a0d:5600:24:a96::a99f", @@ -40376,7 +39896,6 @@ "city": "Phoenix AZ", "isp": "Tzulo", "hostname": "us189-wireguard", - "udp": true, "wgpubkey": "ctROwSybsU4cHsnGidKtbGYWRB2R17PFMMAqEHpsSm0=", "ips": [ "2607:9000:7000:15::b89f", @@ -40389,7 +39908,6 @@ "city": "Phoenix AZ", "isp": "Tzulo", "hostname": "us190-wireguard", - "udp": true, "wgpubkey": "bdxYH3G6foGCwurPSIGPi4oneZfk3S+cpZSd+pUezUc=", "ips": [ "2607:9000:7000:16::b90f", @@ -40402,7 +39920,6 @@ "city": "Phoenix AZ", "isp": "Tzulo", "hostname": "us191-wireguard", - "udp": true, "wgpubkey": "D8pVZcwerPfEKUTHW5qZ9AzQl8zPRPp3BVqUmINR+g8=", "ips": [ "2607:9000:7000:17::b91f", @@ -40415,7 +39932,6 @@ "city": "Phoenix AZ", "isp": "Tzulo", "hostname": "us192-wireguard", - "udp": true, "wgpubkey": "AxQo/yew9yqQTk/2Z45qI0YZ33ZJ2P+y/K6dFUmvUCQ=", "ips": [ "2607:9000:7000:18::b92f", @@ -40428,7 +39944,6 @@ "city": "Phoenix AZ", "isp": "Tzulo", "hostname": "us193-wireguard", - "udp": true, "wgpubkey": "l5kFrUCMY1ip/rEDAppxRe0GjxDdGTAWNouBdGmTc1Q=", "ips": [ "2607:9000:7000:19::b93f", @@ -40441,7 +39956,6 @@ "city": "Phoenix AZ", "isp": "Tzulo", "hostname": "us194-wireguard", - "udp": true, "wgpubkey": "Zs07i3DIinREejSjUA7dXpDZvu00YRVNJakTEgckpVs=", "ips": [ "2607:9000:7000:20::b94f", @@ -40493,7 +40007,6 @@ "city": "Raleigh NC", "isp": "Tzulo", "hostname": "us183-wireguard", - "udp": true, "wgpubkey": "I9VIeyBqTljpuf4aUwcmkRpyKwLIngh3E0nZDknSmBk=", "ips": [ "2607:9000:4000:15::b83f", @@ -40506,7 +40019,6 @@ "city": "Raleigh NC", "isp": "Tzulo", "hostname": "us184-wireguard", - "udp": true, "wgpubkey": "QSWiUAZr8ShW21MURgHcq3e8VqQ3/9EUcM7ispe4MlE=", "ips": [ "2607:9000:4000:16::b84f", @@ -40519,7 +40031,6 @@ "city": "Raleigh NC", "isp": "Tzulo", "hostname": "us185-wireguard", - "udp": true, "wgpubkey": "8FsG0Hk07cAiyd9K9hEIpxdiH5tqUO59h0HNkpCKGBY=", "ips": [ "2607:9000:4000:17::b85f", @@ -40532,7 +40043,6 @@ "city": "Raleigh NC", "isp": "Tzulo", "hostname": "us186-wireguard", - "udp": true, "wgpubkey": "qB5nfkzKh/dRm9Lp0Cwy0v6sy05DwVogoWYO5ZS83jU=", "ips": [ "2607:9000:4000:18::b86f", @@ -40545,7 +40055,6 @@ "city": "Raleigh NC", "isp": "Tzulo", "hostname": "us187-wireguard", - "udp": true, "wgpubkey": "m2VjMBcvr4Gph9viQCe++OO0yYgKp9DZ+Z/3MNMl92k=", "ips": [ "2607:9000:4000:19::b87f", @@ -40636,7 +40145,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us134-wireguard", - "udp": true, "wgpubkey": "H07w0/FzBuD7J1XX7AIPWQWq0KgAsik6NWnCDq+ouWs=", "ips": [ "2606:2e00:0:b9::b34f", @@ -40649,7 +40157,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us135-wireguard", - "udp": true, "wgpubkey": "hILFNRuu7ANGMAXOIwPKI3M/Q9lfzO2C+gYHs+5mQAw=", "ips": [ "2606:2e00:0:b9::b35f", @@ -40662,7 +40169,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us136-wireguard", - "udp": true, "wgpubkey": "CjSHNIrHSOr6me7OjckbfJb4XbfoDcDBvT5VS2jmFVM=", "ips": [ "2606:2e00:0:b9::b36f", @@ -40675,7 +40181,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us137-wireguard", - "udp": true, "wgpubkey": "wrlLOHa2QW+6FzEom2qOEyBvv06BTjwR0w6N0Rnb5jU=", "ips": [ "2606:2e00:0:b9::b37f", @@ -40688,7 +40193,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us138-wireguard", - "udp": true, "wgpubkey": "t7EpO096Y6jrzr/KHHfpMQsUG0Cu2sga0Di8P9f5Jh4=", "ips": [ "2606:2e00:0:b9::b38f", @@ -40701,7 +40205,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us139-wireguard", - "udp": true, "wgpubkey": "9tPpMdtpDweGoB6U5ZEnSTgYVwxD4fOytsl1TXrnHl4=", "ips": [ "2606:2e00:0:b9::b39f", @@ -40714,7 +40217,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us140-wireguard", - "udp": true, "wgpubkey": "/zr7GFpDW+Px3Y3iu8zhv8wzPWNP/OU4IICnb5H2ZXc=", "ips": [ "2606:2e00:0:b9::b40f", @@ -40727,7 +40229,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us141-wireguard", - "udp": true, "wgpubkey": "KpBP2riY4EKvf02tBXWwT7xHG0CMtRg/N6Q/B3Tng0o=", "ips": [ "2606:2e00:0:b9::b41f", @@ -40740,7 +40241,6 @@ "city": "Salt Lake City UT", "isp": "100TB", "hostname": "us142-wireguard", - "udp": true, "wgpubkey": "ipEYDec8mAA89BgZRPezVDeVILmePOT+sL0ybd+O5Ug=", "ips": [ "2606:2e00:0:b9::b42f", @@ -40792,7 +40292,6 @@ "city": "San Jose CA", "isp": "Tzulo", "hostname": "us195-wireguard", - "udp": true, "wgpubkey": "7PBJv+IH8NbH1WTCbptgzghi8hH7E8WsrqVH/cl0FBY=", "ips": [ "2607:9000:8000:15::b95f", @@ -40805,7 +40304,6 @@ "city": "San Jose CA", "isp": "Tzulo", "hostname": "us196-wireguard", - "udp": true, "wgpubkey": "3mQ+bBKGgX+7eunw64OhpWUz+UHL7Is2fcJWXO5UHQY=", "ips": [ "2607:9000:8000:16::b96f", @@ -40818,7 +40316,6 @@ "city": "San Jose CA", "isp": "Tzulo", "hostname": "us197-wireguard", - "udp": true, "wgpubkey": "U20kRb33zBR15Gsd6bP9hQccDL0O4HysxMa5QjubxC0=", "ips": [ "2607:9000:8000:17::b97f", @@ -40831,7 +40328,6 @@ "city": "San Jose CA", "isp": "Tzulo", "hostname": "us198-wireguard", - "udp": true, "wgpubkey": "e66QrzHRv/dFmGj8dyGEKxaZiC6Vt3MzLiiRcYJqVjQ=", "ips": [ "2607:9000:8000:18::b98f", @@ -40844,7 +40340,6 @@ "city": "San Jose CA", "isp": "Tzulo", "hostname": "us199-wireguard", - "udp": true, "wgpubkey": "FSd0QIqNsLGf+B/IqQzg9wyjKpfVwXiy/P9vt8Zylmg=", "ips": [ "2607:9000:8000:19::b99f", @@ -40857,7 +40352,6 @@ "city": "San Jose CA", "isp": "Tzulo", "hostname": "us200-wireguard", - "udp": true, "wgpubkey": "jHaXA+nq2od3uwNPzOUuGeLTuXBTTyXdPsi0lib4pVg=", "ips": [ "2607:9000:8000:20::c00f", @@ -40870,7 +40364,6 @@ "city": "San Jose CA", "isp": "100TB", "hostname": "us201-wireguard", - "udp": true, "wgpubkey": "4A5vS/WtSI2038iXnQ0i3jz2GIAJn6PB7l4JrOUubBo=", "ips": [ "2607:f7a0:16:5::c01f", @@ -40883,7 +40376,6 @@ "city": "San Jose CA", "isp": "100TB", "hostname": "us202-wireguard", - "udp": true, "wgpubkey": "0mc2D++TlTUUn8HToWbbATvrKtM3vCWJ65OzK9j/uDI=", "ips": [ "2607:f7a0:16:5::c02f", @@ -40896,7 +40388,6 @@ "city": "San Jose CA", "isp": "100TB", "hostname": "us203-wireguard", - "udp": true, "wgpubkey": "XwBEfnMpAqnkqc6mttfOkFacfZgRKrzIX8y7DrTZvxQ=", "ips": [ "2607:f7a0:16:5::c03f", @@ -40909,7 +40400,6 @@ "city": "San Jose CA", "isp": "100TB", "hostname": "us204-wireguard", - "udp": true, "wgpubkey": "xyE6GqJaU7ntIh1pQyZxd1KyR9UxO49aQ1c1WYQqCXQ=", "ips": [ "2607:f7a0:16:5::c04f", @@ -40922,7 +40412,6 @@ "city": "San Jose CA", "isp": "100TB", "hostname": "us205-wireguard", - "udp": true, "wgpubkey": "Nr//h6Q+LwJeV4nqnmIcXYQYigt8iKJgK8C81KiOdkU=", "ips": [ "2607:f7a0:16:5::c05f", @@ -40935,7 +40424,6 @@ "city": "San Jose CA", "isp": "100TB", "hostname": "us206-wireguard", - "udp": true, "wgpubkey": "RacjA0eNOBUACA8MvC2MKjt8ZTqxkYoB15kZKQaj3Ts=", "ips": [ "2607:f7a0:16:5::c06f", @@ -40948,7 +40436,6 @@ "city": "San Jose CA", "isp": "100TB", "hostname": "us207-wireguard", - "udp": true, "wgpubkey": "JTpeoUyC0CA/NiHoGk+nH8oM6hHY/Nawmvy5nYdXByE=", "ips": [ "2607:f7a0:16:5::c07f", @@ -40961,7 +40448,6 @@ "city": "San Jose CA", "isp": "100TB", "hostname": "us208-wireguard", - "udp": true, "wgpubkey": "0N/GPSDWTju1YV8MCCx5n9O4scMKYP7Nh/nnLsje8W4=", "ips": [ "2607:f7a0:16:5::c08f", @@ -40974,7 +40460,6 @@ "city": "San Jose CA", "isp": "xtom", "hostname": "us266-wireguard", - "udp": true, "wgpubkey": "Om8AEOXjMke1QiCWNhlXDwgOqVudV8nV5vnzAuCUbgI=", "ips": [ "2604:e8c0:7::b66f", @@ -40987,7 +40472,6 @@ "city": "San Jose CA", "isp": "xtom", "hostname": "us267-wireguard", - "udp": true, "wgpubkey": "+Mr9wOLNPhQ8L/M4uN5YDGSlJzWvPh2SG9cbAu3kBxs=", "ips": [ "2604:e8c0:7::b67f", @@ -41000,7 +40484,6 @@ "city": "San Jose CA", "isp": "xtom", "hostname": "us268-wireguard", - "udp": true, "wgpubkey": "ACFcenuLuWKHpyWIrnF9iU0RQqRDXvy93Uvz+RjBghg=", "ips": [ "2604:e8c0:7::b68f", @@ -41013,7 +40496,6 @@ "city": "San Jose CA", "isp": "xtom", "hostname": "us269-wireguard", - "udp": true, "wgpubkey": "+JJBzQMxFFQ2zu+WN8rbFH4ZpqY2u6WNBGBFHwsxkzs=", "ips": [ "2604:e8c0:7::b69f", @@ -41065,7 +40547,6 @@ "city": "Seattle WA", "isp": "DataPacket", "hostname": "us-sea-wg-001", - "udp": true, "wgpubkey": "bZQF7VRDRK/JUJ8L6EFzF/zRw2tsqMRk6FesGtTgsC0=", "ips": [ "2a02:6ea0:d80b:3::b75f", @@ -41078,7 +40559,6 @@ "city": "Seattle WA", "isp": "Tzulo", "hostname": "us177-wireguard", - "udp": true, "wgpubkey": "T1fKJp8knv4kqsfy9O04OIy+1nl5b9ypcnIzdmcfyzM=", "ips": [ "2607:9000:5000:15::b77f", @@ -41091,7 +40571,6 @@ "city": "Seattle WA", "isp": "Tzulo", "hostname": "us178-wireguard", - "udp": true, "wgpubkey": "+MmbnwQFKC18GJvunTQyAC2uvDwgEi9XXU7aksr9Czo=", "ips": [ "2607:9000:5000:16::b78f", @@ -41104,7 +40583,6 @@ "city": "Seattle WA", "isp": "Tzulo", "hostname": "us179-wireguard", - "udp": true, "wgpubkey": "+DIu6EMVk9QEsy6/NppxcDjuLSG6rTJ3TywYN3wXDkQ=", "ips": [ "2607:9000:5000:17::b79f", @@ -41117,7 +40595,6 @@ "city": "Seattle WA", "isp": "Tzulo", "hostname": "us180-wireguard", - "udp": true, "wgpubkey": "rgtjtftlhL1m9dC9KoacFbzQ9YVma6GOWIfoLom8TUc=", "ips": [ "2607:9000:5000:18::b80f", @@ -41130,7 +40607,6 @@ "city": "Seattle WA", "isp": "Tzulo", "hostname": "us181-wireguard", - "udp": true, "wgpubkey": "U7a6+c0RPpop0nilmdLKimiFC0OqkI1k1Yhdc5NcBwM=", "ips": [ "2607:9000:5000:19::b81f", @@ -41143,7 +40619,6 @@ "city": "Seattle WA", "isp": "Tzulo", "hostname": "us182-wireguard", - "udp": true, "wgpubkey": "Uqx528kx/O1VKpG8DLKK5Q3Hz6JcxTbosYYwoDR4LgA=", "ips": [ "2607:9000:5000:20::b82f", @@ -41156,7 +40631,6 @@ "city": "Seattle WA", "isp": "100TB", "hostname": "us209-wireguard", - "udp": true, "wgpubkey": "APxS9ebzK537njzcfB9gh8VXWrFrKvZeC6QQe0ZCUUM=", "ips": [ "2607:f7a0:c:4::c09f", @@ -41169,7 +40643,6 @@ "city": "Seattle WA", "isp": "100TB", "hostname": "us210-wireguard", - "udp": true, "wgpubkey": "92KRwUmhQY/n5cAUKR1R/Z/z17wOmB08GZxuats8cEw=", "ips": [ "2607:f7a0:c:4::c10f", @@ -41182,7 +40655,6 @@ "city": "Seattle WA", "isp": "100TB", "hostname": "us213-wireguard", - "udp": true, "wgpubkey": "7YYXE9f3qJBHtccXrr3H8eFeZL3kPSd+zhX8A6q4GBM=", "ips": [ "2607:f7a0:c:4::c13f", @@ -41195,7 +40667,6 @@ "city": "Seattle WA", "isp": "100TB", "hostname": "us214-wireguard", - "udp": true, "wgpubkey": "xqPiSkNlmz6KgC4UKz8rmey8VcmLHhTxCSYcNk9hAGo=", "ips": [ "2607:f7a0:c:4::c14f", @@ -41208,7 +40679,6 @@ "city": "Seattle WA", "isp": "100TB", "hostname": "us215-wireguard", - "udp": true, "wgpubkey": "H6XbhZN1u6qYDJSfoSNWz4uTnSGuQEpdFR6T0kgrwhU=", "ips": [ "2607:f7a0:c:4::c15f", @@ -41221,7 +40691,6 @@ "city": "Seattle WA", "isp": "100TB", "hostname": "us216-wireguard", - "udp": true, "wgpubkey": "ErdLbpitZKoIURt85r/VYNwq8FcwKOkGAhh6PgknT3U=", "ips": [ "2607:f7a0:c:4::c16f", @@ -41234,7 +40703,6 @@ "city": "Seattle WA", "isp": "Quadranet", "hostname": "us227-wireguard", - "udp": true, "wgpubkey": "lw4tLTZDxrpvn7cBbT/B6aBJ5GGijrTLsv0remBj5yM=", "ips": [ "2607:fcd0:cd00:a00::b27f", @@ -41247,7 +40715,6 @@ "city": "Seattle WA", "isp": "Quadranet", "hostname": "us228-wireguard", - "udp": true, "wgpubkey": "ODuPYwpLGkN3MZuRTmXqPCLdC8h0eCUUaK8R/MySoEU=", "ips": [ "2607:fcd0:cd00:a01::b28f", @@ -41260,7 +40727,6 @@ "city": "Seattle WA", "isp": "DataPacket", "hostname": "us274-wireguard", - "udp": true, "wgpubkey": "ujasJmDuU0t4y6JmBLrdDxakKuaHvPRupRDfyywSWyw=", "ips": [ "2a02:6ea0:d80b:2::b74f", @@ -41273,7 +40739,6 @@ "city": "Secaucus NJ", "isp": "Quadranet", "hostname": "us237-wireguard", - "udp": true, "wgpubkey": "n8UOnGbSxeAA66KcqJr7EzQfP/QPR/nOutYwJECW/Rw=", "ips": [ "2607:fcd0:ccc0:1d02::b37f", @@ -41286,7 +40751,6 @@ "city": "Secaucus NJ", "isp": "Quadranet", "hostname": "us238-wireguard", - "udp": true, "wgpubkey": "MWOljLEZrZWAezSVg/28tz6MwuMREKP4lH7lIbWlvBg=", "ips": [ "2607:fcd0:ccc0:1d03::b38f", @@ -41299,7 +40763,6 @@ "city": "Secaucus NJ", "isp": "Quadranet", "hostname": "us241-wireguard", - "udp": true, "wgpubkey": "G+dXbJ9kpsiJSDN+wcS6/nRH+O9nYCMZi8KgL7QiPE0=", "ips": [ "23.226.135.50", @@ -122500,7 +121963,7 @@ }, "windscribe": { "version": 2, - "timestamp": 1661432688, + "timestamp": 1661432986, "servers": [ { "vpn": "openvpn", @@ -122520,7 +121983,6 @@ "region": "Albania", "city": "Tirana", "hostname": "al-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "/8WvGXPoWTiPmrQsmakiEk7wFhn0ab7FWqN5k13oszQ=", "ips": [ "31.171.152.180" @@ -122544,7 +122006,6 @@ "region": "Argentina", "city": "Buenos Aires", "hostname": "ar-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "2+O8VAshLkyWM1b6Ye2Cuoa3R/guKZgQ+YLoCsseWCU=", "ips": [ "190.103.176.148" @@ -122568,7 +122029,6 @@ "region": "Australia", "city": "Adelaide", "hostname": "au-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "tEh6Z8bnFmQU2KWHWYOS7yuDFZgwn3LGOZAdR1hN8kU=", "ips": [ "116.90.72.244" @@ -122592,7 +122052,6 @@ "region": "Australia", "city": "Adelaide", "hostname": "au-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "Sb5VSMZhhqSo5absckjzPn9HWhT7UrKk1AQv0me0zhI=", "ips": [ "103.108.92.84" @@ -122616,7 +122075,6 @@ "region": "Australia", "city": "Brisbane", "hostname": "au-018.whiskergalaxy.com", - "udp": true, "wgpubkey": "iY4MhQqQTP4uT7U4w9DfUEVxi5I3HJvjZcIL2dwmtTw=", "ips": [ "103.108.95.228" @@ -122640,7 +122098,6 @@ "region": "Australia", "city": "Canberra", "hostname": "au-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "MhJ+u6X13d3beo3DMIANYDsvnZjIqYEpQDGlMUS5fis=", "ips": [ "116.206.229.132" @@ -122664,7 +122121,6 @@ "region": "Australia", "city": "Melbourne", "hostname": "au-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "sDDXsvjyVqpB8fecUsjX0/Y8YdZye+oiV1Dy9BfUkwE=", "ips": [ "45.121.209.161" @@ -122688,7 +122144,6 @@ "region": "Australia", "city": "Melbourne", "hostname": "au-017.whiskergalaxy.com", - "udp": true, "wgpubkey": "r5BDU0T+VGZU6I+zuF3vlGrdORtgNvLhY08gQxrFRCw=", "ips": [ "116.206.228.180" @@ -122712,7 +122167,6 @@ "region": "Australia", "city": "Perth", "hostname": "au-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "dqRF96aFvKwZ/UZXC+VuIciE6e2Iy138Vx54D2iHug8=", "ips": [ "45.121.208.161" @@ -122736,7 +122190,6 @@ "region": "Australia", "city": "Perth", "hostname": "au-012.whiskergalaxy.com", - "udp": true, "wgpubkey": "Jhhq6jvPxABM8OmzaM4/zJbcoRBR5OZalIHrZaFuXAU=", "ips": [ "103.77.234.212" @@ -122760,7 +122213,6 @@ "region": "Australia", "city": "Sydney", "hostname": "au-015.whiskergalaxy.com", - "udp": true, "wgpubkey": "jCi1I5HBTtwCblBbMzOFmOOFNG1GilYOZgst0kyq9gY=", "ips": [ "103.1.213.212" @@ -122784,7 +122236,6 @@ "region": "Australia", "city": "Sydney", "hostname": "au-016.whiskergalaxy.com", - "udp": true, "wgpubkey": "jCi1I5HBTtwCblBbMzOFmOOFNG1GilYOZgst0kyq9gY=", "ips": [ "103.1.212.244" @@ -122808,7 +122259,6 @@ "region": "Australia", "city": "Sydney", "hostname": "au-019.whiskergalaxy.com", - "udp": true, "wgpubkey": "eSxX+L8qX+1MdmwjtlZGIDbDivFdURBh5Rm1KfUpYzc=", "ips": [ "103.77.232.76" @@ -122832,7 +122282,6 @@ "region": "Austria", "city": "Vienna", "hostname": "at-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "TPJ0lv9z95UaBKA64lQYcpAsoYmmMxvX4cnMh3nHqgs=", "ips": [ "217.64.127.12" @@ -122856,7 +122305,6 @@ "region": "Austria", "city": "Vienna", "hostname": "at-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "TPJ0lv9z95UaBKA64lQYcpAsoYmmMxvX4cnMh3nHqgs=", "ips": [ "146.70.81.148" @@ -122880,7 +122328,6 @@ "region": "Austria", "city": "Vienna", "hostname": "at-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "KtJIKy9zsCXtKwFMQeGDEZVXtqw+X1+5z10Rh84/N0s=", "ips": [ "89.187.168.67" @@ -122904,7 +122351,6 @@ "region": "Azerbaijan", "city": "Baku City", "hostname": "az-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "3UBRUZsTinXo+7RNpduBmxObJkeeSvQjb7sX1ydvvSw=", "ips": [ "62.212.239.60" @@ -122928,7 +122374,6 @@ "region": "Azerbaijan", "city": "Baku City", "hostname": "az-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "3UBRUZsTinXo+7RNpduBmxObJkeeSvQjb7sX1ydvvSw=", "ips": [ "62.212.239.220" @@ -122952,7 +122397,6 @@ "region": "Belgium", "city": "Brussels", "hostname": "be-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "TA+nBx5qMBdyIiug4SHgbw30/GXrRZ2aUAH7MQHJwzc=", "ips": [ "194.187.251.148" @@ -122976,7 +122420,6 @@ "region": "Belgium", "city": "Brussels", "hostname": "be-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "TA+nBx5qMBdyIiug4SHgbw30/GXrRZ2aUAH7MQHJwzc=", "ips": [ "185.232.21.132" @@ -123000,7 +122443,6 @@ "region": "Belgium", "city": "Brussels", "hostname": "be-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "TA+nBx5qMBdyIiug4SHgbw30/GXrRZ2aUAH7MQHJwzc=", "ips": [ "194.110.115.68" @@ -123024,7 +122466,6 @@ "region": "Bosnia", "city": "Sarajevo", "hostname": "ba-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "6oMHpHHL3pq6Pdr2HoDRYuyjcyQGxfQaSRQR+HPyvgc=", "ips": [ "185.99.3.25" @@ -123048,7 +122489,6 @@ "region": "Brazil", "city": "Sao Paulo", "hostname": "br-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "bfeZeTGkISX5GVgVOkTMRlqvWlTI8obCb7vVdy8XGWk=", "ips": [ "177.67.80.60" @@ -123072,7 +122512,6 @@ "region": "Brazil", "city": "Sao Paulo", "hostname": "br-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "c88CXfzJqasp/RIf7hQyYjrakrSyI4zfZdcTmcTwwxQ=", "ips": [ "177.54.157.180" @@ -123096,7 +122535,6 @@ "region": "Brazil", "city": "Sao Paulo", "hostname": "br-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "c88CXfzJqasp/RIf7hQyYjrakrSyI4zfZdcTmcTwwxQ=", "ips": [ "177.54.148.248" @@ -123120,7 +122558,6 @@ "region": "Bulgaria", "city": "Sofia", "hostname": "bg-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "kDDue7viLOXcxayH/VWzI8EhqeeSHrwOSt3IF9rHIlI=", "ips": [ "185.94.192.36" @@ -123144,7 +122581,6 @@ "region": "Bulgaria", "city": "Sofia", "hostname": "bg-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "kDDue7viLOXcxayH/VWzI8EhqeeSHrwOSt3IF9rHIlI=", "ips": [ "146.70.53.36" @@ -123168,7 +122604,6 @@ "region": "Cambodia", "city": "Phnom Penh", "hostname": "kh-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "V95mJcGcpBFRAy3rQQJc6pWe5VA/28YoWKTl53slzz4=", "ips": [ "195.80.149.244" @@ -123192,7 +122627,6 @@ "region": "Canada East", "city": "Halifax", "hostname": "ca-021.whiskergalaxy.com", - "udp": true, "wgpubkey": "w262TI0UyIg9pFunMiekVURYUuT/z4qXRor2Z7VcOn4=", "ips": [ "23.191.80.4" @@ -123216,7 +122650,6 @@ "region": "Canada East", "city": "Montreal", "hostname": "ca-027.whiskergalaxy.com", - "udp": true, "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", "ips": [ "144.168.163.161" @@ -123240,7 +122673,6 @@ "region": "Canada East", "city": "Montreal", "hostname": "ca-028.whiskergalaxy.com", - "udp": true, "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", "ips": [ "144.168.163.194" @@ -123264,7 +122696,6 @@ "region": "Canada East", "city": "Montreal", "hostname": "ca-032.whiskergalaxy.com", - "udp": true, "wgpubkey": "DxBtB3enAlS3OtJ9+jFtrTmuiGs36aV6HyyjKcit71o=", "ips": [ "104.227.235.130" @@ -123288,7 +122719,6 @@ "region": "Canada East", "city": "Montreal", "hostname": "ca-033.whiskergalaxy.com", - "udp": true, "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", "ips": [ "198.8.85.196" @@ -123312,7 +122742,6 @@ "region": "Canada East", "city": "Montreal", "hostname": "ca-034.whiskergalaxy.com", - "udp": true, "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", "ips": [ "198.8.85.211" @@ -123336,7 +122765,6 @@ "region": "Canada East", "city": "Montreal", "hostname": "ca-041.whiskergalaxy.com", - "udp": true, "wgpubkey": "nfFRpFZ0ZXWVoz8C4gP5ti7V1snFT1gV8EcIxTWJtB4=", "ips": [ "172.98.68.148" @@ -123360,7 +122788,6 @@ "region": "Canada East", "city": "Toronto", "hostname": "ca-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", "ips": [ "104.254.92.12" @@ -123384,7 +122811,6 @@ "region": "Canada East", "city": "Toronto", "hostname": "ca-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", "ips": [ "104.254.92.92" @@ -123408,7 +122834,6 @@ "region": "Canada East", "city": "Toronto", "hostname": "ca-017.whiskergalaxy.com", - "udp": true, "wgpubkey": "pKXBuReWe+HfrILovyFzIybA8AVAsFgfDUyo42tLT1g=", "ips": [ "184.75.212.92" @@ -123432,7 +122857,6 @@ "region": "Canada East", "city": "Toronto", "hostname": "ca-025.whiskergalaxy.com", - "udp": true, "wgpubkey": "U5s7Yy/2fCqlaFcI96dFKupqEVCn+BYF04LRLD1zOhg=", "ips": [ "149.57.28.98" @@ -123456,7 +122880,6 @@ "region": "Canada East", "city": "Toronto", "hostname": "ca-026.whiskergalaxy.com", - "udp": true, "wgpubkey": "U5s7Yy/2fCqlaFcI96dFKupqEVCn+BYF04LRLD1zOhg=", "ips": [ "149.57.28.130" @@ -123480,7 +122903,6 @@ "region": "Canada East", "city": "Toronto", "hostname": "ca-030.whiskergalaxy.com", - "udp": true, "wgpubkey": "U5s7Yy/2fCqlaFcI96dFKupqEVCn+BYF04LRLD1zOhg=", "ips": [ "149.57.28.162" @@ -123504,7 +122926,6 @@ "region": "Canada West", "city": "Vancouver", "hostname": "ca-west-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "hHmf2yS/Hjkh6ZJ4seoO5Vwv0LwNlYFTnUK3v9lGvEQ=", "ips": [ "162.221.207.96" @@ -123528,7 +122949,6 @@ "region": "Canada West", "city": "Vancouver", "hostname": "ca-west-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "hHmf2yS/Hjkh6ZJ4seoO5Vwv0LwNlYFTnUK3v9lGvEQ=", "ips": [ "71.19.251.153" @@ -123552,7 +122972,6 @@ "region": "Canada West", "city": "Vancouver", "hostname": "ca-west-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "ig1yNm9ck4lesT3MShd4JN7ngvLLDMR+l7Euc88oLzQ=", "ips": [ "104.218.61.2" @@ -123576,7 +122995,6 @@ "region": "Canada West", "city": "Vancouver", "hostname": "ca-west-012.whiskergalaxy.com", - "udp": true, "wgpubkey": "ig1yNm9ck4lesT3MShd4JN7ngvLLDMR+l7Euc88oLzQ=", "ips": [ "104.218.61.34" @@ -123600,7 +123018,6 @@ "region": "Canada West", "city": "Vancouver", "hostname": "ca-west-017.whiskergalaxy.com", - "udp": true, "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", "ips": [ "208.78.41.132" @@ -123624,7 +123041,6 @@ "region": "Canada West", "city": "Vancouver", "hostname": "ca-west-019.whiskergalaxy.com", - "udp": true, "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", "ips": [ "208.78.41.164" @@ -123648,7 +123064,6 @@ "region": "Canada West", "city": "Vancouver", "hostname": "ca-west-020.whiskergalaxy.com", - "udp": true, "wgpubkey": "YxWQDjNmU41PJXtoobFek3Y6nhICSLgsqH+QKPO5AQ8=", "ips": [ "198.8.92.100" @@ -123672,7 +123087,6 @@ "region": "Chile", "city": "Santiago", "hostname": "cl-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "md4drvl8I1VnIAIfUnvEQYd8QRUVk7NC3gLE2+Eu20M=", "ips": [ "66.203.113.132" @@ -123696,7 +123110,6 @@ "region": "Chile", "city": "Santiago", "hostname": "cl-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "md4drvl8I1VnIAIfUnvEQYd8QRUVk7NC3gLE2+Eu20M=", "ips": [ "66.203.113.137" @@ -123720,7 +123133,6 @@ "region": "Colombia", "city": "Bogota", "hostname": "co-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "QpdeoH7VxAatKlFm0sPo8phHjv1tiiHdqQaACmzMJjE=", "ips": [ "138.186.141.156" @@ -123744,7 +123156,6 @@ "region": "Croatia", "city": "Zagreb", "hostname": "hr-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "aTyGd+x2cPxFdPzi7FfbKc7SG4Rc5VE0c/Tdyd2MdzA=", "ips": [ "85.10.56.130" @@ -123768,7 +123179,6 @@ "region": "Croatia", "city": "Zagreb", "hostname": "hr-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "aTyGd+x2cPxFdPzi7FfbKc7SG4Rc5VE0c/Tdyd2MdzA=", "ips": [ "176.222.34.140" @@ -123792,7 +123202,6 @@ "region": "Cyprus", "city": "Nicosia", "hostname": "cy-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "90fjr1sq0Hgv2l+DgMaaGQ009SDw7VxmzJwaYmclaFs=", "ips": [ "46.199.75.107" @@ -123816,7 +123225,6 @@ "region": "Cyprus", "city": "Nicosia", "hostname": "cy-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "90fjr1sq0Hgv2l+DgMaaGQ009SDw7VxmzJwaYmclaFs=", "ips": [ "46.199.75.102" @@ -123840,7 +123248,6 @@ "region": "Czech Republic", "city": "Prague", "hostname": "cz-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "a599bjD8WzXg94xH1DfGBxW8yJ64EXMZq18elEfAwyk=", "ips": [ "185.156.174.12" @@ -123864,7 +123271,6 @@ "region": "Czech Republic", "city": "Prague", "hostname": "cz-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "dAaOzl6DBAuFWC85UJUY378WwEHUoNqbE5lJMDfNamo=", "ips": [ "185.246.210.3" @@ -123888,7 +123294,6 @@ "region": "Denmark", "city": "Copenhagen", "hostname": "dk-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "QgQ3dPssF5IGZczLNP1KKbkohpIu/GCYBdi6ecuoqwU=", "ips": [ "185.206.224.196" @@ -123912,7 +123317,6 @@ "region": "Denmark", "city": "Copenhagen", "hostname": "dk-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "QgQ3dPssF5IGZczLNP1KKbkohpIu/GCYBdi6ecuoqwU=", "ips": [ "185.206.224.36" @@ -123936,7 +123340,6 @@ "region": "Ecuador", "city": "Quito", "hostname": "ec-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "nwpvJ7AtDjk77dpyL7qKkvwsWQL82Fqy3JEk/KR/iGw=", "ips": [ "179.49.5.124" @@ -123960,7 +123363,6 @@ "region": "Estonia", "city": "Tallinn", "hostname": "ee-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", "ips": [ "196.196.216.132" @@ -123984,7 +123386,6 @@ "region": "Estonia", "city": "Tallinn", "hostname": "ee-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", "ips": [ "196.196.216.196" @@ -124008,7 +123409,6 @@ "region": "Estonia", "city": "Tallinn", "hostname": "ee-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "FoZuoiJqIy/0h7Jv+7Jli4E49KFv0riLg1eVaI7j6X8=", "ips": [ "196.196.216.228" @@ -124032,7 +123432,6 @@ "region": "Fake Antarctica", "city": "Troll", "hostname": "aq-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "vwimooPysZvNdJULeFQVovYfqhsLG5gVdzgoTnfm+iE=", "ips": [ "149.57.28.226" @@ -124056,7 +123455,6 @@ "region": "Fake Antarctica", "city": "Troll", "hostname": "aq-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "vwimooPysZvNdJULeFQVovYfqhsLG5gVdzgoTnfm+iE=", "ips": [ "149.57.28.242" @@ -124080,7 +123478,6 @@ "region": "Finland", "city": "Helsinki", "hostname": "fi-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "Z3Nfo50Hl0+A96/RXWGV2HPl5rJGsk2unuD1accZPWQ=", "ips": [ "185.112.82.228" @@ -124104,7 +123501,6 @@ "region": "Finland", "city": "Helsinki", "hostname": "fi-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "Z3Nfo50Hl0+A96/RXWGV2HPl5rJGsk2unuD1accZPWQ=", "ips": [ "194.34.133.83" @@ -124128,7 +123524,6 @@ "region": "Finland", "city": "Helsinki", "hostname": "fi-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "2LiGGjfWP64d7uVNpgV8n/lIg2iM62iz8ZXRHFd1Qw0=", "ips": [ "196.244.192.52" @@ -124152,7 +123547,6 @@ "region": "France", "city": "Paris", "hostname": "fr-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", "ips": [ "185.156.173.188" @@ -124176,7 +123570,6 @@ "region": "France", "city": "Paris", "hostname": "fr-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", "ips": [ "82.102.18.36" @@ -124200,7 +123593,6 @@ "region": "France", "city": "Paris", "hostname": "fr-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "cmaT8JIehfRf5PWWDkcBRwLWDb3jrIkk/SDbw4JmUAc=", "ips": [ "84.17.42.35" @@ -124224,7 +123616,6 @@ "region": "France", "city": "Paris", "hostname": "fr-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "cmaT8JIehfRf5PWWDkcBRwLWDb3jrIkk/SDbw4JmUAc=", "ips": [ "84.17.42.3" @@ -124248,7 +123639,6 @@ "region": "France", "city": "Paris", "hostname": "fr-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "3si2nD1DKbbkeZkdg3hLMfOYw1gdKbVFtTOj2NOA+nM=", "ips": [ "45.89.174.36" @@ -124272,7 +123662,6 @@ "region": "Georgia", "city": "Tbilisi", "hostname": "ge-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "Jntc7e8Zxk9vNvq2dbOOwyoXsB9nybUMF1LRdCZZgWk=", "ips": [ "195.54.178.39" @@ -124296,7 +123685,6 @@ "region": "Germany", "city": "Frankfurt", "hostname": "de-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", "ips": [ "89.249.65.20" @@ -124320,7 +123708,6 @@ "region": "Germany", "city": "Frankfurt", "hostname": "de-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", "ips": [ "185.130.184.196" @@ -124344,7 +123731,6 @@ "region": "Germany", "city": "Frankfurt", "hostname": "de-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "QgKUjSTh1LGfLqcM1UAzIjTIviacHG+auN3PEXRhZkM=", "ips": [ "195.181.170.67" @@ -124368,7 +123754,6 @@ "region": "Germany", "city": "Frankfurt", "hostname": "de-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "QgKUjSTh1LGfLqcM1UAzIjTIviacHG+auN3PEXRhZkM=", "ips": [ "195.181.175.99" @@ -124392,7 +123777,6 @@ "region": "Germany", "city": "Frankfurt", "hostname": "de-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", "ips": [ "217.138.194.116" @@ -124416,7 +123800,6 @@ "region": "Germany", "city": "Frankfurt", "hostname": "de-012.whiskergalaxy.com", - "udp": true, "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", "ips": [ "45.87.212.52" @@ -124440,7 +123823,6 @@ "region": "Germany", "city": "Frankfurt", "hostname": "de-017.whiskergalaxy.com", - "udp": true, "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", "ips": [ "45.87.212.84" @@ -124464,7 +123846,6 @@ "region": "Germany", "city": "Frankfurt", "hostname": "de-018.whiskergalaxy.com", - "udp": true, "wgpubkey": "e1kA4Tn1REdBHHo3BZsApwhCybD+VpGQ9FoUxUq4mzY=", "ips": [ "146.70.101.36" @@ -124488,7 +123869,6 @@ "region": "Ghana", "city": "Accra", "hostname": "gh-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "+ZYeVrDMZ+7Kpewr4IL/jRRpb2x3pjky+xwkY1wiUjM=", "ips": [ "169.255.56.204" @@ -124512,7 +123892,6 @@ "region": "Greece", "city": "Athens", "hostname": "gr-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "abAIyZlBkims+My2pZVgkY2Z83JskM7w4LLUIEjcgmQ=", "ips": [ "185.226.64.112" @@ -124536,7 +123915,6 @@ "region": "Greece", "city": "Athens", "hostname": "gr-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "7fY/cxF/ikCcnTyL9JgNuc3pis+YIjPBKB2TRVbzmwA=", "ips": [ "195.146.4.142" @@ -124560,7 +123938,6 @@ "region": "Greece", "city": "Athens", "hostname": "gr-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "abAIyZlBkims+My2pZVgkY2Z83JskM7w4LLUIEjcgmQ=", "ips": [ "185.226.64.35" @@ -124584,7 +123961,6 @@ "region": "Greece", "city": "Athens", "hostname": "gr-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "7fY/cxF/ikCcnTyL9JgNuc3pis+YIjPBKB2TRVbzmwA=", "ips": [ "195.146.4.189" @@ -124608,7 +123984,6 @@ "region": "Hong Kong", "city": "Hong Kong", "hostname": "hk-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "wfSHdnVIT/SlLwKCz+QWTs0ZIPRtYd2NKpMXDPe7sWk=", "ips": [ "103.10.197.100" @@ -124632,7 +124007,6 @@ "region": "Hong Kong", "city": "Hong Kong", "hostname": "hk-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "zi62xnrtbvAbaavB8MLoTF36BX/stxjfnGJ6mIsZYzg=", "ips": [ "84.17.57.115" @@ -124656,7 +124030,6 @@ "region": "Hong Kong", "city": "Hong Kong", "hostname": "hk-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "wfSHdnVIT/SlLwKCz+QWTs0ZIPRtYd2NKpMXDPe7sWk=", "ips": [ "27.122.12.4" @@ -124680,7 +124053,6 @@ "region": "Hungary", "city": "Budapest", "hostname": "hu-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "ENe619amvJuPmyAtuLnGziKl1Yr1n3SoXgHrmosbRhk=", "ips": [ "185.104.187.44" @@ -124704,7 +124076,6 @@ "region": "Hungary", "city": "Budapest", "hostname": "hu-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "ENe619amvJuPmyAtuLnGziKl1Yr1n3SoXgHrmosbRhk=", "ips": [ "185.252.223.228" @@ -124728,7 +124099,6 @@ "region": "Iceland", "city": "Reykjavik", "hostname": "is-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "8ZGAQUv1E/9pfVmPwasDo4g69PlAHIzlUf5pAmCJ7hk=", "ips": [ "82.221.139.39" @@ -124752,7 +124122,6 @@ "region": "Iceland", "city": "Reykjavik", "hostname": "is-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "ua7TUXkcSiiHeTyCok5b3PX9DkJ4l5yVvGlSmJ34WU8=", "ips": [ "185.165.170.3" @@ -124776,7 +124145,6 @@ "region": "India", "city": "Mumbai", "hostname": "in-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", "ips": [ "165.231.253.212" @@ -124800,7 +124168,6 @@ "region": "India", "city": "Mumbai", "hostname": "in-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "zyGN4Q1r+3C7OVg7cQEf3Wq1Ts+oXlBVGPPp3r+wnCM=", "ips": [ "165.231.253.244" @@ -124824,7 +124191,6 @@ "region": "India", "city": "Pune", "hostname": "in-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "TkdCh95ZjvjxoQGs85jAC9pV+TgLzdOYlZsUF4b/liU=", "ips": [ "107.187.124.35" @@ -124848,7 +124214,6 @@ "region": "India", "city": "Pune", "hostname": "in-013.whiskergalaxy.com", - "udp": true, "wgpubkey": "TkdCh95ZjvjxoQGs85jAC9pV+TgLzdOYlZsUF4b/liU=", "ips": [ "107.187.124.4" @@ -124872,7 +124237,6 @@ "region": "Indonesia", "city": "Jakarta", "hostname": "id-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "wYAVV6Ngtcnm1DqQptFCi69gcS1v2mvpM27iRb+XWko=", "ips": [ "103.55.39.188" @@ -124896,7 +124260,6 @@ "region": "Indonesia", "city": "Jakarta", "hostname": "id-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "wYAVV6Ngtcnm1DqQptFCi69gcS1v2mvpM27iRb+XWko=", "ips": [ "103.236.201.77" @@ -124920,7 +124283,6 @@ "region": "Indonesia", "city": "Jakarta", "hostname": "id-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "wYAVV6Ngtcnm1DqQptFCi69gcS1v2mvpM27iRb+XWko=", "ips": [ "103.28.53.163" @@ -124944,7 +124306,6 @@ "region": "Indonesia", "city": "Jakarta", "hostname": "id-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "g4dIl4jA8VB8aUNWW3EgABrge+TnaAwHxM7flakbZH8=", "ips": [ "202.74.239.12" @@ -124968,7 +124329,6 @@ "region": "Indonesia", "city": "Jakarta", "hostname": "id-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "g4dIl4jA8VB8aUNWW3EgABrge+TnaAwHxM7flakbZH8=", "ips": [ "202.74.239.92" @@ -124992,7 +124352,6 @@ "region": "Ireland", "city": "Dublin", "hostname": "ie-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "VgzE+XeQUxX54wMZdhRBU4Qxqba95iVpXi197ZbBBgA=", "ips": [ "23.92.127.36" @@ -125016,7 +124375,6 @@ "region": "Ireland", "city": "Dublin", "hostname": "ie-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "VgzE+XeQUxX54wMZdhRBU4Qxqba95iVpXi197ZbBBgA=", "ips": [ "5.157.13.148" @@ -125040,7 +124398,6 @@ "region": "Ireland", "city": "Dublin", "hostname": "ie-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "yRHO50Kvdoa4Xkf9qRxHZQGwiTbqYPzLHQVbLmKS2SE=", "ips": [ "202.8.10.18" @@ -125064,7 +124421,6 @@ "region": "Ireland", "city": "Dublin", "hostname": "ie-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "yRHO50Kvdoa4Xkf9qRxHZQGwiTbqYPzLHQVbLmKS2SE=", "ips": [ "202.8.10.33" @@ -125088,7 +124444,6 @@ "region": "Ireland", "city": "Dublin", "hostname": "ie-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "7V00BhJ4cAxsJmU8mEXbdUU5wljw67fGKs1oDhUYtl8=", "ips": [ "185.104.217.68" @@ -125112,7 +124467,6 @@ "region": "Israel", "city": "Ashdod", "hostname": "il-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "2tyuu2HcOljr/wndoswy2Vk9gqXgjaP/IRg3vXoqFig=", "ips": [ "185.191.205.140" @@ -125136,7 +124490,6 @@ "region": "Israel", "city": "Tel Aviv", "hostname": "il-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "KQeAizSUze/+JGq9IuRGMxMT1ry+vYYvdFqXbVTGyV0=", "ips": [ "185.191.205.148" @@ -125160,7 +124513,6 @@ "region": "Italy", "city": "Milan", "hostname": "it-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "PG6oqmH+m3JPVRBjfkbBlI/72noVZ8KrnSRq7GuGink=", "ips": [ "37.120.135.84" @@ -125184,7 +124536,6 @@ "region": "Italy", "city": "Milan", "hostname": "it-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "QI+u918O4tyAtoV37B6HVdiQeZoEUi0dWXhSsC3LiWQ=", "ips": [ "84.17.59.67" @@ -125208,7 +124559,6 @@ "region": "Italy", "city": "Milan", "hostname": "it-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "PG6oqmH+m3JPVRBjfkbBlI/72noVZ8KrnSRq7GuGink=", "ips": [ "89.40.182.4" @@ -125232,7 +124582,6 @@ "region": "Italy", "city": "Rome", "hostname": "it-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "CfcxKJFjdKn/idQ/QadOCGHLpcLOLDXr0H+AtA1EqUg=", "ips": [ "87.101.94.196" @@ -125256,7 +124605,6 @@ "region": "Italy", "city": "Rome", "hostname": "it-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "CfcxKJFjdKn/idQ/QadOCGHLpcLOLDXr0H+AtA1EqUg=", "ips": [ "37.120.207.20" @@ -125280,7 +124628,6 @@ "region": "Japan", "city": "Tokyo", "hostname": "jp-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "X6LjCVZ41wLoSbWWZpFET+Ejw0VsGuvJ5utU/l3rKl4=", "ips": [ "193.148.16.244" @@ -125304,7 +124651,6 @@ "region": "Japan", "city": "Tokyo", "hostname": "jp-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "8n68GM7n6dm6Hj3RIIh5q1q6Un52Cq82LYEXHRAtPg4=", "ips": [ "138.199.22.163" @@ -125328,7 +124674,6 @@ "region": "Japan", "city": "Tokyo", "hostname": "jp-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "8n68GM7n6dm6Hj3RIIh5q1q6Un52Cq82LYEXHRAtPg4=", "ips": [ "143.244.40.227" @@ -125352,7 +124697,6 @@ "region": "Japan", "city": "Tokyo", "hostname": "jp-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "X6LjCVZ41wLoSbWWZpFET+Ejw0VsGuvJ5utU/l3rKl4=", "ips": [ "146.70.31.116" @@ -125376,7 +124720,6 @@ "region": "Kenya", "city": "Nairobi", "hostname": "ke-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "S/qPJPWnfwfb1pWIcKN8FH71j5dFt9eH2KbEeU1+QlE=", "ips": [ "45.138.86.228" @@ -125400,7 +124743,6 @@ "region": "Latvia", "city": "Riga", "hostname": "lv-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "hcn+JR0QAhhUVVRND5Djq35caGmBEGlcp4MX/xlm6HE=", "ips": [ "217.199.103.55" @@ -125424,7 +124766,6 @@ "region": "Latvia", "city": "Riga", "hostname": "lv-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "hcn+JR0QAhhUVVRND5Djq35caGmBEGlcp4MX/xlm6HE=", "ips": [ "217.199.121.16" @@ -125448,7 +124789,6 @@ "region": "Latvia", "city": "Riga", "hostname": "lv-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "hcn+JR0QAhhUVVRND5Djq35caGmBEGlcp4MX/xlm6HE=", "ips": [ "217.199.121.223" @@ -125472,7 +124812,6 @@ "region": "Latvia", "city": "Riga", "hostname": "lv-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "Him1/R5t9kASh5ic+MaTmGUlL6ryE/VM4SJNlq6dIyk=", "ips": [ "185.145.245.98" @@ -125496,7 +124835,6 @@ "region": "Latvia", "city": "Riga", "hostname": "lv-012.whiskergalaxy.com", - "udp": true, "wgpubkey": "Him1/R5t9kASh5ic+MaTmGUlL6ryE/VM4SJNlq6dIyk=", "ips": [ "185.145.245.99" @@ -125520,7 +124858,6 @@ "region": "Lithuania", "city": "Siauliai", "hostname": "lt-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "KEVlEKE4qS5w7sJQ7DY3TgqwAgT/47vbZxazkC/F2EQ=", "ips": [ "185.64.104.114" @@ -125544,7 +124881,6 @@ "region": "Lithuania", "city": "Vilnius", "hostname": "lt-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "0CUpqMsVggxsjvdZewCsBFsw84goCitq0G9nytQhpDw=", "ips": [ "37.156.216.148" @@ -125568,7 +124904,6 @@ "region": "Lithuania", "city": "Vilnius", "hostname": "lt-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "0CUpqMsVggxsjvdZewCsBFsw84goCitq0G9nytQhpDw=", "ips": [ "37.156.216.132" @@ -125592,7 +124927,6 @@ "region": "Luxembourg", "city": "Luxembourg", "hostname": "lu-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "BzMLell5uUM/d9aNGaGMog+GFH36s4dFO0WuQ6/VxCg=", "ips": [ "185.221.132.228" @@ -125616,7 +124950,6 @@ "region": "Malaysia", "city": "Kuala Lumpur", "hostname": "my-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", "ips": [ "150.107.76.120" @@ -125640,7 +124973,6 @@ "region": "Malaysia", "city": "Kuala Lumpur", "hostname": "my-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", "ips": [ "202.176.4.182" @@ -125664,7 +124996,6 @@ "region": "Malaysia", "city": "Kuala Lumpur", "hostname": "my-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", "ips": [ "202.176.4.166" @@ -125688,7 +125019,6 @@ "region": "Malaysia", "city": "Kuala Lumpur", "hostname": "my-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "7r3RICLhFxj54Udb9heUGeBoI814UAuaUJwc65IbMnw=", "ips": [ "202.176.4.174" @@ -125712,7 +125042,6 @@ "region": "Mexico", "city": "Guadalajara", "hostname": "mx-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "q/CS73OrUjXuQZH8VGIWVLVKVOePMVs1CtyMATxP63A=", "ips": [ "201.168.77.124" @@ -125736,7 +125065,6 @@ "region": "Mexico", "city": "Mexico City", "hostname": "mx-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "7ENBA/g5BS80C5Y8zoyk9tOMe/MOkvfKztDjzDgjgVc=", "ips": [ "190.103.179.212" @@ -125760,7 +125088,6 @@ "region": "Mexico", "city": "Mexico City", "hostname": "mx-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "7ENBA/g5BS80C5Y8zoyk9tOMe/MOkvfKztDjzDgjgVc=", "ips": [ "190.103.179.218" @@ -125784,7 +125111,6 @@ "region": "Moldova", "city": "Chisinau", "hostname": "md-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "HHDA7gntK+JWWxilBUsDI1FMgeGZtVFKKhbWVIbwMC0=", "ips": [ "178.175.144.124" @@ -125808,7 +125134,6 @@ "region": "Moldova", "city": "Chisinau", "hostname": "md-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "HHDA7gntK+JWWxilBUsDI1FMgeGZtVFKKhbWVIbwMC0=", "ips": [ "178.175.134.188" @@ -125832,7 +125157,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", "ips": [ "185.212.171.132" @@ -125856,7 +125180,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", "ips": [ "185.253.96.4" @@ -125880,7 +125203,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "pLzFr9exM2Z5oXw0iuKnXIJZxa4I0UEmyFC85sHtDwk=", "ips": [ "84.17.46.3" @@ -125904,7 +125226,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-013.whiskergalaxy.com", - "udp": true, "wgpubkey": "EN0anJ12SaB6+aNVh1iRNQ9wEqMlwXTDv4OzAGhm1zw=", "ips": [ "72.11.157.68" @@ -125928,7 +125249,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-014.whiskergalaxy.com", - "udp": true, "wgpubkey": "EN0anJ12SaB6+aNVh1iRNQ9wEqMlwXTDv4OzAGhm1zw=", "ips": [ "72.11.157.36" @@ -125952,7 +125272,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-015.whiskergalaxy.com", - "udp": true, "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", "ips": [ "109.201.130.3" @@ -125976,7 +125295,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-019.whiskergalaxy.com", - "udp": true, "wgpubkey": "c9QHUQhVUNIYqcp5HQ4gwoSoKzAgK8uSsoiJUrlriDA=", "ips": [ "185.156.172.164" @@ -126000,7 +125318,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-020.whiskergalaxy.com", - "udp": true, "wgpubkey": "pLzFr9exM2Z5oXw0iuKnXIJZxa4I0UEmyFC85sHtDwk=", "ips": [ "195.181.172.147" @@ -126024,7 +125341,6 @@ "region": "Netherlands", "city": "Amsterdam", "hostname": "nl-037.whiskergalaxy.com", - "udp": true, "wgpubkey": "cwzVI0WaEnJHhkSzrRdStijZSjVL/fd/jWNxShL0fTo=", "ips": [ "185.107.81.131" @@ -126048,7 +125364,6 @@ "region": "New Zealand", "city": "Auckland", "hostname": "nz-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "LxvdxRlnn73teVay3m0wY8tP1131yCbfnCAftD+p7VE=", "ips": [ "103.62.49.114" @@ -126072,7 +125387,6 @@ "region": "New Zealand", "city": "Auckland", "hostname": "nz-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "el0He87GLmmywBmn7ErEiuKd5Bjc6Q4zWciL86rYcxw=", "ips": [ "103.108.94.164" @@ -126096,7 +125410,6 @@ "region": "North Macedonia", "city": "Skopje", "hostname": "mk-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "9J0kA4c4i7N/+6B+3j0zFkDTHocZNsw6eK6+sLZ1qCQ=", "ips": [ "185.225.28.52" @@ -126120,7 +125433,6 @@ "region": "Norway", "city": "Oslo", "hostname": "no-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", "ips": [ "185.206.225.132" @@ -126144,7 +125456,6 @@ "region": "Norway", "city": "Oslo", "hostname": "no-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", "ips": [ "37.120.203.68" @@ -126168,7 +125479,6 @@ "region": "Norway", "city": "Oslo", "hostname": "no-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "y+Kvlfz0z8DF17hVvEezMml3SH3OaB2l5l09DPdQNCk=", "ips": [ "37.120.149.52" @@ -126192,7 +125502,6 @@ "region": "Panama", "city": "Panama City", "hostname": "pa-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "3L8yhe+v7TzBeesOFxSdU2VUa8FG4PTuoiiUoV7DAGY=", "ips": [ "138.186.142.204" @@ -126216,7 +125525,6 @@ "region": "Peru", "city": "Lima", "hostname": "pe-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "ZrLVHs2FNXanFBtymCd64gZNNixH7k2K5F9+O+xpt0o=", "ips": [ "190.120.229.140" @@ -126240,7 +125548,6 @@ "region": "Philippines", "city": "Manila", "hostname": "ph-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "J2Cy7FP1gYxd3TDaw4xialgPusIxQUfXUYWzqhv/KWI=", "ips": [ "141.98.215.212" @@ -126264,7 +125571,6 @@ "region": "Philippines", "city": "Manila", "hostname": "ph-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "J2Cy7FP1gYxd3TDaw4xialgPusIxQUfXUYWzqhv/KWI=", "ips": [ "141.98.215.228" @@ -126288,7 +125594,6 @@ "region": "Poland", "city": "Gdansk", "hostname": "pl-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "4RW2y35hBMICisW6aAEnR4ksT7rjOEmFx2+7pjqKuiA=", "ips": [ "5.133.11.117" @@ -126312,7 +125617,6 @@ "region": "Poland", "city": "Warsaw", "hostname": "pl-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "aZkVfQ47eZjQXlFXaXR/joai25TTXOH0jk8JU4S+718=", "ips": [ "185.244.214.36" @@ -126336,7 +125640,6 @@ "region": "Poland", "city": "Warsaw", "hostname": "pl-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "MYoOwWssF5fWZ+bOQINzfitdjwyqiHcJhr607wSAzEY=", "ips": [ "84.17.55.99" @@ -126360,7 +125663,6 @@ "region": "Portugal", "city": "Lisbon", "hostname": "pt-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "olUvyUS7X592mAkw3tV1g4drB4XyNl7422F5zo6pd0o=", "ips": [ "94.46.13.216" @@ -126384,7 +125686,6 @@ "region": "Portugal", "city": "Lisbon", "hostname": "pt-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "olUvyUS7X592mAkw3tV1g4drB4XyNl7422F5zo6pd0o=", "ips": [ "185.15.21.67" @@ -126408,7 +125709,6 @@ "region": "Romania", "city": "Bucharest", "hostname": "ro-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "eIYiubmBdTz6WEopGNvlou37zzJ4/wD0LgsQudpiAgA=", "ips": [ "91.207.102.148" @@ -126432,7 +125732,6 @@ "region": "Romania", "city": "Bucharest", "hostname": "ro-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "eIYiubmBdTz6WEopGNvlou37zzJ4/wD0LgsQudpiAgA=", "ips": [ "146.70.97.180" @@ -126456,7 +125755,6 @@ "region": "Russia", "city": "Moscow", "hostname": "ru-021.whiskergalaxy.com", - "udp": true, "wgpubkey": "A557Tcs9ezMHjMO3QoCox2fgcc9/uR/nOjbw28AKqkg=", "ips": [ "95.143.177.99" @@ -126480,7 +125778,6 @@ "region": "Russia", "city": "Moscow", "hostname": "ru-022.whiskergalaxy.com", - "udp": true, "wgpubkey": "A557Tcs9ezMHjMO3QoCox2fgcc9/uR/nOjbw28AKqkg=", "ips": [ "95.143.177.67" @@ -126504,7 +125801,6 @@ "region": "Russia", "city": "Saint Petersburg", "hostname": "ru-012.whiskergalaxy.com", - "udp": true, "wgpubkey": "gLPWBcPANL0mgwEkImb6PUJmR2ncz7S9DKIDDYvgJkk=", "ips": [ "188.124.42.116" @@ -126528,7 +125824,6 @@ "region": "Russia", "city": "Saint Petersburg", "hostname": "ru-013.whiskergalaxy.com", - "udp": true, "wgpubkey": "gLPWBcPANL0mgwEkImb6PUJmR2ncz7S9DKIDDYvgJkk=", "ips": [ "188.124.42.100" @@ -126552,7 +125847,6 @@ "region": "Russia", "city": "Saint Petersburg", "hostname": "ru-016.whiskergalaxy.com", - "udp": true, "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", "ips": [ "94.242.50.215" @@ -126576,7 +125870,6 @@ "region": "Russia", "city": "Saint Petersburg", "hostname": "ru-017.whiskergalaxy.com", - "udp": true, "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", "ips": [ "94.242.50.205" @@ -126600,7 +125893,6 @@ "region": "Russia", "city": "Saint Petersburg", "hostname": "ru-018.whiskergalaxy.com", - "udp": true, "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", "ips": [ "94.242.50.195" @@ -126624,7 +125916,6 @@ "region": "Russia", "city": "Saint Petersburg", "hostname": "ru-019.whiskergalaxy.com", - "udp": true, "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", "ips": [ "94.242.50.185" @@ -126648,7 +125939,6 @@ "region": "Russia", "city": "Saint Petersburg", "hostname": "ru-020.whiskergalaxy.com", - "udp": true, "wgpubkey": "Yom91OWyt0otz1S4hgQMhp1q1y8tpDvUWwVkNXpmpjc=", "ips": [ "94.242.50.175" @@ -126672,7 +125962,6 @@ "region": "Serbia", "city": "Belgrade", "hostname": "rs-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "SZAf6bGig5dmm+dihnqRQMOEr27FK9NG8Vklmj3IQ0o=", "ips": [ "141.98.103.20" @@ -126696,7 +125985,6 @@ "region": "Serbia", "city": "Belgrade", "hostname": "rs-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "SZAf6bGig5dmm+dihnqRQMOEr27FK9NG8Vklmj3IQ0o=", "ips": [ "146.70.54.116" @@ -126720,7 +126008,6 @@ "region": "Singapore", "city": "Singapore", "hostname": "sg-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "ePfazP+V1DkyyzK2VpSKS1JFiChU2TpO6jyYOmjnRAw=", "ips": [ "185.200.117.164" @@ -126744,7 +126031,6 @@ "region": "Singapore", "city": "Singapore", "hostname": "sg-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "ePfazP+V1DkyyzK2VpSKS1JFiChU2TpO6jyYOmjnRAw=", "ips": [ "82.102.25.132" @@ -126768,7 +126054,6 @@ "region": "Singapore", "city": "Singapore", "hostname": "sg-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "tJa6iPx6mpOktn5KoalMslWcpg6pRUdVx3bKDi3wtDg=", "ips": [ "103.62.48.225" @@ -126792,7 +126077,6 @@ "region": "Singapore", "city": "Singapore", "hostname": "sg-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "sv9o+LudivUcZh3f92hEFFu5KGCT/2QISYy3OpPC0h0=", "ips": [ "156.146.56.99" @@ -126816,7 +126100,6 @@ "region": "Singapore", "city": "Singapore", "hostname": "sg-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "sv9o+LudivUcZh3f92hEFFu5KGCT/2QISYy3OpPC0h0=", "ips": [ "156.146.56.112" @@ -126840,7 +126123,6 @@ "region": "Singapore", "city": "Singapore", "hostname": "sg-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "tJa6iPx6mpOktn5KoalMslWcpg6pRUdVx3bKDi3wtDg=", "ips": [ "103.107.198.228" @@ -126864,7 +126146,6 @@ "region": "Singapore", "city": "Singapore", "hostname": "sg-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "ePfazP+V1DkyyzK2VpSKS1JFiChU2TpO6jyYOmjnRAw=", "ips": [ "146.70.29.180" @@ -126888,7 +126169,6 @@ "region": "Slovakia", "city": "Bratislava", "hostname": "sk-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "87RdB427Hxehe3ePG8mSpPBsdwGgKWwAkEtbleThckw=", "ips": [ "185.245.85.4" @@ -126912,7 +126192,6 @@ "region": "Slovakia", "city": "Bratislava", "hostname": "sk-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "87RdB427Hxehe3ePG8mSpPBsdwGgKWwAkEtbleThckw=", "ips": [ "185.245.85.100" @@ -126936,7 +126215,6 @@ "region": "South Africa", "city": "Johannesburg", "hostname": "za-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", "ips": [ "197.242.157.255" @@ -126960,7 +126238,6 @@ "region": "South Africa", "city": "Johannesburg", "hostname": "za-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", "ips": [ "197.242.156.56" @@ -126984,7 +126261,6 @@ "region": "South Africa", "city": "Johannesburg", "hostname": "za-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "stPvzj5yM1z5Qg9H3gMvAKNPJLU0X3SeUSJPg3wqDR8=", "ips": [ "165.73.248.92" @@ -127008,7 +126284,6 @@ "region": "South Africa", "city": "Johannesburg", "hostname": "za-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "Nh5LEJT44xbuvTQnv3OZ0bXi09BFXV4SBB1XVMI12Ec=", "ips": [ "197.242.159.229" @@ -127032,7 +126307,6 @@ "region": "South Africa", "city": "Johannesburg", "hostname": "za-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "pS/8DkpghU/W12/7xxO/+NMHG0zR0M3nMzeFGLui2Xs=", "ips": [ "169.255.58.178" @@ -127056,7 +126330,6 @@ "region": "South Korea", "city": "Seoul", "hostname": "kr-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "RVOTg3bu/bDnGE9YYpYv17KejYjGt7/38LeIQW4aLEU=", "ips": [ "218.232.76.138" @@ -127080,7 +126353,6 @@ "region": "South Korea", "city": "Seoul", "hostname": "kr-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "rtk1/cMCEyJw9xgs6v0ef0rsk2bwi+sI/zgbo+gLkko=", "ips": [ "141.98.213.252" @@ -127104,7 +126376,6 @@ "region": "South Korea", "city": "Seoul", "hostname": "kr-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "rtk1/cMCEyJw9xgs6v0ef0rsk2bwi+sI/zgbo+gLkko=", "ips": [ "45.133.194.212" @@ -127128,7 +126399,6 @@ "region": "South Korea", "city": "Seoul", "hostname": "kr-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "4LAPQWjzxtuGHyHjij+ZiM3idLe3xY9IiYNFD/V9akM=", "ips": [ "121.88.85.132" @@ -127152,7 +126422,6 @@ "region": "South Korea", "city": "Seoul", "hostname": "kr-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "RVOTg3bu/bDnGE9YYpYv17KejYjGt7/38LeIQW4aLEU=", "ips": [ "218.232.76.180" @@ -127176,7 +126445,6 @@ "region": "Spain", "city": "Barcelona", "hostname": "es-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "IdglMouv0zOaeA+oNqoN5Gk2I8h4zWlmRxH5qwDFBUI=", "ips": [ "185.253.99.132" @@ -127200,7 +126468,6 @@ "region": "Spain", "city": "Barcelona", "hostname": "es-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "IdglMouv0zOaeA+oNqoN5Gk2I8h4zWlmRxH5qwDFBUI=", "ips": [ "37.120.142.228" @@ -127224,7 +126491,6 @@ "region": "Spain", "city": "Madrid", "hostname": "es-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "3AuxTNwzilEtwUvEd71zqbjjBuGD/XcnOEPnVLn2gWQ=", "ips": [ "89.238.178.44" @@ -127248,7 +126514,6 @@ "region": "Spain", "city": "Madrid", "hostname": "es-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "3AuxTNwzilEtwUvEd71zqbjjBuGD/XcnOEPnVLn2gWQ=", "ips": [ "217.138.218.100" @@ -127272,7 +126537,6 @@ "region": "Sweden", "city": "Stockholm", "hostname": "se-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "PE9KAfm60yg/rr247eAsZb+gVJxrN4NeQLT6sIdYyDc=", "ips": [ "31.13.191.68" @@ -127296,7 +126560,6 @@ "region": "Sweden", "city": "Stockholm", "hostname": "se-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "P5X43E/SgvnJtbrKnJwLFxqFoZGsCghW2SxlXvfdzm0=", "ips": [ "79.142.76.199" @@ -127320,7 +126583,6 @@ "region": "Sweden", "city": "Stockholm", "hostname": "se-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "HENIT1CTAKjPrhG4s64jPJSzEjtEZPRARxA3amm49WU=", "ips": [ "195.181.166.130" @@ -127344,7 +126606,6 @@ "region": "Sweden", "city": "Stockholm", "hostname": "se-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "PE9KAfm60yg/rr247eAsZb+gVJxrN4NeQLT6sIdYyDc=", "ips": [ "146.70.16.244" @@ -127368,7 +126629,6 @@ "region": "Switzerland", "city": "Zurich", "hostname": "ch-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "uFOg97vQhHVCUfZy/HwmGH+dR6/9lpeWZ5tV3PysHRE=", "ips": [ "185.156.175.180" @@ -127392,7 +126652,6 @@ "region": "Switzerland", "city": "Zurich", "hostname": "ch-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "G7LkwWk08Ase/Wi9mnOW77brNBC0vTCemvy1IW1nlV4=", "ips": [ "89.187.165.99" @@ -127416,7 +126675,6 @@ "region": "Switzerland", "city": "Zurich", "hostname": "ch-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "G7LkwWk08Ase/Wi9mnOW77brNBC0vTCemvy1IW1nlV4=", "ips": [ "84.17.53.3" @@ -127440,7 +126698,6 @@ "region": "Switzerland", "city": "Zurich", "hostname": "ch-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "uFOg97vQhHVCUfZy/HwmGH+dR6/9lpeWZ5tV3PysHRE=", "ips": [ "37.120.213.164" @@ -127464,7 +126721,6 @@ "region": "Switzerland", "city": "Zurich", "hostname": "ch-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "3+ehrqWHaqA4lC10BRkscYasaewB2eamMSRda+HSkxQ=", "ips": [ "81.17.29.3" @@ -127488,7 +126744,6 @@ "region": "Switzerland", "city": "Zurich", "hostname": "ch-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "3+ehrqWHaqA4lC10BRkscYasaewB2eamMSRda+HSkxQ=", "ips": [ "31.7.57.243" @@ -127512,7 +126767,6 @@ "region": "Taiwan", "city": "Taipei", "hostname": "tw-008.whiskergalaxy.com", - "udp": true, "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", "ips": [ "103.4.29.78" @@ -127536,7 +126790,6 @@ "region": "Taiwan", "city": "Taipei", "hostname": "tw-009.whiskergalaxy.com", - "udp": true, "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", "ips": [ "185.189.160.13" @@ -127560,7 +126813,6 @@ "region": "Taiwan", "city": "Taipei", "hostname": "tw-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", "ips": [ "185.189.161.50" @@ -127584,7 +126836,6 @@ "region": "Taiwan", "city": "Taipei", "hostname": "tw-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", "ips": [ "185.189.161.51" @@ -127608,7 +126859,6 @@ "region": "Taiwan", "city": "Taipei", "hostname": "tw-012.whiskergalaxy.com", - "udp": true, "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", "ips": [ "185.189.163.176" @@ -127632,7 +126882,6 @@ "region": "Taiwan", "city": "Taipei", "hostname": "tw-013.whiskergalaxy.com", - "udp": true, "wgpubkey": "dAAkV3G3YFurH3+3198clav9vlh4FxB1asqNc0tLeCk=", "ips": [ "185.189.163.219" @@ -127656,7 +126905,6 @@ "region": "Thailand", "city": "Bangkok", "hostname": "th-005.whiskergalaxy.com", - "udp": true, "wgpubkey": "DUUQLXeyl2nC4PCBQ07YsQOStFzr3P2BooWkNu318SA=", "ips": [ "202.129.16.149" @@ -127680,7 +126928,6 @@ "region": "Thailand", "city": "Bangkok", "hostname": "th-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "DUUQLXeyl2nC4PCBQ07YsQOStFzr3P2BooWkNu318SA=", "ips": [ "202.129.16.156" @@ -127704,7 +126951,6 @@ "region": "Turkey", "city": "Bursa", "hostname": "tr-016.whiskergalaxy.com", - "udp": true, "wgpubkey": "ST6xQmd7dcCl8HuR7jBRpAEyc2IOgpVE605uPTIycQg=", "ips": [ "89.252.132.20" @@ -127728,7 +126974,6 @@ "region": "Turkey", "city": "Istanbul", "hostname": "tr-013.whiskergalaxy.com", - "udp": true, "wgpubkey": "PERLcFu5JMk3Cdt4sb45epMLasXqa0+PqRseBKMYMEc=", "ips": [ "46.45.136.100" @@ -127752,7 +126997,6 @@ "region": "Turkey", "city": "Istanbul", "hostname": "tr-014.whiskergalaxy.com", - "udp": true, "wgpubkey": "PERLcFu5JMk3Cdt4sb45epMLasXqa0+PqRseBKMYMEc=", "ips": [ "178.211.33.244" @@ -127776,7 +127020,6 @@ "region": "Turkey", "city": "Istanbul", "hostname": "tr-018.whiskergalaxy.com", - "udp": true, "wgpubkey": "jJUwb5Ekpn3w4fqZiCjO6GDRQ882AeiLjvDx5tYOfTw=", "ips": [ "89.252.132.36" @@ -127800,7 +127043,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-015.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "107.150.31.132" @@ -127824,7 +127066,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-016.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "104.129.18.4" @@ -127848,7 +127089,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-020.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "104.129.18.132" @@ -127872,7 +127112,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-034.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "161.129.70.196" @@ -127896,7 +127135,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-046.whiskergalaxy.com", - "udp": true, "wgpubkey": "v8yTgxOMZjdZkCUoBVMUOiDBYgaNzQ9OfXc+uz2GUDc=", "ips": [ "198.12.76.212" @@ -127920,7 +127158,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-049.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "107.150.31.4" @@ -127944,7 +127181,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-050.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "107.150.31.68" @@ -127968,7 +127204,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-054.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "104.223.92.164" @@ -127992,7 +127227,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-056.whiskergalaxy.com", - "udp": true, "wgpubkey": "v8yTgxOMZjdZkCUoBVMUOiDBYgaNzQ9OfXc+uz2GUDc=", "ips": [ "206.217.143.132" @@ -128016,7 +127250,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-070.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "107.150.30.196" @@ -128040,7 +127273,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-075.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "104.223.95.100" @@ -128064,7 +127296,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-077.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "162.222.198.132" @@ -128088,7 +127319,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-087.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "104.223.93.132" @@ -128112,7 +127342,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-088.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "155.94.216.132" @@ -128136,7 +127365,6 @@ "region": "US Central", "city": "Atlanta", "hostname": "us-central-089.whiskergalaxy.com", - "udp": true, "wgpubkey": "D2Tx/zEgTy2uoH2HLp5EBIFyLkHGEhkhLMYYedpcUFw=", "ips": [ "155.94.216.196" @@ -128160,7 +127388,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-014.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "69.12.94.68" @@ -128184,7 +127411,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-029.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "198.55.125.196" @@ -128208,7 +127434,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-036.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "204.44.112.68" @@ -128232,7 +127457,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-037.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "204.44.112.132" @@ -128256,7 +127480,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-045.whiskergalaxy.com", - "udp": true, "wgpubkey": "OhfZprfgCdrELOzmZyXaVa35AssZyYkzNiAeulqIXis=", "ips": [ "172.241.131.130" @@ -128280,7 +127503,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-055.whiskergalaxy.com", - "udp": true, "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", "ips": [ "206.217.139.20" @@ -128304,7 +127526,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-057.whiskergalaxy.com", - "udp": true, "wgpubkey": "OhfZprfgCdrELOzmZyXaVa35AssZyYkzNiAeulqIXis=", "ips": [ "172.241.26.79" @@ -128328,7 +127549,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-060.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "198.55.126.132" @@ -128352,7 +127572,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-067.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "104.223.98.196" @@ -128376,7 +127595,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-072.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "162.218.120.68" @@ -128400,7 +127618,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-073.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "173.254.250.68" @@ -128424,7 +127641,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-078.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "155.94.248.68" @@ -128448,7 +127664,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-079.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "192.161.189.132" @@ -128472,7 +127687,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-080.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "192.161.188.196" @@ -128496,7 +127710,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-081.whiskergalaxy.com", - "udp": true, "wgpubkey": "pASG4FD9LwOfJukT/wYbUF10gD6v8DVuv5hrNbiOnHQ=", "ips": [ "155.94.249.68" @@ -128520,7 +127733,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-095.whiskergalaxy.com", - "udp": true, "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", "ips": [ "206.217.134.116" @@ -128544,7 +127756,6 @@ "region": "US Central", "city": "Dallas", "hostname": "us-central-096.whiskergalaxy.com", - "udp": true, "wgpubkey": "47tLjymDPpTIBerb+wn02/XNFABF4YDAGwOnijSoZmQ=", "ips": [ "23.95.42.212" @@ -128568,7 +127779,6 @@ "region": "US Central", "city": "Denver", "hostname": "us-central-043.whiskergalaxy.com", - "udp": true, "wgpubkey": "xS6I4AqciTxU4Aox8HiudDs44kpHEuWe+BDc6ifO610=", "ips": [ "199.115.96.84" @@ -128592,7 +127802,6 @@ "region": "US Central", "city": "Denver", "hostname": "us-central-058.whiskergalaxy.com", - "udp": true, "wgpubkey": "c31sdkhmVsucRVa6nSNNSiZ2UHHLdUhq5gvfdJxSnFw=", "ips": [ "198.54.128.117" @@ -128616,7 +127825,6 @@ "region": "US Central", "city": "Denver", "hostname": "us-central-062.whiskergalaxy.com", - "udp": true, "wgpubkey": "xS6I4AqciTxU4Aox8HiudDs44kpHEuWe+BDc6ifO610=", "ips": [ "174.128.251.148" @@ -128640,7 +127848,6 @@ "region": "US Central", "city": "Denver", "hostname": "us-central-071.whiskergalaxy.com", - "udp": true, "wgpubkey": "c31sdkhmVsucRVa6nSNNSiZ2UHHLdUhq5gvfdJxSnFw=", "ips": [ "198.54.128.197" @@ -128664,7 +127871,6 @@ "region": "US Central", "city": "Kansas City", "hostname": "us-central-063.whiskergalaxy.com", - "udp": true, "wgpubkey": "0VAbqR6QprUwYMbgo1Xuel23UzzibC7OIxDJYAe3wx4=", "ips": [ "38.146.5.52" @@ -128688,7 +127894,6 @@ "region": "US Central", "city": "Kansas City", "hostname": "us-central-086.whiskergalaxy.com", - "udp": true, "wgpubkey": "0VAbqR6QprUwYMbgo1Xuel23UzzibC7OIxDJYAe3wx4=", "ips": [ "38.146.5.116" @@ -128712,7 +127917,6 @@ "region": "US East", "city": "Boston", "hostname": "us-east-039.whiskergalaxy.com", - "udp": true, "wgpubkey": "5yBJlSpfxd8Hq4+X4ZD60MYc6tosaMh5inQwA18XCCk=", "ips": [ "199.217.104.228" @@ -128736,7 +127940,6 @@ "region": "US East", "city": "Boston", "hostname": "us-east-051.whiskergalaxy.com", - "udp": true, "wgpubkey": "5yBJlSpfxd8Hq4+X4ZD60MYc6tosaMh5inQwA18XCCk=", "ips": [ "199.217.105.228" @@ -128760,7 +127963,6 @@ "region": "US East", "city": "Buffalo", "hostname": "us-east-045.whiskergalaxy.com", - "udp": true, "wgpubkey": "z77o+FZ5AcTxTvkNyjLv69ZqaQtzFoS6UdtTK1eyoE8=", "ips": [ "104.168.34.148" @@ -128784,7 +127986,6 @@ "region": "US East", "city": "Buffalo", "hostname": "us-east-065.whiskergalaxy.com", - "udp": true, "wgpubkey": "z77o+FZ5AcTxTvkNyjLv69ZqaQtzFoS6UdtTK1eyoE8=", "ips": [ "198.12.64.36" @@ -128808,7 +128009,6 @@ "region": "US East", "city": "Charlotte", "hostname": "us-east-040.whiskergalaxy.com", - "udp": true, "wgpubkey": "FUPy5mxwpV0z7j5d1Pqb37wHcyuqcCKSRDTBu/8kezc=", "ips": [ "67.21.32.146" @@ -128832,7 +128032,6 @@ "region": "US East", "city": "Charlotte", "hostname": "us-east-100.whiskergalaxy.com", - "udp": true, "wgpubkey": "FUPy5mxwpV0z7j5d1Pqb37wHcyuqcCKSRDTBu/8kezc=", "ips": [ "192.158.226.16" @@ -128856,7 +128055,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-015.whiskergalaxy.com", - "udp": true, "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", "ips": [ "68.235.50.228" @@ -128880,7 +128078,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-019.whiskergalaxy.com", - "udp": true, "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", "ips": [ "23.226.141.196" @@ -128904,7 +128101,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-022.whiskergalaxy.com", - "udp": true, "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", "ips": [ "167.160.172.4" @@ -128928,7 +128124,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-047.whiskergalaxy.com", - "udp": true, "wgpubkey": "5LYbbr320XMoXPrLsZex+2cDAMUOnzX5Htpcgb4Uc1c=", "ips": [ "23.83.91.171" @@ -128952,7 +128147,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-053.whiskergalaxy.com", - "udp": true, "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", "ips": [ "107.150.29.132" @@ -128976,7 +128170,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-071.whiskergalaxy.com", - "udp": true, "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", "ips": [ "68.235.35.13" @@ -129000,7 +128193,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-077.whiskergalaxy.com", - "udp": true, "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", "ips": [ "68.235.43.205" @@ -129024,7 +128216,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-083.whiskergalaxy.com", - "udp": true, "wgpubkey": "5LYbbr320XMoXPrLsZex+2cDAMUOnzX5Htpcgb4Uc1c=", "ips": [ "23.19.122.226" @@ -129048,7 +128239,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-086.whiskergalaxy.com", - "udp": true, "wgpubkey": "6O1bKP+apj/JT/aV++aODc1+EHlPO+c0xGyfKXE+k14=", "ips": [ "208.77.22.101" @@ -129072,7 +128262,6 @@ "region": "US East", "city": "Chicago", "hostname": "us-east-101.whiskergalaxy.com", - "udp": true, "wgpubkey": "qt+nrPNqLaB7dNOKD3JWvkG4JbgZgKfHZv7t0818LTg=", "ips": [ "107.150.28.132" @@ -129096,7 +128285,6 @@ "region": "US East", "city": "Cleveland", "hostname": "us-east-078.whiskergalaxy.com", - "udp": true, "wgpubkey": "Ptieqs4YovU0Jxgu9d7rSTapQPp7G+8GYWiwaf8jPlA=", "ips": [ "38.101.74.20" @@ -129120,7 +128308,6 @@ "region": "US East", "city": "Cleveland", "hostname": "us-east-099.whiskergalaxy.com", - "udp": true, "wgpubkey": "Ptieqs4YovU0Jxgu9d7rSTapQPp7G+8GYWiwaf8jPlA=", "ips": [ "38.101.74.84" @@ -129144,7 +128331,6 @@ "region": "US East", "city": "Detroit", "hostname": "us-east-079.whiskergalaxy.com", - "udp": true, "wgpubkey": "IMHoX/bhNghQVQB0pYKi14pwJhkOcLevpiMa7Khaz2I=", "ips": [ "104.244.210.52" @@ -129168,7 +128354,6 @@ "region": "US East", "city": "Detroit", "hostname": "us-east-098.whiskergalaxy.com", - "udp": true, "wgpubkey": "IMHoX/bhNghQVQB0pYKi14pwJhkOcLevpiMa7Khaz2I=", "ips": [ "104.244.210.244" @@ -129192,7 +128377,6 @@ "region": "US East", "city": "Miami", "hostname": "us-east-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "7LiZu9B4qzVwl3jKRVs7ivx/BHi/jnSS/GWSuxEClgk=", "ips": [ "173.44.36.68" @@ -129216,7 +128400,6 @@ "region": "US East", "city": "Miami", "hostname": "us-east-012.whiskergalaxy.com", - "udp": true, "wgpubkey": "1S9LgDyVSo2X34ZG8ukQQ7vqL5RpmXszNe0SYNjiUws=", "ips": [ "45.87.214.36" @@ -129240,7 +128423,6 @@ "region": "US East", "city": "Miami", "hostname": "us-east-049.whiskergalaxy.com", - "udp": true, "wgpubkey": "makkxzTeghSw9LGaFifz0C251aBeDCKhMmtJ8p0E6Uw=", "ips": [ "23.108.51.15" @@ -129264,7 +128446,6 @@ "region": "US East", "city": "Miami", "hostname": "us-east-067.whiskergalaxy.com", - "udp": true, "wgpubkey": "1S9LgDyVSo2X34ZG8ukQQ7vqL5RpmXszNe0SYNjiUws=", "ips": [ "86.106.87.84" @@ -129288,7 +128469,6 @@ "region": "US East", "city": "Miami", "hostname": "us-east-084.whiskergalaxy.com", - "udp": true, "wgpubkey": "makkxzTeghSw9LGaFifz0C251aBeDCKhMmtJ8p0E6Uw=", "ips": [ "23.82.137.73" @@ -129312,7 +128492,6 @@ "region": "US East", "city": "Miami", "hostname": "us-east-088.whiskergalaxy.com", - "udp": true, "wgpubkey": "1S9LgDyVSo2X34ZG8ukQQ7vqL5RpmXszNe0SYNjiUws=", "ips": [ "194.5.215.196" @@ -129336,7 +128515,6 @@ "region": "US East", "city": "Miami", "hostname": "us-east-097.whiskergalaxy.com", - "udp": true, "wgpubkey": "7LiZu9B4qzVwl3jKRVs7ivx/BHi/jnSS/GWSuxEClgk=", "ips": [ "173.44.43.132" @@ -129360,7 +128538,6 @@ "region": "US East", "city": "New Jersey", "hostname": "us-east-020.whiskergalaxy.com", - "udp": true, "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", "ips": [ "162.222.195.68" @@ -129384,7 +128561,6 @@ "region": "US East", "city": "New Jersey", "hostname": "us-east-054.whiskergalaxy.com", - "udp": true, "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", "ips": [ "167.160.167.196" @@ -129408,7 +128584,6 @@ "region": "US East", "city": "New Jersey", "hostname": "us-east-095.whiskergalaxy.com", - "udp": true, "wgpubkey": "cHmeYFIKgOrUDgfx6xOTjPUnnUtUapeLa2xA2XHvBFc=", "ips": [ "173.205.85.164" @@ -129432,7 +128607,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-013.whiskergalaxy.com", - "udp": true, "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", "ips": [ "185.232.22.196" @@ -129456,7 +128630,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-046.whiskergalaxy.com", - "udp": true, "wgpubkey": "8lPLkuOqKEggDfnX6fNo9eO4h7ZE8hrEkSwFGJqoK0M=", "ips": [ "206.217.129.228" @@ -129480,7 +128653,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-050.whiskergalaxy.com", - "udp": true, "wgpubkey": "B8Oyz2mKiUvv3iMiKt7/rhLccCB3KcAYnCj5+fO4hHM=", "ips": [ "173.208.45.34" @@ -129504,7 +128676,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-064.whiskergalaxy.com", - "udp": true, "wgpubkey": "8lPLkuOqKEggDfnX6fNo9eO4h7ZE8hrEkSwFGJqoK0M=", "ips": [ "206.217.128.4" @@ -129528,7 +128699,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-068.whiskergalaxy.com", - "udp": true, "wgpubkey": "B8Oyz2mKiUvv3iMiKt7/rhLccCB3KcAYnCj5+fO4hHM=", "ips": [ "23.81.64.130" @@ -129552,7 +128722,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-074.whiskergalaxy.com", - "udp": true, "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", "ips": [ "217.138.255.180" @@ -129576,7 +128745,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-094.whiskergalaxy.com", - "udp": true, "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", "ips": [ "217.138.255.164" @@ -129600,7 +128768,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-096.whiskergalaxy.com", - "udp": true, "wgpubkey": "VB4VC+CyLyFtYO86OsTV4Z17X/sa1t3pPqbJejI/Enc=", "ips": [ "89.187.177.51" @@ -129624,7 +128791,6 @@ "region": "US East", "city": "New York", "hostname": "us-east-103.whiskergalaxy.com", - "udp": true, "wgpubkey": "Tu8tlHPMbkXRANX3AF1Te+stynfOJS1mCtIOjiRToCg=", "ips": [ "212.103.48.68" @@ -129648,7 +128814,6 @@ "region": "US East", "city": "Orlando", "hostname": "us-east-052.whiskergalaxy.com", - "udp": true, "wgpubkey": "b5fIKEXhihCI7f4NOkQO/2BOd+bYHa0c05OylImgB0E=", "ips": [ "198.147.22.227" @@ -129672,7 +128837,6 @@ "region": "US East", "city": "Orlando", "hostname": "us-east-082.whiskergalaxy.com", - "udp": true, "wgpubkey": "b5fIKEXhihCI7f4NOkQO/2BOd+bYHa0c05OylImgB0E=", "ips": [ "66.115.182.132" @@ -129696,7 +128860,6 @@ "region": "US East", "city": "Philadelphia", "hostname": "us-east-060.whiskergalaxy.com", - "udp": true, "wgpubkey": "iZMzm2yjt8zU5xgsiw0TyRUbIXHsO1pZ6VrMvkRG3ng=", "ips": [ "76.72.175.100" @@ -129720,7 +128883,6 @@ "region": "US East", "city": "Philadelphia", "hostname": "us-east-061.whiskergalaxy.com", - "udp": true, "wgpubkey": "oZSSjyLgPsssnrWYUZYiU5x1wF4wuuENQUoY5S4oeHc=", "ips": [ "23.172.112.228" @@ -129744,7 +128906,6 @@ "region": "US East", "city": "Philadelphia", "hostname": "us-east-107.whiskergalaxy.com", - "udp": true, "wgpubkey": "iZMzm2yjt8zU5xgsiw0TyRUbIXHsO1pZ6VrMvkRG3ng=", "ips": [ "76.72.175.164" @@ -129768,7 +128929,6 @@ "region": "US East", "city": "South Bend", "hostname": "us-east-105.whiskergalaxy.com", - "udp": true, "wgpubkey": "E2MkaH7nxlerMCZsZu/KTJOTb5Typp9A2DuOqzbdvTM=", "ips": [ "38.67.247.68" @@ -129792,7 +128952,6 @@ "region": "US East", "city": "South Bend", "hostname": "us-east-106.whiskergalaxy.com", - "udp": true, "wgpubkey": "E2MkaH7nxlerMCZsZu/KTJOTb5Typp9A2DuOqzbdvTM=", "ips": [ "38.67.247.52" @@ -129816,7 +128975,6 @@ "region": "US East", "city": "Tampa", "hostname": "us-east-110.whiskergalaxy.com", - "udp": true, "wgpubkey": "jqf7HHmkBdzk1kkGLD20O/EzLHSFV2Bc7z4MeHcP7iA=", "ips": [ "38.95.13.132" @@ -129840,7 +128998,6 @@ "region": "US East", "city": "Washington DC", "hostname": "us-east-089.whiskergalaxy.com", - "udp": true, "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", "ips": [ "198.7.56.228" @@ -129864,7 +129021,6 @@ "region": "US East", "city": "Washington DC", "hostname": "us-east-090.whiskergalaxy.com", - "udp": true, "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", "ips": [ "207.244.91.131" @@ -129888,7 +129044,6 @@ "region": "US East", "city": "Washington DC", "hostname": "us-east-092.whiskergalaxy.com", - "udp": true, "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", "ips": [ "207.244.91.144" @@ -129912,7 +129067,6 @@ "region": "US East", "city": "Washington DC", "hostname": "us-east-093.whiskergalaxy.com", - "udp": true, "wgpubkey": "uZxQR1klZ1Ere9kA8Thp7CUgAlviSWXdYjagsNdunjM=", "ips": [ "198.7.56.239" @@ -129936,7 +129090,6 @@ "region": "US West", "city": "Bend", "hostname": "us-west-038.whiskergalaxy.com", - "udp": true, "wgpubkey": "oIt9F8IfWqCvSQACrDcmfLPFrhn+RtG+Mr9/sd4VSSU=", "ips": [ "104.152.222.34" @@ -129960,7 +129113,6 @@ "region": "US West", "city": "Bend", "hostname": "us-west-072.whiskergalaxy.com", - "udp": true, "wgpubkey": "oIt9F8IfWqCvSQACrDcmfLPFrhn+RtG+Mr9/sd4VSSU=", "ips": [ "104.255.169.111" @@ -129984,7 +129136,6 @@ "region": "US West", "city": "Las Vegas", "hostname": "us-west-018.whiskergalaxy.com", - "udp": true, "wgpubkey": "XF69enunWI6bbHHwgRbE/jAvuM6plb4kyGcObYKvLVc=", "ips": [ "82.102.30.68" @@ -130008,7 +129159,6 @@ "region": "US West", "city": "Las Vegas", "hostname": "us-west-030.whiskergalaxy.com", - "udp": true, "wgpubkey": "XF69enunWI6bbHHwgRbE/jAvuM6plb4kyGcObYKvLVc=", "ips": [ "37.120.147.164" @@ -130032,7 +129182,6 @@ "region": "US West", "city": "Las Vegas", "hostname": "us-west-074.whiskergalaxy.com", - "udp": true, "wgpubkey": "XF69enunWI6bbHHwgRbE/jAvuM6plb4kyGcObYKvLVc=", "ips": [ "82.102.31.36" @@ -130056,7 +129205,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", "ips": [ "185.236.200.36" @@ -130080,7 +129228,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-015.whiskergalaxy.com", - "udp": true, "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", "ips": [ "216.45.53.132" @@ -130104,7 +129251,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-027.whiskergalaxy.com", - "udp": true, "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", "ips": [ "212.103.49.68" @@ -130128,7 +129274,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-040.whiskergalaxy.com", - "udp": true, "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", "ips": [ "89.187.185.35" @@ -130152,7 +129297,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-044.whiskergalaxy.com", - "udp": true, "wgpubkey": "EOprktmhNg2NV9HqyHTs+uLNnTwpVnXe1/wBIFesQTE=", "ips": [ "192.3.20.52" @@ -130176,7 +129320,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-047.whiskergalaxy.com", - "udp": true, "wgpubkey": "sgBIEKuocQBegrbXRmTVl6QvbhdXj2MQlIrhfEMf3RQ=", "ips": [ "172.241.214.203" @@ -130200,7 +129343,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-055.whiskergalaxy.com", - "udp": true, "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", "ips": [ "104.129.3.68" @@ -130224,7 +129366,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-059.whiskergalaxy.com", - "udp": true, "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", "ips": [ "104.129.3.164" @@ -130248,7 +129389,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-060.whiskergalaxy.com", - "udp": true, "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", "ips": [ "217.138.217.52" @@ -130272,7 +129412,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-063.whiskergalaxy.com", - "udp": true, "wgpubkey": "EOprktmhNg2NV9HqyHTs+uLNnTwpVnXe1/wBIFesQTE=", "ips": [ "198.23.242.148" @@ -130296,7 +129435,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-065.whiskergalaxy.com", - "udp": true, "wgpubkey": "fvmyuUJF8JvjzIts5bROwwZQ0zkSB7lk/q8E4G3+F20=", "ips": [ "217.138.217.212" @@ -130320,7 +129458,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-066.whiskergalaxy.com", - "udp": true, "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", "ips": [ "89.187.187.99" @@ -130344,7 +129481,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-069.whiskergalaxy.com", - "udp": true, "wgpubkey": "7CGKj3gnMrJ73Q3TX/YPtk94ZqX+H3kfBbMwfhze/Hg=", "ips": [ "185.152.67.227" @@ -130368,7 +129504,6 @@ "region": "US West", "city": "Los Angeles", "hostname": "us-west-070.whiskergalaxy.com", - "udp": true, "wgpubkey": "99Kk/D1AJ2R1Tjtcvv2JaiKrBU0Jp2z9543lX1bSfUE=", "ips": [ "104.129.4.68" @@ -130392,7 +129527,6 @@ "region": "US West", "city": "Phoenix", "hostname": "us-west-046.whiskergalaxy.com", - "udp": true, "wgpubkey": "ZXYlnCS0zJGhpsYDhCxs8pYXsB00yqxhagTBjRD002U=", "ips": [ "23.83.130.167" @@ -130416,7 +129550,6 @@ "region": "US West", "city": "Phoenix", "hostname": "us-west-061.whiskergalaxy.com", - "udp": true, "wgpubkey": "ZXYlnCS0zJGhpsYDhCxs8pYXsB00yqxhagTBjRD002U=", "ips": [ "23.83.184.129" @@ -130440,7 +129573,6 @@ "region": "US West", "city": "San Francisco", "hostname": "us-west-048.whiskergalaxy.com", - "udp": true, "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", "ips": [ "172.241.250.171" @@ -130464,7 +129596,6 @@ "region": "US West", "city": "San Francisco", "hostname": "us-west-053.whiskergalaxy.com", - "udp": true, "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", "ips": [ "209.58.129.122" @@ -130488,7 +129619,6 @@ "region": "US West", "city": "San Francisco", "hostname": "us-west-054.whiskergalaxy.com", - "udp": true, "wgpubkey": "6GllLFSyxxwlqV9Yd9xij83CYgfGvfQGgN6SNh9h0xM=", "ips": [ "172.255.125.161" @@ -130512,7 +129642,6 @@ "region": "US West", "city": "San Jose", "hostname": "us-west-052.whiskergalaxy.com", - "udp": true, "wgpubkey": "DBXvFCQL1KxJkVfJGiFzAru/1ClQi54EV1GHgoyIsWY=", "ips": [ "66.115.176.4" @@ -130536,7 +129665,6 @@ "region": "US West", "city": "San Jose", "hostname": "us-west-067.whiskergalaxy.com", - "udp": true, "wgpubkey": "DBXvFCQL1KxJkVfJGiFzAru/1ClQi54EV1GHgoyIsWY=", "ips": [ "66.115.165.228" @@ -130560,7 +129688,6 @@ "region": "US West", "city": "Santa Clara", "hostname": "us-west-050.whiskergalaxy.com", - "udp": true, "wgpubkey": "/oz2frQv99JveBgmTXW22QXIEulQURK79BW+ugk8fCE=", "ips": [ "167.88.60.228" @@ -130584,7 +129711,6 @@ "region": "US West", "city": "Santa Clara", "hostname": "us-west-051.whiskergalaxy.com", - "udp": true, "wgpubkey": "/oz2frQv99JveBgmTXW22QXIEulQURK79BW+ugk8fCE=", "ips": [ "167.88.60.244" @@ -130608,7 +129734,6 @@ "region": "US West", "city": "Seattle", "hostname": "us-west-043.whiskergalaxy.com", - "udp": true, "wgpubkey": "mRksyUF7wDK/8uBoPoEujp+yoUhjhq0N2LnNJFJnmiE=", "ips": [ "23.94.74.100" @@ -130632,7 +129757,6 @@ "region": "US West", "city": "Seattle", "hostname": "us-west-045.whiskergalaxy.com", - "udp": true, "wgpubkey": "mPzcl2obsDyjjBl4tExF+gSle0jEhv9bHRZEi8D0PQA=", "ips": [ "64.120.2.175" @@ -130656,7 +129780,6 @@ "region": "US West", "city": "Seattle", "hostname": "us-west-056.whiskergalaxy.com", - "udp": true, "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", "ips": [ "104.129.56.68" @@ -130680,7 +129803,6 @@ "region": "US West", "city": "Seattle", "hostname": "us-west-057.whiskergalaxy.com", - "udp": true, "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", "ips": [ "104.129.56.132" @@ -130704,7 +129826,6 @@ "region": "US West", "city": "Seattle", "hostname": "us-west-062.whiskergalaxy.com", - "udp": true, "wgpubkey": "mRksyUF7wDK/8uBoPoEujp+yoUhjhq0N2LnNJFJnmiE=", "ips": [ "198.12.116.196" @@ -130728,7 +129849,6 @@ "region": "US West", "city": "Seattle", "hostname": "us-west-071.whiskergalaxy.com", - "udp": true, "wgpubkey": "89DUtbYYyXcAktaB2cnCVA/YiZQEddYHuOz2K0vBAn4=", "ips": [ "104.129.56.4" @@ -130752,7 +129872,6 @@ "region": "Ukraine", "city": "Kyiv", "hostname": "ua-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "xd+b0SNB38ILyN8mfY3d7w7zLggbq4CkkxqPavP2OUk=", "ips": [ "37.19.218.3" @@ -130776,7 +129895,6 @@ "region": "Ukraine", "city": "Kyiv", "hostname": "ua-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "xd+b0SNB38ILyN8mfY3d7w7zLggbq4CkkxqPavP2OUk=", "ips": [ "37.19.218.17" @@ -130800,7 +129918,6 @@ "region": "United Arab Emirates", "city": "Dubai", "hostname": "ae-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "TKpGTxyjCr7+CiVhaYulaLZ7pnXEsg4135ZIlz99qwc=", "ips": [ "45.9.249.44" @@ -130824,7 +129941,6 @@ "region": "United Kingdom", "city": "Edinburgh", "hostname": "uk-026.whiskergalaxy.com", - "udp": true, "wgpubkey": "bGn6yuCFQWWF8+ZMGlJ0M6+IJRlkLXn0/UI/mvIyYwQ=", "ips": [ "193.36.118.244" @@ -130848,7 +129964,6 @@ "region": "United Kingdom", "city": "Edinburgh", "hostname": "uk-030.whiskergalaxy.com", - "udp": true, "wgpubkey": "bGn6yuCFQWWF8+ZMGlJ0M6+IJRlkLXn0/UI/mvIyYwQ=", "ips": [ "193.36.118.228" @@ -130872,7 +129987,6 @@ "region": "United Kingdom", "city": "London", "hostname": "uk-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", "ips": [ "185.212.168.134" @@ -130896,7 +130010,6 @@ "region": "United Kingdom", "city": "London", "hostname": "uk-013.whiskergalaxy.com", - "udp": true, "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", "ips": [ "89.238.150.230" @@ -130920,7 +130033,6 @@ "region": "United Kingdom", "city": "London", "hostname": "uk-014.whiskergalaxy.com", - "udp": true, "wgpubkey": "qWSr7Tf40kvS+0kv4TbpSb6EevhSvn3kuXsjn2eWbA4=", "ips": [ "202.43.6.2" @@ -130944,7 +130056,6 @@ "region": "United Kingdom", "city": "London", "hostname": "uk-015.whiskergalaxy.com", - "udp": true, "wgpubkey": "qWSr7Tf40kvS+0kv4TbpSb6EevhSvn3kuXsjn2eWbA4=", "ips": [ "202.43.6.34" @@ -130968,7 +130079,6 @@ "region": "United Kingdom", "city": "London", "hostname": "uk-021.whiskergalaxy.com", - "udp": true, "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", "ips": [ "212.102.63.33" @@ -130992,7 +130102,6 @@ "region": "United Kingdom", "city": "London", "hostname": "uk-024.whiskergalaxy.com", - "udp": true, "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", "ips": [ "217.138.254.52" @@ -131016,7 +130125,6 @@ "region": "United Kingdom", "city": "London", "hostname": "uk-028.whiskergalaxy.com", - "udp": true, "wgpubkey": "895TAMNSeQymq8Qr6dxHh9FdRfNweZt5GdDDMB0s5XE=", "ips": [ "212.102.63.94" @@ -131040,7 +130148,6 @@ "region": "United Kingdom", "city": "London", "hostname": "uk-033.whiskergalaxy.com", - "udp": true, "wgpubkey": "yrmgyxaJAxTEth7Gc8lXOQVHn9Gn/fzd4cLE+0WZjFI=", "ips": [ "146.70.95.116" @@ -131064,7 +130171,6 @@ "region": "United Kingdom", "city": "Manchester", "hostname": "uk-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", "ips": [ "89.238.135.134" @@ -131088,7 +130194,6 @@ "region": "United Kingdom", "city": "Manchester", "hostname": "uk-025.whiskergalaxy.com", - "udp": true, "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", "ips": [ "89.44.201.100" @@ -131112,7 +130217,6 @@ "region": "United Kingdom", "city": "Manchester", "hostname": "uk-027.whiskergalaxy.com", - "udp": true, "wgpubkey": "oeqDhAeoxw1g/6cKq/fo4ubgssbwhO3K2Nkmn6JVhg8=", "ips": [ "84.252.95.132" @@ -131136,7 +130240,6 @@ "region": "Vietnam", "city": "Hanoi", "hostname": "vn-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "SxBT11IISNRou7thGo5A1QtaMjfzPIzZXDxdYEbDxhE=", "ips": [ "103.9.79.187" @@ -131160,7 +130263,6 @@ "region": "Vietnam", "city": "Hanoi", "hostname": "vn-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "SxBT11IISNRou7thGo5A1QtaMjfzPIzZXDxdYEbDxhE=", "ips": [ "103.9.79.220" @@ -131184,7 +130286,6 @@ "region": "WINDFLIX CA", "city": "Toronto", "hostname": "wf-ca-003.whiskergalaxy.com", - "udp": true, "wgpubkey": "dxMoXE/9ztTLm2UK0g6GxO1TLya8vxF7pZpX7LABuAI=", "ips": [ "149.57.28.50" @@ -131208,7 +130309,6 @@ "region": "WINDFLIX CA", "city": "Toronto", "hostname": "wf-ca-004.whiskergalaxy.com", - "udp": true, "wgpubkey": "dxMoXE/9ztTLm2UK0g6GxO1TLya8vxF7pZpX7LABuAI=", "ips": [ "104.254.92.100" @@ -131232,7 +130332,6 @@ "region": "WINDFLIX JP", "city": "Tokyo", "hostname": "wf-jp-002.whiskergalaxy.com", - "udp": true, "wgpubkey": "RDqLEpYi8AT8yjjNQP12tsBvGxPekebtT0SC+gk2oAw=", "ips": [ "5.181.235.68" @@ -131256,7 +130355,6 @@ "region": "WINDFLIX UK", "city": "London", "hostname": "wf-uk-001.whiskergalaxy.com", - "udp": true, "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", "ips": [ "45.9.248.4" @@ -131280,7 +130378,6 @@ "region": "WINDFLIX UK", "city": "London", "hostname": "wf-uk-006.whiskergalaxy.com", - "udp": true, "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", "ips": [ "81.92.200.86" @@ -131304,7 +130401,6 @@ "region": "WINDFLIX UK", "city": "London", "hostname": "wf-uk-007.whiskergalaxy.com", - "udp": true, "wgpubkey": "XKu6eYKMo3aqVxjOEo4vNY11qZYUsMG+WXWnQlCoKR0=", "ips": [ "89.47.62.84" @@ -131328,7 +130424,6 @@ "region": "WINDFLIX US", "city": "New York", "hostname": "wf-us-010.whiskergalaxy.com", - "udp": true, "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", "ips": [ "146.70.25.4" @@ -131352,7 +130447,6 @@ "region": "WINDFLIX US", "city": "New York", "hostname": "wf-us-011.whiskergalaxy.com", - "udp": true, "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", "ips": [ "146.70.25.68" @@ -131376,7 +130470,6 @@ "region": "WINDFLIX US", "city": "New York", "hostname": "wf-us-012.whiskergalaxy.com", - "udp": true, "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", "ips": [ "185.232.22.132" @@ -131400,7 +130493,6 @@ "region": "WINDFLIX US", "city": "New York", "hostname": "wf-us-013.whiskergalaxy.com", - "udp": true, "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", "ips": [ "217.138.206.212" @@ -131424,7 +130516,6 @@ "region": "WINDFLIX US", "city": "New York", "hostname": "wf-us-014.whiskergalaxy.com", - "udp": true, "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", "ips": [ "77.81.136.100" @@ -131448,7 +130539,6 @@ "region": "WINDFLIX US", "city": "New York", "hostname": "wf-us-015.whiskergalaxy.com", - "udp": true, "wgpubkey": "GxEk9eSOUsTVzoE07pe4YZRaROCQwW96cQokD38Pgkk=", "ips": [ "38.132.101.212"