about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2024-01-24 19:09:48 +0900
committersefidel <contact@sefidel.net>2024-01-24 19:09:48 +0900
commit6212558c61f7a55710f9f53a47711beb17f42f4e (patch)
tree20eb95180f343a5fa7bc015ab5fd059c28be657f
parent160928be5dc7057777c59d98549046361e3060f2 (diff)
downloadnixrc-6212558c61f7a55710f9f53a47711beb17f42f4e.tar.gz
nixrc-6212558c61f7a55710f9f53a47711beb17f42f4e.zip
feat(modules)!: remove nm-mullvad
-rw-r--r--modules/nm-mullvad/default.nix250
-rwxr-xr-xmodules/nm-mullvad/generate-mullvad-peer-list.sh30
-rw-r--r--modules/nm-mullvad/mullvad-servers-list.nix2471
3 files changed, 0 insertions, 2751 deletions
diff --git a/modules/nm-mullvad/default.nix b/modules/nm-mullvad/default.nix
deleted file mode 100644
index d948f12..0000000
--- a/modules/nm-mullvad/default.nix
+++ /dev/null
@@ -1,250 +0,0 @@
-{ config, pkgs, lib, ... }:
-
-# WARN(DEPRECATED): This module is deprecated and is superseded by tailscale.
-
-let
-  cfg = config.networking.networkmanager.nm-mullvad;
-
-  template = { id, uuid, pubKey, endpoint }:
-    ''
-      [connection]
-      id=${id}
-      uuid=${uuid}
-      type=wireguard
-      ${lib.optionalString (!cfg.autoConnect.enable || cfg.autoConnect.profile != id) "autoconnect=false"}
-      interface-name=${id}
-
-      [wireguard]
-      ${lib.optionalString (cfg.listenPort != null) "listen-port=${toString cfg.listenPort}"}
-      private-key=${if cfg.privateKey != null then cfg.privateKey else "@PRIVKEY@"}
-
-      [wireguard-peer.${pubKey}]
-      endpoint=${endpoint}:51820
-      allowed-ips=0.0.0.0/0;::/0;
-
-      [ipv4]
-      address1=${if cfg.ipv4Address != null then cfg.ipv4Address else "@IPV4ADDRESS@"}
-      dns=10.64.0.1
-      dns-search=~;
-      method=manual
-
-      [ipv6]
-      addr-gen-mode=default
-      address1=${if cfg.ipv6Address != null then cfg.ipv6Address else "@IPV6ADDRESS@"}
-      method=manual
-
-      [proxy]
-    '';
-
-  serversList = import ./mullvad-servers-list.nix;
-
-  allServerIds = builtins.map (x: x.id) serversList;
-
-  availableServersList = builtins.filter (x: lib.elem x.id cfg.availableServers) serversList;
-
-  serverEntryToConnFilename = serverEntry:
-    "NetworkManager/system-connections/${serverEntry.id}.nmconnection";
-
-  serverEntryToConnFile = serverEntry:
-    {
-      "${serverEntryToConnFilename serverEntry}" = {
-        text = template
-          {
-            inherit (serverEntry) id uuid pubKey endpoint;
-          };
-        mode = "0600";
-      };
-    };
-
-  connFiles = lib.fold (x: acc: lib.recursiveUpdate (serverEntryToConnFile x) acc) { } availableServersList;
-
-in
-{
-  options.networking.networkmanager.nm-mullvad = {
-    enable = lib.mkEnableOption "Mullvad VPN profile for NetworkManager";
-
-    listenPort = lib.mkOption {
-      type = lib.types.nullOr lib.types.number;
-      default = null;
-
-      description = ''
-        Set the port to listen on. Useful if you have a firewall active.
-      '';
-    };
-
-    openFirewall = lib.mkOption {
-      type = lib.types.bool;
-      default = false;
-      description = ''
-        Whether to open firewall for given `listenPort`.
-      '';
-    };
-
-    autoConnect = {
-      enable = lib.mkEnableOption "autoconnect for `autoConnect.profile`";
-
-      profile = lib.mkOption {
-        type = lib.types.nullOr lib.types.str;
-        default = null;
-        description = ''
-          ID of the profile to autoconnect to.
-        '';
-      };
-    };
-
-    privateKey = lib.mkOption {
-      type = lib.types.nullOr lib.types.str;
-      default = null;
-      description = ''
-        WireGuard private key to use for authenticating with Mullvad.
-      '';
-    };
-
-    privateKeyPath = lib.mkOption {
-      type = lib.types.nullOr lib.types.str;
-      default = null;
-      description = ''
-        Path for the file containing WireGuard private key to use for
-        authenticating with Mullvad.
-      '';
-    };
-
-    ipv4Address = lib.mkOption {
-      type = lib.types.nullOr lib.types.str;
-      default = null;
-      description = ''
-        IPv4 address to assign to the WireGuard interface.
-        This should include the CIDR notation, e.g.) `10.64.0.1/32`
-      '';
-    };
-
-    ipv4AddressPath = lib.mkOption {
-      type = lib.types.nullOr lib.types.str;
-      default = null;
-      description = ''
-        Path for the file containing the IPv4 address to assign to the
-        WireGuard interface.
-        This should include the CIDR notation, e.g.) `10.64.0.1/32`
-      '';
-    };
-
-    ipv6Address = lib.mkOption {
-      type = lib.types.nullOr lib.types.str;
-      default = null;
-      description = ''
-        IPv6 address to assign to the wireguard interface.
-        This should include the CIDR notation, e.g.) `fc00:bbbb:bbbb:bb01::1/128`
-      '';
-    };
-
-    ipv6AddressPath = lib.mkOption {
-      type = lib.types.nullOr lib.types.str;
-      default = null;
-      description = ''
-        Path for the file containing the IPv6 address to assign to the
-        WireGuard interface.
-        This should include the CIDR notation, e.g.) `fc00:bbbb:bbbb:bb01::1/128`
-      '';
-    };
-
-    availableServers = lib.mkOption
-      {
-        type = lib.types.listOf lib.types.str;
-        default = allServerIds;
-        description = ''
-          List of servers that will be made available.
-          Defaults to all servers, which might introduce clutter.
-        '';
-      };
-  };
-
-  config = lib.mkIf cfg.enable {
-    assertions = [
-      {
-        assertion = cfg.openFirewall == true -> cfg.listenPort != null;
-        message = ''
-          A custom `listenPort` must be given when `openFirewall` is set.
-        '';
-      }
-      {
-        assertion = cfg.autoConnect.enable == true -> cfg.autoConnect.profile != null;
-        message = ''
-          Profile to use for autoconnect must be set when enabling autoconnect.
-        '';
-      }
-      {
-        assertion = cfg.privateKey != null || cfg.privateKeyPath != null;
-        message = ''
-          Either `privateKey` or `privateKeyPath` must be set.
-        '';
-      }
-      {
-        assertion = cfg.ipv4Address != null || cfg.ipv4AddressPath != null;
-        message = ''
-          Either `ipv4Address` or `ipv4AddressPath` must be set.
-        '';
-      }
-      {
-        assertion = cfg.ipv6Address != null || cfg.ipv6AddressPath != null;
-        message = ''
-          Either `ipv6Address` or `ipv6AddressPath` must be set.
-        '';
-      }
-    ];
-
-    environment.etc = connFiles;
-
-    system.activationScripts.nm-mullvad-substitutePrivateKey = lib.mkIf (cfg.privateKeyPath != null) (lib.stringAfter [ "etc" "specialfs" "var" ]
-        ''
-        if [ -f "${cfg.privateKeyPath}" ]; then
-          ${pkgs.systemd}/bin/systemd-cat -t nixos echo "<6>loading networking.networkmanager.nm-mullvad.privateKeyPath from ${cfg.privateKeyPath}"
-          ${lib.concatMapStringsSep "\n"
-            (f: "${pkgs.gnused}/bin/sed -ie \"s_@PRIVKEY@_$(< ${cfg.privateKeyPath})_\" ${f}")
-            (builtins.map (s: "/etc/${serverEntryToConnFilename s}") availableServersList)}
-        else
-            warning_msg="WARNING: networking.networkmanager.nm-mullvad.privateKeyPath (${cfg.privateKeyPath}) does not exist."
-            echo "$warning_msg"
-            ${pkgs.systemd}/bin/systemd-cat -t nixos echo "<4>$warning_msg"
-        fi
-      '');
-
-    system.activationScripts.nm-mullvad-substituteIpv4Address = lib.mkIf (cfg.ipv4AddressPath != null) (lib.stringAfter [ "etc" "specialfs" "var" ]
-        ''
-        if [ -f "${cfg.ipv4AddressPath}" ]; then
-          ${pkgs.systemd}/bin/systemd-cat -t nixos echo "<6>loading networking.networkmanager.nm-mullvad.ipv4AddressPath from ${cfg.ipv4AddressPath}"
-          ${lib.concatMapStringsSep "\n"
-            (f: "${pkgs.gnused}/bin/sed -ie \"s!@IPV4ADDRESS@!$(< ${cfg.ipv4AddressPath})!\" ${f}")
-            (builtins.map (s: "/etc/${serverEntryToConnFilename s}") availableServersList)}
-        else
-            warning_msg="WARNING: networking.networkmanager.nm-mullvad.ipv4AddressPath (${cfg.ipv4AddressPath}) does not exist."
-            echo "$warning_msg"
-            ${pkgs.systemd}/bin/systemd-cat -t nixos echo "<4>$warning_msg"
-        fi
-      '');
-
-    system.activationScripts.nm-mullvad-substituteIpv6Address = lib.mkIf (cfg.ipv6AddressPath != null) (lib.stringAfter [ "etc" "specialfs" "var" ]
-        ''
-        if [ -f "${cfg.ipv6AddressPath}" ]; then
-          ${pkgs.systemd}/bin/systemd-cat -t nixos echo "<6>loading networking.networkmanager.nm-mullvad.ipv6AddressPath from ${cfg.ipv6AddressPath}"
-          ${lib.concatMapStringsSep "\n"
-            (f: "${pkgs.gnused}/bin/sed -ie \"s!@IPV6ADDRESS@!$(< ${cfg.ipv6AddressPath})!\" ${f}")
-            (builtins.map (s: "/etc/${serverEntryToConnFilename s}") availableServersList)}
-        else
-            warning_msg="WARNING: networking.networkmanager.nm-mullvad.ipv6AddressPath (${cfg.ipv6AddressPath}) does not exist."
-            echo "$warning_msg"
-            ${pkgs.systemd}/bin/systemd-cat -t nixos echo "<4>$warning_msg"
-        fi
-      '');
-
-    networking.firewall.allowedUDPPorts = lib.mkIf cfg.openFirewall [ cfg.listenPort ];
-    networking.firewall.logReversePathDrops = lib.mkIf cfg.openFirewall true;
-    networking.firewall.extraCommands = lib.mkIf cfg.openFirewall ''
-     ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --sport ${toString cfg.listenPort} -j RETURN
-     ip46tables -t mangle -I nixos-fw-rpfilter -p udp -m udp --dport ${toString cfg.listenPort} -j RETURN
-    '';
-    networking.firewall.extraStopCommands = lib.mkIf cfg.openFirewall ''
-     ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --sport ${toString cfg.listenPort} -j RETURN || true
-     ip46tables -t mangle -D nixos-fw-rpfilter -p udp -m udp --dport ${toString cfg.listenPort} -j RETURN || true
-    '';
-  };
-}
diff --git a/modules/nm-mullvad/generate-mullvad-peer-list.sh b/modules/nm-mullvad/generate-mullvad-peer-list.sh
deleted file mode 100755
index 9fe5ed9..0000000
--- a/modules/nm-mullvad/generate-mullvad-peer-list.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/env nix-shell
-#! nix-shell -i bash -p curl jq
-
-set -euo pipefail
-
-script_dir=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)
-output_file="$script_dir/mullvad-servers-list.nix"
-
-servers_json=$(curl -Ss 'https://api.mullvad.net/www/relays/all')
-
-readarray -t servers_arr < <(jq -c '.[] | select(.type == "wireguard")' <<< $servers_json)
-
-printf '# @generated by generate-mullvad-peer-list.sh\n# Do not Edit.\n\n' > $output_file
-printf '[\n' >> $output_file
-
-for item in "${servers_arr[@]}"; do
-    hostname=$(jq -r '.hostname' <<< $item)
-    pubkey=$(jq -r '.pubkey' <<< $item)
-    endpoint=$(jq -r '.ipv4_addr_in' <<< $item)
-    cat <<EOF >> $output_file
-  {
-    id = "$hostname";
-    uuid = "$(uuidgen -n @url --sha1 --name "$hostname-$endpoint")";
-    pubKey = "$pubkey";
-    endpoint = "$endpoint";
-  }
-EOF
-done
-
-printf ']' >> $output_file
diff --git a/modules/nm-mullvad/mullvad-servers-list.nix b/modules/nm-mullvad/mullvad-servers-list.nix
deleted file mode 100644
index e35346a..0000000
--- a/modules/nm-mullvad/mullvad-servers-list.nix
+++ /dev/null
@@ -1,2471 +0,0 @@
-# @generated by generate-mullvad-peer-list.sh
-# Do not Edit.
-
-[
-  {
-    id = "al-tia-wg-001";
-    uuid = "ee47a18f-e230-57dc-99bc-e7e9e98790bd";
-    pubKey = "bPfJDdgBXlY4w3ACs68zOMMhLUbbzktCKnLOFHqbxl4=";
-    endpoint = "31.171.153.66";
-  }
-  {
-    id = "at-vie-wg-001";
-    uuid = "7564fbaa-72f0-5434-999a-0aa7369593c9";
-    pubKey = "TNrdH73p6h2EfeXxUiLOCOWHcjmjoslLxZptZpIPQXU=";
-    endpoint = "146.70.116.98";
-  }
-  {
-    id = "at-vie-wg-002";
-    uuid = "15aa73c2-1fe8-5e3a-8e93-adf0c23d9fd6";
-    pubKey = "ehXBc726YX1N6Dm7fDAVMG5cIaYAFqCA4Lbpl4VWcWE=";
-    endpoint = "146.70.116.130";
-  }
-  {
-    id = "at-vie-wg-003";
-    uuid = "57dfe770-073a-5c85-b4dd-f5b85a08be22";
-    pubKey = "ddllelPu2ndjSX4lHhd/kdCStaSJOQixs9z551qN6B8=";
-    endpoint = "146.70.116.162";
-  }
-  {
-    id = "au-adl-wg-301";
-    uuid = "79203768-bdfd-5b63-b13f-8dce5dea0b47";
-    pubKey = "rm2hpBiN91c7reV+cYKlw7QNkYtME/+js7IMyYBB2Aw=";
-    endpoint = "103.214.20.50";
-  }
-  {
-    id = "au-adl-wg-302";
-    uuid = "cc2bc972-b2d5-5b67-9bb3-a44b449d529a";
-    pubKey = "e4jouH8n4e8oyi/Z7d6lJLd6975hlPZmnynJeoU+nWM=";
-    endpoint = "103.214.20.130";
-  }
-  {
-    id = "au-bne-wg-301";
-    uuid = "57169cb8-d91e-50b9-b775-7a715381539d";
-    pubKey = "1H/gj8SVNebAIEGlvMeUVC5Rnf274dfVKbyE+v5G8HA=";
-    endpoint = "103.216.220.18";
-  }
-  {
-    id = "au-bne-wg-302";
-    uuid = "70bac081-529d-50ce-b156-34c89c8f8eae";
-    pubKey = "z+JG0QA4uNd/wRTpjCqn9rDpQsHKhf493omqQ5rqYAc=";
-    endpoint = "103.216.220.34";
-  }
-  {
-    id = "au-mel-wg-301";
-    uuid = "e0d374e3-257b-5c61-9e74-8633059a4ba5";
-    pubKey = "jUMZWFOgoFGhZjBAavE6jW8VgnnNpL4KUiYFYjc1fl8=";
-    endpoint = "103.108.229.50";
-  }
-  {
-    id = "au-mel-wg-302";
-    uuid = "888c7fe4-5a1c-513a-a6aa-f6a7fe76ed89";
-    pubKey = "npTb63jWEaJToBfn0B1iVNbnLXEwwlus5SsolsvUhgU=";
-    endpoint = "103.108.229.66";
-  }
-  {
-    id = "au-per-wg-301";
-    uuid = "9168cf85-e858-530c-af0f-38d849a8d9d4";
-    pubKey = "hQXsNk/9R2We0pzP1S9J3oNErEu2CyENlwTdmDUYFhg=";
-    endpoint = "103.108.231.50";
-  }
-  {
-    id = "au-per-wg-302";
-    uuid = "7cb257a3-28a1-596d-8a81-533c212ac69c";
-    pubKey = "t3Ly8bBdF2gMHzT3d529bVLDw8Jd2/FFG9GXoBEx01g=";
-    endpoint = "103.108.231.66";
-  }
-  {
-    id = "au-syd-wg-001";
-    uuid = "117c112f-7cfb-5be6-bd0f-f35cb787f98b";
-    pubKey = "4JpfHBvthTFOhCK0f5HAbzLXAVcB97uAkuLx7E8kqW0=";
-    endpoint = "146.70.200.2";
-  }
-  {
-    id = "au-syd-wg-002";
-    uuid = "24b91092-72d7-5095-8e1f-dcfb237589b5";
-    pubKey = "lUeDAOy+iAhZDuz5+6zh0Co8wZcs3ahdu2jfqQoDW3E=";
-    endpoint = "146.70.141.194";
-  }
-  {
-    id = "au-syd-wg-003";
-    uuid = "f99c7c77-db85-5628-9503-6d471f3f1ef3";
-    pubKey = "LXuRwa9JRTt2/UtldklKGlj/IVLORITqgET4II4DRkU=";
-    endpoint = "146.70.200.194";
-  }
-  {
-    id = "be-bru-wg-101";
-    uuid = "3ce6c966-6ec4-527f-8e6a-246d2ca56d4a";
-    pubKey = "GE2WP6hmwVggSvGVWLgq2L10T3WM2VspnUptK5F4B0U=";
-    endpoint = "91.90.123.2";
-  }
-  {
-    id = "be-bru-wg-102";
-    uuid = "c707b92a-4b17-5858-9447-82b3d8aa4e32";
-    pubKey = "IY+FKw487MEWqMGNyyrT4PnTrJxce8oiGNHT0zifam8=";
-    endpoint = "194.110.115.34";
-  }
-  {
-    id = "be-bru-wg-103";
-    uuid = "1857cb28-6c8b-5a5d-bf42-ac6fa7df5c93";
-    pubKey = "b5A1ela+BVI+AbNXz7SWekZHvdWWpt3rqUKTJj0SqCU=";
-    endpoint = "194.110.115.2";
-  }
-  {
-    id = "bg-sof-wg-001";
-    uuid = "97cd9821-97fd-572a-9dcd-fafb5a51e07c";
-    pubKey = "J8KysHmHZWqtrVKKOppneDXSks/PDsB1XTlRHpwiABA=";
-    endpoint = "146.70.188.130";
-  }
-  {
-    id = "bg-sof-wg-002";
-    uuid = "3fdddd37-5094-5228-909a-52833568ebef";
-    pubKey = "dg+Fw7GnKvDPBxFpnj1KPoNIu1GakuVoDJjKRni+pRU=";
-    endpoint = "146.70.188.194";
-  }
-  {
-    id = "br-sao-wg-001";
-    uuid = "644b67c4-ed42-5ffe-ae41-22a37b138749";
-    pubKey = "xUDPh13sY127m+7d05SOQAzzNCyufTjaGwCXkWsIjkw=";
-    endpoint = "149.78.184.194";
-  }
-  {
-    id = "br-sao-wg-201";
-    uuid = "6f3568c8-e33d-5fb8-8d45-5a0bd8e8d6c0";
-    pubKey = "8c9M6w1BQbgMVr/Zgrj4GwSdU6q3qfQfWs17kMLC9y4=";
-    endpoint = "169.150.198.66";
-  }
-  {
-    id = "br-sao-wg-202";
-    uuid = "6f1253fa-2309-5bcd-b086-ec6fc20fff7a";
-    pubKey = "jWURoz8SLBUlRTQnAFTA/LDZUTpvlO0ghiVWH7MgaHQ=";
-    endpoint = "169.150.198.79";
-  }
-  {
-    id = "ca-mtr-wg-001";
-    uuid = "9c4a047d-0de1-5123-aec7-023e3d95d588";
-    pubKey = "TUCaQc26/R6AGpkDUr8A8ytUs/e5+UVlIVujbuBwlzI=";
-    endpoint = "146.70.198.66";
-  }
-  {
-    id = "ca-mtr-wg-002";
-    uuid = "3a60710d-cce9-56c3-9bab-bbd6ea2f6d22";
-    pubKey = "7X6zOgtJfJAK8w8C3z+hekcS9Yf3qK3Bp4yx56lqxBQ=";
-    endpoint = "146.70.198.130";
-  }
-  {
-    id = "ca-mtr-wg-003";
-    uuid = "2cef116f-dd22-50ec-81ac-fc96db96b239";
-    pubKey = "57Zu2qPzRScZWsoC2NhXgz0FiC0HiKkbEa559sbxB3k=";
-    endpoint = "146.70.198.194";
-  }
-  {
-    id = "ca-mtr-wg-004";
-    uuid = "f1a8edd3-995f-59a2-ba0b-7db55cc7d92b";
-    pubKey = "Cc5swfQ9f2tAgLduuIqC3bLbwDVoOFkkETghsE6/twA=";
-    endpoint = "188.241.176.194";
-  }
-  {
-    id = "ca-tor-wg-001";
-    uuid = "7cc33cfc-81bb-5a4b-bbd8-82afcfdb5a27";
-    pubKey = "HjcUGVDXWdrRkaKNpc/8494RM5eICO6DPyrhCtTv9Ws=";
-    endpoint = "178.249.214.2";
-  }
-  {
-    id = "ca-tor-wg-002";
-    uuid = "5451910a-e2f1-57c7-87cd-0db145c304c8";
-    pubKey = "iqZSgVlU9H67x/uYE5xsnzLCDXf7FL9iMfyKfl6WsV8=";
-    endpoint = "178.249.214.15";
-  }
-  {
-    id = "ca-tor-wg-101";
-    uuid = "44299e5b-a5b2-5f6d-aa34-989ca2f89e5f";
-    pubKey = "hfvZctxTQukC6lMJ4liGTg1JECT4XqEKpTNPk84k2As=";
-    endpoint = "198.44.140.130";
-  }
-  {
-    id = "ca-tor-wg-102";
-    uuid = "95dfe54b-c66c-5192-b5cd-be5ddb8af3c9";
-    pubKey = "iGwKJTbm/aL4kJXwcJkO0JYPEEGGDcYBrRTG7CHIQx0=";
-    endpoint = "198.54.132.98";
-  }
-  {
-    id = "ca-tor-wg-103";
-    uuid = "0c523b18-bc6c-5dd9-adc8-0240c07b8345";
-    pubKey = "MbusadbeACMR5bv+PPjhldb5CgwjlCbthnTJNrOJnhI=";
-    endpoint = "198.54.132.226";
-  }
-  {
-    id = "ca-tor-wg-104";
-    uuid = "69c0147d-1f90-59ab-acd1-c7f3fb3579dd";
-    pubKey = "y9JT2B69QiWkbEAiXGq5yhtAvg8YNXNkjhHcUiBCiko=";
-    endpoint = "198.54.132.130";
-  }
-  {
-    id = "ca-tor-wg-105";
-    uuid = "0b8245f4-d930-5e79-8d3e-a64b65097f1d";
-    pubKey = "XE+hufytSkX14TjskwmYL4HL4mbPf+Vd5Jfgwf/5JHc=";
-    endpoint = "198.44.140.162";
-  }
-  {
-    id = "ca-tor-wg-106";
-    uuid = "58e528af-670e-5004-b544-9b0c077d123f";
-    pubKey = "ptnLZbreIzTZrSyPD0XhOAAmN194hcPSG5TI5TTiL08=";
-    endpoint = "198.54.132.162";
-  }
-  {
-    id = "ca-tor-wg-107";
-    uuid = "19b1a8ba-691c-5467-ae80-1714e87e3646";
-    pubKey = "jVgDxCstCo0NRZ/dB9fpQiu+dfYK2v3HOa4B6MkLaQA=";
-    endpoint = "198.44.140.194";
-  }
-  {
-    id = "ca-van-wg-201";
-    uuid = "0abfa385-1ea5-5774-bc65-7bc227350677";
-    pubKey = "hYbb2NQKB0g2RefngdHl3bfaLImUuzeVIv2i1VCVIlQ=";
-    endpoint = "38.240.226.36";
-  }
-  {
-    id = "ca-van-wg-202";
-    uuid = "7f6dc5d1-3323-5f85-8c4c-77df463567a3";
-    pubKey = "wGqcNxXH7A3bSptHZo7Dfmymy/Y30Ea/Zd47UkyEbzo=";
-    endpoint = "38.240.226.68";
-  }
-  {
-    id = "ca-yyc-wg-201";
-    uuid = "0d9a5354-282f-58fa-a210-b0fdabcc5049";
-    pubKey = "L4RcVwk0cJJp2u8O9+86sdyUpxfYnr+ME57Ex0RY1Wo=";
-    endpoint = "38.240.225.36";
-  }
-  {
-    id = "ca-yyc-wg-202";
-    uuid = "03d59948-ebae-51c2-8987-b93db3575e38";
-    pubKey = "u9J/fzrSqM2aEFjTs91KEKgBsaQ/I/4XkIP1Z/zYkXA=";
-    endpoint = "38.240.225.68";
-  }
-  {
-    id = "ch-zrh-wg-001";
-    uuid = "bc5ec01b-10f0-574b-b15c-f94d1153b4eb";
-    pubKey = "/iivwlyqWqxQ0BVWmJRhcXIFdJeo0WbHQ/hZwuXaN3g=";
-    endpoint = "193.32.127.66";
-  }
-  {
-    id = "ch-zrh-wg-002";
-    uuid = "2df0bf96-051e-56d2-9bdc-86a76061f694";
-    pubKey = "qcvI02LwBnTb7aFrOyZSWvg4kb7zNW9/+rS6alnWyFE=";
-    endpoint = "193.32.127.67";
-  }
-  {
-    id = "ch-zrh-wg-003";
-    uuid = "9a12a91c-90e2-5b4a-87e9-7602c7893d6d";
-    pubKey = "5Ms10UxGjCSzwImTrvEjcygsWY8AfMIdYyRvgFuTqH8=";
-    endpoint = "193.32.127.68";
-  }
-  {
-    id = "ch-zrh-wg-004";
-    uuid = "c83465e8-07f1-5f38-92c0-f5e9f4615972";
-    pubKey = "C3jAgPirUZG6sNYe4VuAgDEYunENUyG34X42y+SBngQ=";
-    endpoint = "193.32.127.69";
-  }
-  {
-    id = "ch-zrh-wg-005";
-    uuid = "ec3bcf0e-24c1-5a17-80d8-80db805eae68";
-    pubKey = "dV/aHhwG0fmp0XuvSvrdWjCtdyhPDDFiE/nuv/1xnRM=";
-    endpoint = "193.32.127.70";
-  }
-  {
-    id = "ch-zrh-wg-201";
-    uuid = "1581b4ec-0cbb-52b0-83e9-ae06cf4fd3d9";
-    pubKey = "66NPINP4+1AlojLP0J6O9GxdloiegNnGMV4Yit9Kzg0=";
-    endpoint = "179.43.189.66";
-  }
-  {
-    id = "ch-zrh-wg-202";
-    uuid = "3c4663b4-cc5b-54ae-aa04-85598b58c298";
-    pubKey = "gSLSfY2zNFRczxHndeda258z+ayMvd7DqTlKYlKWJUo=";
-    endpoint = "46.19.136.226";
-  }
-  {
-    id = "ch-zrh-wg-401";
-    uuid = "aa6fe5cd-487a-5e3c-924f-322819abf107";
-    pubKey = "45ud3I5O6GmPXTrMJiqkiPMI/ubucDqzGaiq3CHJXk8=";
-    endpoint = "138.199.6.194";
-  }
-  {
-    id = "ch-zrh-wg-402";
-    uuid = "65128c0d-de6f-5ad5-8a3f-d88e1623ae50";
-    pubKey = "7VCMEE+Oljm/qKfQJSUCOYPtRSwdOnuPyqo5Vob+GRY=";
-    endpoint = "138.199.6.207";
-  }
-  {
-    id = "ch-zrh-wg-403";
-    uuid = "c666e5bb-ec47-595b-ba02-5cd93b8593d5";
-    pubKey = "Jmhds6oPu6/j94hjllJCIaKLDyWu6V+ZNRrVVFhWJkI=";
-    endpoint = "138.199.6.220";
-  }
-  {
-    id = "ch-zrh-wg-404";
-    uuid = "115680da-7d2d-585f-9039-94a269ee3640";
-    pubKey = "zfNQqDyPmSUY8+20wxACe/wpk4Q5jpZm5iBqjXj2hk8=";
-    endpoint = "138.199.6.233";
-  }
-  {
-    id = "ch-zrh-wg-501";
-    uuid = "91c46e1a-4162-5e92-876e-a11b103f6b5b";
-    pubKey = "HQzvIK88XSsRujBlwoYvvZ7CMKwiYuOqLXyuckkTPHg=";
-    endpoint = "146.70.134.98";
-  }
-  {
-    id = "ch-zrh-wg-502";
-    uuid = "c3e53e49-e4aa-5536-94c7-7027d4c7e861";
-    pubKey = "TOA/MQWS6TzJVEa//GPyaET5d52VpHO2isS4786GGwU=";
-    endpoint = "146.70.126.162";
-  }
-  {
-    id = "ch-zrh-wg-503";
-    uuid = "f1d8f2b1-2d38-5d1e-89a5-0354a1714a65";
-    pubKey = "ApOUMLFcpTpj/sDAMub0SvASFdsSWtsy+vvw/nWvEmY=";
-    endpoint = "146.70.126.194";
-  }
-  {
-    id = "ch-zrh-wg-504";
-    uuid = "64dca957-fe09-5e7a-8173-7069127daad2";
-    pubKey = "I5XiRYHPmxnmGtPJ90Yio6QXL441C/+kYV6UH6wU+jk=";
-    endpoint = "146.70.126.226";
-  }
-  {
-    id = "ch-zrh-wg-505";
-    uuid = "38a0a826-8e1f-5c82-86ee-f782b34ac37f";
-    pubKey = "dc16Gcid7jLcHRD7uHma1myX3vWhEy/bZIBtqZw0B2I=";
-    endpoint = "146.70.134.2";
-  }
-  {
-    id = "ch-zrh-wg-506";
-    uuid = "0c30c212-0fc9-57bb-9630-6470747c89b5";
-    pubKey = "7xVJLzW0nfmACr1VMc+/SiSMFh0j0EI3DrU/8Fnj1zM=";
-    endpoint = "146.70.134.34";
-  }
-  {
-    id = "ch-zrh-wg-507";
-    uuid = "d7a643de-a79c-5b4b-97b0-2b8637641f57";
-    pubKey = "RNTpvmWTyjNf8w9qdP+5XlFnyAk5TrVvT+CRa8a0zys=";
-    endpoint = "146.70.134.66";
-  }
-  {
-    id = "co-bog-wg-001";
-    uuid = "810cb67f-7b10-56f1-b6ba-0d476f3371f5";
-    pubKey = "iaMa84nCHK+v4TnQH4h2rxkqwwxemORXM12VbJDRZSU=";
-    endpoint = "154.47.16.34";
-  }
-  {
-    id = "co-bog-wg-002";
-    uuid = "4d43ce2d-41c1-5bb8-b17c-8a71d63eb13c";
-    pubKey = "IZDwbG9C/NrOOGVUrn+fDaPr8ZwD/yhvST7XWGk1ln8=";
-    endpoint = "154.47.16.47";
-  }
-  {
-    id = "cz-prg-wg-101";
-    uuid = "a43d242e-77cf-5522-a873-70108f8b02d2";
-    pubKey = "wLBxTaISMJ++vUht4hlAOUog9fhZxDql16TaYWaboDc=";
-    endpoint = "146.70.129.98";
-  }
-  {
-    id = "cz-prg-wg-102";
-    uuid = "b1d6afa0-2ee4-5ddb-abca-1b684640f56b";
-    pubKey = "cRCJ0vULwKRbTfzuo9W+fIt0fJGQE7DLvojIiURIpiI=";
-    endpoint = "146.70.129.130";
-  }
-  {
-    id = "cz-prg-wg-201";
-    uuid = "d651d1da-a6d0-5fae-85d3-78684338579c";
-    pubKey = "5FZW+fNA2iVBSY99HFl+KjGc9AFVNE+UFAedLNhu8lc=";
-    endpoint = "178.249.209.162";
-  }
-  {
-    id = "cz-prg-wg-202";
-    uuid = "cab14b81-6fa6-5529-9c0e-267e19b8651e";
-    pubKey = "ReGrGPKDHri64D7qeXmgcLzjsTJ0B/yM7eekFz1P/34=";
-    endpoint = "178.249.209.175";
-  }
-  {
-    id = "de-ber-wg-001";
-    uuid = "6709a2ea-1d57-5cb5-a1ee-b6f759e56cad";
-    pubKey = "0qSP0VxoIhEhRK+fAHVvmfRdjPs2DmmpOCNLFP/7cGw=";
-    endpoint = "193.32.248.66";
-  }
-  {
-    id = "de-ber-wg-002";
-    uuid = "350e7cc9-ba02-5730-becf-6692e34b9a1b";
-    pubKey = "8ov1Ws0ut3ixWDh9Chp7/WLVn9qC6/WVHtcBcuWBlgo=";
-    endpoint = "193.32.248.67";
-  }
-  {
-    id = "de-ber-wg-003";
-    uuid = "a213c810-f2f5-59ed-97f8-04deecce38a0";
-    pubKey = "USrMatdHiCL5AKdVMpHuYgWuMiK/GHPwRB3Xx00FhU0=";
-    endpoint = "193.32.248.68";
-  }
-  {
-    id = "de-ber-wg-004";
-    uuid = "1712a616-f6ae-5b9a-85a5-2fbd32c387ca";
-    pubKey = "6PchzRRxzeeHdNLyn3Nz0gmN7pUyjoZMpKmKzJRL4GM=";
-    endpoint = "193.32.248.69";
-  }
-  {
-    id = "de-ber-wg-005";
-    uuid = "874b12d1-a426-598e-9bb2-1e9dc401dff0";
-    pubKey = "I4Y7e8LrtBC/7DLpUgRd5k+IZk+whOFVAZgbSivoiBI=";
-    endpoint = "193.32.248.70";
-  }
-  {
-    id = "de-ber-wg-006";
-    uuid = "78963596-fc70-5d63-98a4-fb548ba2f421";
-    pubKey = "eprzkkkSbXCANngQDo305DIAvkKAnZaN71IpTNaOoTk=";
-    endpoint = "193.32.248.71";
-  }
-  {
-    id = "de-dus-wg-001";
-    uuid = "47f326e0-6177-5ad4-9ffe-e0c44e77d369";
-    pubKey = "ku1NYeOAGbY65YL/JKZhrqVzDJKXQiVj9USXbfkOBA0=";
-    endpoint = "185.254.75.3";
-  }
-  {
-    id = "de-dus-wg-002";
-    uuid = "6c42f8a2-3dae-5d69-afd2-ee638a74a8f4";
-    pubKey = "TPAIPTgu9jIitgX1Bz5xMCZJ9pRRZTdtZEOIxArO0Hc=";
-    endpoint = "185.254.75.4";
-  }
-  {
-    id = "de-dus-wg-003";
-    uuid = "cab1efba-496e-5ab0-929e-f8e8ddd7b188";
-    pubKey = "XgSe9UwEV4JJNPPzFFOVYS6scMTL4DeNlwqBl32lDw0=";
-    endpoint = "185.254.75.5";
-  }
-  {
-    id = "de-fra-wg-001";
-    uuid = "45aa0a64-3573-58c4-8358-22565a07d838";
-    pubKey = "HQHCrq4J6bSpdW1fI5hR/bvcrYa6HgGgwaa5ZY749ik=";
-    endpoint = "185.213.155.73";
-  }
-  {
-    id = "de-fra-wg-002";
-    uuid = "f0462885-3f11-52c6-b82c-33d33dd03057";
-    pubKey = "s1c/NsfnqnwQSxao70DY4Co69AFT9e0h88IFuMD5mjs=";
-    endpoint = "185.213.155.74";
-  }
-  {
-    id = "de-fra-wg-003";
-    uuid = "53b204ec-b2fe-5f6c-87bc-25519bf58d6f";
-    pubKey = "vVQKs2TeTbdAvl3sH16UWLSESncXAj0oBaNuFIUkLVk=";
-    endpoint = "185.209.196.73";
-  }
-  {
-    id = "de-fra-wg-004";
-    uuid = "0bc1df81-ef64-521c-83c6-42e89d2bc836";
-    pubKey = "tzYLWgBdwrbbBCXYHRSoYIho4dHtrm+8bdONU1I8xzc=";
-    endpoint = "185.209.196.74";
-  }
-  {
-    id = "de-fra-wg-005";
-    uuid = "acd0139b-deb5-5735-91c9-bf36414448c4";
-    pubKey = "tpobOO6t18CzHjOg0S3RlZJMxd2tz4+BnRYS7NrjTnM=";
-    endpoint = "185.209.196.75";
-  }
-  {
-    id = "de-fra-wg-006";
-    uuid = "1c7eb5a4-0612-5b3d-ba60-0f28cd8df0e2";
-    pubKey = "nAF0wrLG2+avwQfqxnXhBGPUBCvc3QCqWKH4nK5PfEU=";
-    endpoint = "185.209.196.76";
-  }
-  {
-    id = "de-fra-wg-007";
-    uuid = "9f321d21-c00f-5b7c-becd-934fa58ca627";
-    pubKey = "mTmrSuXmTnIC9l2Ur3/QgodGrVEhhIE3pRwOHZpiYys=";
-    endpoint = "185.209.196.77";
-  }
-  {
-    id = "de-fra-wg-008";
-    uuid = "28f90715-f47a-5ef3-83ef-d04d6e32c0a4";
-    pubKey = "TOS3U/dJPzPnk/qsAx6gHxRVIC2wI5l+tAWaJY2mXzY=";
-    endpoint = "185.209.196.78";
-  }
-  {
-    id = "de-fra-wg-101";
-    uuid = "5839e5ba-342c-58b2-a94b-2415420206ee";
-    pubKey = "Voioje9Gfb7aTiK2/H6VyHFK1AFap1glIX0Z1EX2mRQ=";
-    endpoint = "146.70.117.162";
-  }
-  {
-    id = "de-fra-wg-102";
-    uuid = "73648ac7-d96b-5f7d-96b7-09ef196582f9";
-    pubKey = "ydXFN45/kROELJrF6id+uIrnS5DvTKSCkZDjfL9De2Q=";
-    endpoint = "146.70.117.194";
-  }
-  {
-    id = "de-fra-wg-103";
-    uuid = "e7c1293a-d80a-5df7-883e-ba8e54285da8";
-    pubKey = "KkShcqgwbkX2A9n1hhST6qu+m3ldxdJ2Lx8Eiw6mdXw=";
-    endpoint = "146.70.117.226";
-  }
-  {
-    id = "de-fra-wg-104";
-    uuid = "9d3f31a1-9d0b-5ac2-a2be-11a1b69b083b";
-    pubKey = "uKTC5oP/zfn6SSjayiXDDR9L82X0tGYJd5LVn5kzyCc=";
-    endpoint = "146.70.107.194";
-  }
-  {
-    id = "de-fra-wg-105";
-    uuid = "ef260e26-4550-51b2-8e3a-ae92d109b9cc";
-    pubKey = "Sttn2cr14dvIcCrE8qdlRGHXriqvTyvQWC7dzujH/iM=";
-    endpoint = "146.70.117.2";
-  }
-  {
-    id = "de-fra-wg-106";
-    uuid = "38dfe785-132f-5045-b9ee-f9810be01870";
-    pubKey = "9ldhvN7r4xGZkGehbsNfYb5tpyTJ5KBb5B3TbxCwklw=";
-    endpoint = "146.70.117.34";
-  }
-  {
-    id = "de-fra-wg-301";
-    uuid = "50d4d986-2646-57cd-9bfb-e57a66bd8467";
-    pubKey = "dNKRyh2MkJGZdg9jyUJtf9w5GHjX3+/fYatg+xi9TUM=";
-    endpoint = "194.36.25.3";
-  }
-  {
-    id = "de-fra-wg-302";
-    uuid = "55a405a1-971d-5c2d-8719-e7e6d324e671";
-    pubKey = "A3DbIgPycEJhJ1fQ4zzcajLOKTZsJMeawjdPQiWav20=";
-    endpoint = "194.36.25.18";
-  }
-  {
-    id = "de-fra-wg-303";
-    uuid = "3b04d892-978a-5085-9ffb-fa184652f5a1";
-    pubKey = "2P+9SjwVCEnMDnBiYfZtQLq9p2S2TFhCM0xJBoevYk4=";
-    endpoint = "194.36.25.33";
-  }
-  {
-    id = "de-fra-wg-304";
-    uuid = "5e60d537-068f-5f4f-ae95-c29bf157cc24";
-    pubKey = "VgNcwWy8MRhfEZY+XSisDM1ykX+uXlHQScOLqqGMLkc=";
-    endpoint = "194.36.25.48";
-  }
-  {
-    id = "de-fra-wg-401";
-    uuid = "f43ccc9e-aedc-5aaa-ba4a-2e650f4accd7";
-    pubKey = "AbM8fnQWmmX6Nv0Tz68LigPbGkamJgNjxgzPfENOdXU=";
-    endpoint = "169.150.201.2";
-  }
-  {
-    id = "de-fra-wg-402";
-    uuid = "e10ad32f-84f6-5a43-aef3-d0e8e57e8194";
-    pubKey = "6/PBbPtoeWpJA+HZc9Iqg/PPQWD7mGVvZdwQlr1vtRk=";
-    endpoint = "169.150.201.15";
-  }
-  {
-    id = "de-fra-wg-403";
-    uuid = "83628961-f580-5e3f-95f7-47544649bb0d";
-    pubKey = "HWzSNMbQOQafkVp68B7aLRirhNJ6x5Wjw8/y7oUuHW0=";
-    endpoint = "169.150.201.28";
-  }
-  {
-    id = "dk-cph-wg-001";
-    uuid = "11754013-d5fc-5705-b59d-3798e272a463";
-    pubKey = "egl+0TkpFU39F5O6r6+hIBMPQLOa8/t5CymOZV6CC3Y=";
-    endpoint = "45.129.56.67";
-  }
-  {
-    id = "dk-cph-wg-002";
-    uuid = "3e1c3806-854e-5af7-a263-6c90e17373a3";
-    pubKey = "R5LUBgM/1UjeAR4lt+L/yA30Gee6/VqVZ9eAB3ZTajs=";
-    endpoint = "45.129.56.68";
-  }
-  {
-    id = "dk-cph-wg-401";
-    uuid = "594a8571-bfab-5465-a34d-e172260687ea";
-    pubKey = "Jjml2TSqKlgzW6UzPiJszaun743QYpyl5jQk8UOQYg0=";
-    endpoint = "146.70.197.194";
-  }
-  {
-    id = "dk-cph-wg-402";
-    uuid = "f700c172-df21-5284-86e2-06f4a75f4d38";
-    pubKey = "ML0NcFPqy+x+ZJg7y9vfh77hXAOtgueIqp1j+CJVrXM=";
-    endpoint = "146.70.197.130";
-  }
-  {
-    id = "ee-tll-wg-001";
-    uuid = "eab81f3d-2d35-5277-a493-93040ba72c18";
-    pubKey = "bdq37KtfoG1Tm7yQcfitdRyGeZOn/c7PwLN+LgG/6nA=";
-    endpoint = "194.127.167.67";
-  }
-  {
-    id = "ee-tll-wg-002";
-    uuid = "ce2aced6-be8b-5b58-a11d-5fe388396f29";
-    pubKey = "vqGmmcERr/PAKDzy6Dxax8g4150rC93kmKYabZuAzws=";
-    endpoint = "194.127.167.87";
-  }
-  {
-    id = "ee-tll-wg-003";
-    uuid = "ab3aed12-2bc2-5b42-b2ea-dfcb80ddfd7f";
-    pubKey = "+8dUgpD7YA4wMPnRQkO7EI7AeYd30QPMKh/hOaaGIXY=";
-    endpoint = "194.127.167.107";
-  }
-  {
-    id = "es-mad-wg-101";
-    uuid = "ef7cdf30-e5b1-5dfa-9fa9-81058caa34b4";
-    pubKey = "oPpPeyiQhUYqtOxwR387dmFfII8OK5LX2RPyns1rx2U=";
-    endpoint = "45.134.213.194";
-  }
-  {
-    id = "es-mad-wg-102";
-    uuid = "b45e8040-1d85-5090-b1c2-b6354414ec1a";
-    pubKey = "1Wo/cQeVHX2q9k95nxN+48lgkGLsPQ+uesRb/9XdY1Y=";
-    endpoint = "45.134.213.207";
-  }
-  {
-    id = "es-mad-wg-201";
-    uuid = "6333e91c-67d2-5a67-a8cb-cfd1af3511b9";
-    pubKey = "LyO4Xs1eV8JwFr63a1FRnKboQn2Tu/oeMzHhbr7Y6GU=";
-    endpoint = "146.70.128.194";
-  }
-  {
-    id = "es-mad-wg-202";
-    uuid = "0dd84e1b-cb32-5dd3-8e59-de1c36c279f8";
-    pubKey = "iehXacO91FbBqni2IFxedEYPlW2Wvvt9GtRPPPMo9zc=";
-    endpoint = "146.70.128.226";
-  }
-  {
-    id = "fi-hel-wg-001";
-    uuid = "ff41e4db-12d9-566f-a599-1a18fdfe4170";
-    pubKey = "veLqpZazR9j/Ol2G8TfrO32yEhc1i543MCN8rpy1FBA=";
-    endpoint = "185.204.1.203";
-  }
-  {
-    id = "fi-hel-wg-002";
-    uuid = "c1b4e5e1-4cc8-5bbf-bcaf-73a671747ab8";
-    pubKey = "8BbP3GS01dGkN5ENk1Rgedxfd80friyVOABrdMgD3EY=";
-    endpoint = "185.204.1.211";
-  }
-  {
-    id = "fi-hel-wg-003";
-    uuid = "21819bcf-e233-5bb5-b59b-c4ce5d0248d4";
-    pubKey = "FKodo9V6BehkNphL+neI0g4/G/cjbZyYhoptSWf3Si4=";
-    endpoint = "185.204.1.219";
-  }
-  {
-    id = "fi-hel-wg-101";
-    uuid = "8929291a-f608-56e9-89e0-832ccedf980d";
-    pubKey = "2S3G7Sm9DVG6+uJtlDu4N6ed5V97sTbA5dCSkUelWyk=";
-    endpoint = "193.138.7.137";
-  }
-  {
-    id = "fi-hel-wg-102";
-    uuid = "e26974ae-5c0c-5184-91ab-a0f5b0f66282";
-    pubKey = "xeHVhXxyyFqUEE+nsu5Tzd/t9en+++4fVFcSFngpcAU=";
-    endpoint = "193.138.7.157";
-  }
-  {
-    id = "fi-hel-wg-103";
-    uuid = "614c84dd-c211-5ede-8c73-10d33865002c";
-    pubKey = "Mlvu14bSD6jb7ajH/CiJ/IO8W+spB8H6VmdGkFGOcUQ=";
-    endpoint = "193.138.7.177";
-  }
-  {
-    id = "fi-hel-wg-104";
-    uuid = "83db37fb-7f8d-5175-90a1-5a3a3fe57523";
-    pubKey = "keRQGHUbYP2qgDTbYqOsI9byfNb0LOpTZ/KdC67cJiA=";
-    endpoint = "193.138.7.197";
-  }
-  {
-    id = "fr-mrs-wg-001";
-    uuid = "b223d1eb-a045-580a-8a8a-db805170100d";
-    pubKey = "MOk2OTDEaFFN4vsCAgf+qQi6IlY99nCeDEzpXyo65wg=";
-    endpoint = "138.199.15.162";
-  }
-  {
-    id = "fr-mrs-wg-002";
-    uuid = "b1dc17cd-1de0-5306-8ea7-4414abb22657";
-    pubKey = "Z0LEgZIPhNj0+/VWknU3roHlVI3qqAfoV6th9NSC0F0=";
-    endpoint = "138.199.15.146";
-  }
-  {
-    id = "fr-par-wg-001";
-    uuid = "31b01ace-1972-5970-ba06-44da71a22434";
-    pubKey = "ov323GyDOEHLT0sNRUUPYiE3BkvFDjpmi1a4fzv49hE=";
-    endpoint = "193.32.126.66";
-  }
-  {
-    id = "fr-par-wg-002";
-    uuid = "f3f38302-472c-5d66-bd0d-8941f936f0be";
-    pubKey = "R5Ve+PJD24QjNXi2Dim7szwCiOLnv+6hg+WyTudAYmE=";
-    endpoint = "193.32.126.67";
-  }
-  {
-    id = "fr-par-wg-003";
-    uuid = "48eca2e6-73e6-53e4-9915-5f39b1d4e3ca";
-    pubKey = "w4r/o6VImF7l0/De3JpOGnpzjAFv9wcCu8Rop5eZkWc=";
-    endpoint = "193.32.126.68";
-  }
-  {
-    id = "fr-par-wg-004";
-    uuid = "6f62b893-08bb-5cae-aa1a-21747e4304af";
-    pubKey = "E/KjR7nlFouuRXh1pwGDr7iK2TAZ6c4K0LjjmA1A2Tc=";
-    endpoint = "193.32.126.69";
-  }
-  {
-    id = "fr-par-wg-005";
-    uuid = "f69634da-b341-5f3d-a07a-4e97eb03f200";
-    pubKey = "cmqtSjWUa4/0bENQDKxdr0vQqf4nFVDodarHm0Pc0hY=";
-    endpoint = "193.32.126.70";
-  }
-  {
-    id = "fr-par-wg-101";
-    uuid = "d4cc0735-d933-5afd-91fe-95501ee7b30a";
-    pubKey = "e2uj1eu/ZuTPqfY+9ULa6KFPRGLkSWCaooXBg9u9igA=";
-    endpoint = "146.70.184.2";
-  }
-  {
-    id = "fr-par-wg-102";
-    uuid = "1a379a78-4e4d-5aa9-852a-b0cc5ac120da";
-    pubKey = "TR0Gedkbp2mRRXKZ7VB7qaAvJHuQlwaaLFc4fxb4q2M=";
-    endpoint = "146.70.184.66";
-  }
-  {
-    id = "gb-lon-wg-001";
-    uuid = "28bd9777-1778-5238-9291-6cb721225e8c";
-    pubKey = "IJJe0TQtuQOyemL4IZn6oHEsMKSPqOuLfD5HoAWEPTY=";
-    endpoint = "141.98.252.130";
-  }
-  {
-    id = "gb-lon-wg-002";
-    uuid = "c62f218f-dab7-590f-9992-cc20ca5fffcb";
-    pubKey = "J57ba81Q8bigy9RXBXvl0DgABTrbl81nb37GuX50gnY=";
-    endpoint = "141.98.252.222";
-  }
-  {
-    id = "gb-lon-wg-003";
-    uuid = "3dfc7150-d6a9-55fc-8396-7081422a121e";
-    pubKey = "VZwE8hrpNzg6SMwn9LtEqonXzSWd5dkFk62PrNWFW3Y=";
-    endpoint = "185.195.232.66";
-  }
-  {
-    id = "gb-lon-wg-004";
-    uuid = "30cb5caa-f427-54ed-9fbd-80ca88c025fc";
-    pubKey = "PLpO9ikFX1garSFaeUpo7XVSMrILrTB8D9ZwQt6Zgwk=";
-    endpoint = "185.195.232.67";
-  }
-  {
-    id = "gb-lon-wg-005";
-    uuid = "ab170e26-ed61-567c-a604-284570960c8d";
-    pubKey = "bG6WulLmMK408n719B8nQJNuTRyRA3Qjm7bsm9d6v2M=";
-    endpoint = "185.195.232.68";
-  }
-  {
-    id = "gb-lon-wg-006";
-    uuid = "4ee66491-11e4-5a88-a16e-a877e2d9fef4";
-    pubKey = "INRhM0h4T1hi9j28pcC+vRv47bp7DIsNKtagaFZFSBI=";
-    endpoint = "185.195.232.69";
-  }
-  {
-    id = "gb-lon-wg-007";
-    uuid = "b3b858d7-dcda-5921-8383-f220b7b5c8c0";
-    pubKey = "MVqe9e9aDwfFuvEhEn4Wd/zWV3cmiCX9fZMWetz+23A=";
-    endpoint = "185.195.232.70";
-  }
-  {
-    id = "gb-lon-wg-201";
-    uuid = "6a8e523a-b809-5b15-98b9-cbc07c616422";
-    pubKey = "b71Y8V/vVwNRGkL4d1zvApDVL18u7m31dN+x+i5OJVs=";
-    endpoint = "185.248.85.3";
-  }
-  {
-    id = "gb-lon-wg-202";
-    uuid = "adca4edd-b597-5065-9748-2f4f511790a5";
-    pubKey = "+iQWuT3wb2DCy1u2eUKovhJTCB4aUdJUnpxGtONDIVE=";
-    endpoint = "185.248.85.18";
-  }
-  {
-    id = "gb-lon-wg-203";
-    uuid = "5b71ce0c-0e11-58b5-8738-6f8fe4c2cdea";
-    pubKey = "G7XDQqevQOw1SVL7Iarn9PM+RvmI6H/CfkmahBYEG0g=";
-    endpoint = "185.248.85.33";
-  }
-  {
-    id = "gb-lon-wg-204";
-    uuid = "be237713-97b3-56db-aa4d-2556ab9f5f99";
-    pubKey = "tJVHqpfkV2Xgmd4YK60aoErSt6PmJKJjkggHNDfWwiU=";
-    endpoint = "185.248.85.48";
-  }
-  {
-    id = "gb-lon-wg-301";
-    uuid = "6fef06a9-e4e9-5c43-861c-43437a6a96c7";
-    pubKey = "Gn9WbiHw83r8BI+v/Usx3mSR+TpMAWLFFz0r9Lfy7XQ=";
-    endpoint = "146.70.119.66";
-  }
-  {
-    id = "gb-lon-wg-302";
-    uuid = "c8a4e8b3-d6c6-514a-90cc-20667eb7735d";
-    pubKey = "s0i/bDeQ3xfMsLSrg6bILWunyytJNHVgIJlfflA8jFI=";
-    endpoint = "146.70.119.2";
-  }
-  {
-    id = "gb-lon-wg-303";
-    uuid = "08f96226-7063-51fe-b8ef-df498f6eb1ca";
-    pubKey = "ZcDVPTugbxo0rTvDKNnexzJ2qNrh3c/wFRtM2Pfl6jM=";
-    endpoint = "146.70.119.34";
-  }
-  {
-    id = "gb-mnc-wg-001";
-    uuid = "70033f45-e821-5d0f-97b8-2410f34af654";
-    pubKey = "Q2khJLbTSFxmppPGHgq2HdxMQx7CczPZCgVpYZMoNnM=";
-    endpoint = "146.70.133.98";
-  }
-  {
-    id = "gb-mnc-wg-002";
-    uuid = "9ceaf86c-00d5-5a71-81c6-218f5389e6c5";
-    pubKey = "SkERuKByX8fynFxSFAJVjUFJAeu9b/dfW2FynTM7XAk=";
-    endpoint = "146.70.132.130";
-  }
-  {
-    id = "gb-mnc-wg-003";
-    uuid = "86c5d6b4-50dc-5113-be08-a9d2d36dfc38";
-    pubKey = "c+RjxBk+wZCv0s4jffQesHdInakRVR3oV0IhpVo0WRY=";
-    endpoint = "146.70.132.162";
-  }
-  {
-    id = "gb-mnc-wg-004";
-    uuid = "6a8b4664-e1da-53c5-b265-ea31cd43f154";
-    pubKey = "DiMqK85O8U1T65HdVgOGh9uI63I3by9Dt6Shik2xbyM=";
-    endpoint = "146.70.132.194";
-  }
-  {
-    id = "gb-mnc-wg-005";
-    uuid = "657f6c26-b3b1-5157-990b-a40e0498dcf8";
-    pubKey = "kbVlSaqHQSpnewQn1X0j5R+WKiSW2e2Gq+I4XZj3Bjk=";
-    endpoint = "146.70.132.226";
-  }
-  {
-    id = "gb-mnc-wg-006";
-    uuid = "3f99dc9d-2c9a-5707-a9e9-8320c3ccc834";
-    pubKey = "zKOZzAitVBxfdxtXgGIyk7zmTtoHrVts7RQGrtsRIxo=";
-    endpoint = "146.70.133.2";
-  }
-  {
-    id = "gb-mnc-wg-007";
-    uuid = "7929a3b8-28a8-5e95-8f20-3edd1c27f4df";
-    pubKey = "ANaRAtjxqpPgp7r9VjTDfnBMis+MzSgCXc7TZMa0Vno=";
-    endpoint = "146.70.133.34";
-  }
-  {
-    id = "gb-mnc-wg-008";
-    uuid = "380d1256-44e3-580d-af3b-0356463a4bc1";
-    pubKey = "2bciRobW0TPtjrZ2teilr+7PjyiBMUGfixvAKOE52Xo=";
-    endpoint = "146.70.133.66";
-  }
-  {
-    id = "gr-ath-wg-101";
-    uuid = "fd93fc39-1634-5111-a281-7fcbcaa95a46";
-    pubKey = "li+thkAD7s6IZDgUoiKw4YSjM/U1q203PuthMzIJIU0=";
-    endpoint = "149.102.246.2";
-  }
-  {
-    id = "gr-ath-wg-102";
-    uuid = "89c20a3b-9572-575d-ba31-53a5927c048c";
-    pubKey = "OL0gbjlNt1s26CDQjRP9wgMZbgYff7/xyUI8ypOn01s=";
-    endpoint = "149.102.246.15";
-  }
-  {
-    id = "hk-hkg-wg-101";
-    uuid = "f0b25b22-567d-538a-84ae-ef06342f5180";
-    pubKey = "P9SKS4BtUC/V8X/uBaPO2InhpMpMZC0I8uAIKSkDyRA=";
-    endpoint = "89.45.6.82";
-  }
-  {
-    id = "hk-hkg-wg-102";
-    uuid = "973cdde2-701f-57f6-9d1d-f10e3541ce18";
-    pubKey = "5kcT1Fu8iWvPuWWzi3MqlqD4imLhS/KxFfmu3POdaCI=";
-    endpoint = "89.45.6.98";
-  }
-  {
-    id = "hk-hkg-wg-103";
-    uuid = "862dbda4-4690-51d3-98ad-e2922f75d2bf";
-    pubKey = "aymtx2v3S3vRcnuRNP1NQ4HCRQay+nLlbi05jmizGnA=";
-    endpoint = "89.45.6.114";
-  }
-  {
-    id = "hk-hkg-wg-201";
-    uuid = "7801649f-e091-569a-ad93-b4f7993fff1c";
-    pubKey = "Oxh13dmwY6nNUa5rVHr7sLiFOj0fjzsaAUAUV87/nGs=";
-    endpoint = "103.125.233.18";
-  }
-  {
-    id = "hk-hkg-wg-202";
-    uuid = "7977f2e3-fa2b-5caa-8b16-5c11db4172ee";
-    pubKey = "zmhMPHfkgo+uQxP+l919Gw7cj5NTatg9nMU37eEUWis=";
-    endpoint = "103.125.233.3";
-  }
-  {
-    id = "hr-zag-wg-001";
-    uuid = "882f9163-d27a-58c9-b1f3-28dd5d76ffe5";
-    pubKey = "PJvsgLogdAgZiVSxwTDyk9ri02mLZGuElklHShIjDGM=";
-    endpoint = "154.47.29.2";
-  }
-  {
-    id = "hr-zag-wg-002";
-    uuid = "cf505481-b461-5b74-bc3c-857bc97086a1";
-    pubKey = "V0iDOyLSj870sjGGenDvAWqJudlPKDc212cQN85snEo=";
-    endpoint = "154.47.29.15";
-  }
-  {
-    id = "hu-bud-wg-101";
-    uuid = "647dc71a-43c5-5fb1-acc8-680f6b9ff5c4";
-    pubKey = "u+h0GmQJ8UBaMTi2BP9Ls6UUszcGC51y6vTmNr/y+AU=";
-    endpoint = "146.70.196.194";
-  }
-  {
-    id = "hu-bud-wg-102";
-    uuid = "85936abb-05b2-5575-8724-1f369f742cdb";
-    pubKey = "iEWLm2F4xV013ZETeZcT1dyUd5O+JnyndHso8RP8txw=";
-    endpoint = "146.70.196.130";
-  }
-  {
-    id = "ie-dub-wg-101";
-    uuid = "07092a92-d9b8-59e0-a226-e5b443f5d95a";
-    pubKey = "lHrukA9+vn7Jjzx2Nb/1NQ0WiaiKppEqVxrGT5X1RFQ=";
-    endpoint = "146.70.189.2";
-  }
-  {
-    id = "ie-dub-wg-102";
-    uuid = "4ebc2b7b-5781-51d5-8988-ddee6673ce1f";
-    pubKey = "8YhrVbViPmYFZ2KJF2pR7d10EaBz8PJbPtoEiAs1IXA=";
-    endpoint = "146.70.189.66";
-  }
-  {
-    id = "il-tlv-wg-101";
-    uuid = "f7653672-db23-5228-8f4c-2f547f2e4aef";
-    pubKey = "XOedjVJaT2IrEDJbzvtZeL4hP5uPRHzFxvD1cwVwUFo=";
-    endpoint = "169.150.227.197";
-  }
-  {
-    id = "il-tlv-wg-102";
-    uuid = "e566c121-5c8c-5da2-bfdb-af8d1a2faa49";
-    pubKey = "UNeML4rXjvOerAstTNf4gG5B+OfjVzjSQrWE6mrswD0=";
-    endpoint = "169.150.227.210";
-  }
-  {
-    id = "il-tlv-wg-103";
-    uuid = "6b1929a5-1f53-5d24-bc3b-446f6769eb0e";
-    pubKey = "11FJ/NY3jaAw1PSYG9w7bxsMxAzlI+1p8/juh1LJPT0=";
-    endpoint = "169.150.227.222";
-  }
-  {
-    id = "it-mil-wg-001";
-    uuid = "c4c3ac8f-d8d9-5a6c-8a03-b44c89ede731";
-    pubKey = "Sa9fFFthvihGMO4cPExJ7ZaWSHNYoXmOqZMvJsaxOVk=";
-    endpoint = "178.249.211.66";
-  }
-  {
-    id = "it-mil-wg-002";
-    uuid = "341e4c54-752e-5ce7-8a8f-a24308b75173";
-    pubKey = "RJ7e37UEP6hfyLQM/lJ2K5wcZOJQFhm2VhFaBniH1kg=";
-    endpoint = "178.249.211.79";
-  }
-  {
-    id = "it-mil-wg-003";
-    uuid = "18ac627f-09cc-5427-b070-5ae47d8c903f";
-    pubKey = "WOyki5Gzoez07X7D3jAhG68hpoiYIWAx1yypVbkQaVY=";
-    endpoint = "178.249.211.92";
-  }
-  {
-    id = "it-mil-wg-102";
-    uuid = "400c37f2-7335-5bd3-922f-7a4936483d4c";
-    pubKey = "FetdLS9yyn5FQYWpJQUUdxs17Abjp5AotivoxUiOVHk=";
-    endpoint = "91.193.5.18";
-  }
-  {
-    id = "it-mil-wg-103";
-    uuid = "7a7a94c7-9862-519f-869c-d141f3a3b6df";
-    pubKey = "CJMsEa5/skjmYPc+lvHnmLD1dpSFoRmv/FE815oBbRE=";
-    endpoint = "91.193.5.2";
-  }
-  {
-    id = "it-mil-wg-104";
-    uuid = "9a302cb8-1455-5a7f-b978-c7fd52d900b9";
-    pubKey = "pLCsT96b9cZM2armrMEfN/SSQHEFJpNjO3soA/UIfnA=";
-    endpoint = "91.193.5.34";
-  }
-  {
-    id = "it-mil-wg-105";
-    uuid = "ea5968e1-5f7a-5793-9726-0ceda10ac7a8";
-    pubKey = "RYBO2IAnuENWpTL0NEKyu68DlcwNdHXPLOZYngcqHQE=";
-    endpoint = "37.120.201.114";
-  }
-  {
-    id = "it-mil-wg-106";
-    uuid = "8349cc62-c7d4-5e72-b712-99abc98aa9f2";
-    pubKey = "IEYK07KO1s9OcM9P0N2q0dnnOmY3ew0qknG3vg4HRR0=";
-    endpoint = "37.120.201.82";
-  }
-  {
-    id = "it-mil-wg-201";
-    uuid = "50a439ba-dda6-5981-9007-b555106e222d";
-    pubKey = "XHwDoIVZGoVfUYbfcPiRp1LhaOCDc0A3QrS72i3ztBw=";
-    endpoint = "146.70.225.2";
-  }
-  {
-    id = "it-mil-wg-202";
-    uuid = "8d506541-fcba-5d9d-966d-fbf9dbb695ea";
-    pubKey = "y5raL0QZx2CpOozrL+Knmjj7nnly3JKatFnxynjXpE0=";
-    endpoint = "146.70.225.66";
-  }
-  {
-    id = "it-rom-wg-001";
-    uuid = "f42c4f07-d812-54c8-aa52-98f4ff851eb6";
-    pubKey = "cGBz0+Uxqt82THeufy8deCQjAGo8fNoNISnTsKCz3VA=";
-    endpoint = "152.89.170.112";
-  }
-  {
-    id = "it-rom-wg-002";
-    uuid = "279d7d97-da50-598c-a770-b4dd671d1448";
-    pubKey = "ZCPxRHU/HYOnHHWs3ggBdWoZTlCSnPUrXYqYtk8UcQY=";
-    endpoint = "152.89.170.128";
-  }
-  {
-    id = "jp-osa-wg-001";
-    uuid = "88d7979b-399f-5d6e-9577-d33ada5d636e";
-    pubKey = "uhbuY1A7g0yNu0lRhLTi020kYeAx34ED30BA5DQRHFo=";
-    endpoint = "45.8.223.195";
-  }
-  {
-    id = "jp-osa-wg-002";
-    uuid = "efc78c9f-5fd6-58f0-8a22-ee084d237391";
-    pubKey = "wzGXxsYOraTCPZuRxfXVTNmoWsRkMFLqMqDxI4PutBg=";
-    endpoint = "45.8.223.210";
-  }
-  {
-    id = "jp-osa-wg-003";
-    uuid = "97fc5c9e-2a06-5e22-8bb6-97bc4b391e5c";
-    pubKey = "Pt18GnBffElW0sqnd6IDRr5r0B/NDezy6NicoPI+fG8=";
-    endpoint = "45.8.223.225";
-  }
-  {
-    id = "jp-osa-wg-004";
-    uuid = "8660ee6e-062a-55ae-8e82-a715fc7a8759";
-    pubKey = "JpDAtRuR39GLFKoQNiKvpzuJ65jOOLD7h85ekZ3reVc=";
-    endpoint = "45.8.223.240";
-  }
-  {
-    id = "jp-tyo-wg-001";
-    uuid = "0fe06a8a-339e-5557-ad70-dc82fc6598b1";
-    pubKey = "AUo2zhQ0wCDy3/jmZgOe4QMncWWqrdME7BbY2UlkgyI=";
-    endpoint = "138.199.21.239";
-  }
-  {
-    id = "jp-tyo-wg-002";
-    uuid = "c6031737-237a-5bd5-b4c1-ca44a6a5b1af";
-    pubKey = "zdlqydCbeR7sG1y5L8sS65X1oOtRKvfVbAuFgqEGhi4=";
-    endpoint = "138.199.21.226";
-  }
-  {
-    id = "jp-tyo-wg-201";
-    uuid = "0fd6c369-b193-5769-891a-ed83b9d278b4";
-    pubKey = "0j7u9Vd+EsqFs8XeV/T/ZM7gE+TWgEsYCsqcZUShvzc=";
-    endpoint = "146.70.138.194";
-  }
-  {
-    id = "jp-tyo-wg-202";
-    uuid = "081f5797-e54a-5106-813b-f1d871e816d9";
-    pubKey = "yLKGIH/eaNUnrOEPRtgvC3PSMTkyAFK/0t8lNjam02k=";
-    endpoint = "146.70.201.2";
-  }
-  {
-    id = "jp-tyo-wg-203";
-    uuid = "560f0993-f5a9-5b8d-a71c-584d5d198255";
-    pubKey = "tgTYDEfbDgr35h6hYW01MH76CJrwuBvbQFhyVsazEic=";
-    endpoint = "146.70.201.66";
-  }
-  {
-    id = "lu-lux-wg-001";
-    uuid = "d964e96c-020a-5730-acec-3a05acfd2b97";
-    pubKey = "MPVuxJm68wQZVHXP96tqGEDQ+1DhiMmXE/HgTUL0ghM=";
-    endpoint = "92.223.89.181";
-  }
-  {
-    id = "lu-lux-wg-002";
-    uuid = "19195668-8cbc-5c61-b81e-566282ff51fe";
-    pubKey = "cNJv1THT/q5iFUHdbFqjJmLLkyolMGY7g6uaZtVpjQE=";
-    endpoint = "92.223.89.165";
-  }
-  {
-    id = "lv-rix-wg-001";
-    uuid = "fdcf6595-856c-5fd1-9c5b-743c771a809f";
-    pubKey = "z0gUPGRwzmOcFLU6b2Z3dCJUJr2/9OvxujUbjFSTB0Q=";
-    endpoint = "31.170.22.15";
-  }
-  {
-    id = "md-kiv-wg-001";
-    uuid = "83a163e0-ff44-53a2-832a-d06b45f6b9b8";
-    pubKey = "U6dmCDTL49UWc9r9Emk3L4cy0UvpByP/QHplkZs6BVs=";
-    endpoint = "178.175.131.98";
-  }
-  {
-    id = "mk-skp-wg-001";
-    uuid = "479cf19d-681e-5333-9d10-868c8d2d09a3";
-    pubKey = "KWnr6NgfoH0UVgTekuZ6Xaw680j8cVc98+fX60CmzQA=";
-    endpoint = "185.225.28.146";
-  }
-  {
-    id = "nl-ams-wg-001";
-    uuid = "acde5f4f-a12f-5f6b-bf26-7bf23bec0b87";
-    pubKey = "UrQiI9ISdPPzd4ARw1NHOPKKvKvxUhjwRjaI0JpJFgM=";
-    endpoint = "193.32.249.66";
-  }
-  {
-    id = "nl-ams-wg-002";
-    uuid = "c05809fb-a617-5b15-85a1-a0212e593a43";
-    pubKey = "DVui+5aifNFRIVDjH3v2y+dQ+uwI+HFZOd21ajbEpBo=";
-    endpoint = "185.65.134.82";
-  }
-  {
-    id = "nl-ams-wg-003";
-    uuid = "fc3fd1e7-129b-55f1-8e17-5e2bb5ccc818";
-    pubKey = "if4HpJZbN7jft5E9R9wAoTcggIu6eZhgYDvqxnwrXic=";
-    endpoint = "185.65.134.83";
-  }
-  {
-    id = "nl-ams-wg-004";
-    uuid = "f1b8fc86-8e11-5314-b0ee-ea70b3000862";
-    pubKey = "hnRyse6QxPPcZOoSwRsHUtK1W+APWXnIoaDTmH6JsHQ=";
-    endpoint = "193.32.249.69";
-  }
-  {
-    id = "nl-ams-wg-005";
-    uuid = "6d43c3d5-8513-58b1-b1f5-5307b44b5084";
-    pubKey = "33BoONMGCm2vknq2eq72eozRsHmHQY6ZHEEZ4851TkY=";
-    endpoint = "193.32.249.70";
-  }
-  {
-    id = "nl-ams-wg-006";
-    uuid = "ad010361-ce14-5558-84b8-c149a43dbc0f";
-    pubKey = "xpZ3ZDEukbqKQvdHwaqKMUhsYhcYD3uLPUh1ACsVr1s=";
-    endpoint = "185.65.134.86";
-  }
-  {
-    id = "nl-ams-wg-101";
-    uuid = "3538c89b-8a32-5173-9eb8-258e313345a5";
-    pubKey = "m9w2Fr0rcN6R1a9HYrGnUTU176rTZIq2pcsovPd9sms=";
-    endpoint = "92.60.40.194";
-  }
-  {
-    id = "nl-ams-wg-102";
-    uuid = "ee96de54-0070-5b6a-bc2e-34528e037f03";
-    pubKey = "uUYbYGKoA6UBh1hfkAz5tAWFv4SmteYC9kWh7/K6Ah0=";
-    endpoint = "92.60.40.209";
-  }
-  {
-    id = "nl-ams-wg-103";
-    uuid = "7661c6fa-f1d6-553c-a875-6571969dd667";
-    pubKey = "CE7mlfDJ4gpwLPB/CyPfIusITnGZwDI9v4IlVueGT24=";
-    endpoint = "92.60.40.224";
-  }
-  {
-    id = "nl-ams-wg-104";
-    uuid = "afc79d80-e8ce-5653-a0a7-2504b4baf500";
-    pubKey = "qZMttTUfrGT1kX5x/RYqY/y3xy2gt06seTxMJF30Q2k=";
-    endpoint = "92.60.40.239";
-  }
-  {
-    id = "nl-ams-wg-201";
-    uuid = "ffa2f222-6334-5ece-837f-5242bdf74a72";
-    pubKey = "vt+yTcpxWvH8qiSncd1wSPV/78vt2aE2BBU8ZbG7x1Q=";
-    endpoint = "169.150.196.2";
-  }
-  {
-    id = "nl-ams-wg-202";
-    uuid = "d64064fe-18cf-5fb6-85cf-350e6a71af77";
-    pubKey = "BChJDLOwZu9Q1oH0UcrxcHP6xxHhyRbjrBUsE0e07Vk=";
-    endpoint = "169.150.196.15";
-  }
-  {
-    id = "nl-ams-wg-203";
-    uuid = "b760a4a2-93f1-5689-97e1-2aaac045e9ff";
-    pubKey = "M5z8TKjJYpIJ3FXoXy7k58IUaoVro2tWMKSgC5WIqR8=";
-    endpoint = "169.150.196.28";
-  }
-  {
-    id = "no-osl-wg-001";
-    uuid = "b1ff97ee-19d7-5d49-be02-6d5f4a3ecff7";
-    pubKey = "jOUZjMq2PWHDzQxu3jPXktYB7EKeFwBzGZx56cTXXQg=";
-    endpoint = "176.125.235.71";
-  }
-  {
-    id = "no-osl-wg-002";
-    uuid = "a8a91826-97c3-5c42-a649-ad73d352e77d";
-    pubKey = "IhhpKphSFWpwja1P4HBctZ367G3Q53EgdeFGZro29Tc=";
-    endpoint = "176.125.235.72";
-  }
-  {
-    id = "no-osl-wg-003";
-    uuid = "32869d96-f2e9-5336-b2ad-e55cebd16645";
-    pubKey = "zOBWmQ3BEOZKsYKbj4dC2hQjxCbr3eKa6wGWyEDYbC4=";
-    endpoint = "176.125.235.73";
-  }
-  {
-    id = "no-osl-wg-004";
-    uuid = "3d680855-f104-5726-838e-874c121c88e7";
-    pubKey = "veeEoYS9a2T6K8WMs/MvRCdNJG580XbhnLfbFjp3B0M=";
-    endpoint = "176.125.235.74";
-  }
-  {
-    id = "no-svg-wg-001";
-    uuid = "2feb244c-8868-5e1f-8d26-5d5e49295a94";
-    pubKey = "kduYoE/b1mA2Pjszx1CzE4Lktsdc2zsUU8Relul2m2U=";
-    endpoint = "194.127.199.2";
-  }
-  {
-    id = "no-svg-wg-002";
-    uuid = "9f5ef600-0b5b-5add-97f5-3b27579cdda9";
-    pubKey = "U9fbFesIIr2HotWdkfMpKyOEPk+RYtE2oYn3KoLmkj4=";
-    endpoint = "194.127.199.31";
-  }
-  {
-    id = "no-svg-wg-003";
-    uuid = "23bac58e-c071-5092-b990-2da756e6e86e";
-    pubKey = "btc4mh3n9jVCW6yikw3cOPct0x3B5cDK+kKnvgCV0S0=";
-    endpoint = "194.127.199.62";
-  }
-  {
-    id = "no-svg-wg-004";
-    uuid = "dc7b5357-a442-5e82-97d8-867e8d744c34";
-    pubKey = "Fu98PLCZw/FTcQqyTy0vzaepkfxuSLAah7wnafGVO1g=";
-    endpoint = "194.127.199.93";
-  }
-  {
-    id = "nz-akl-wg-301";
-    uuid = "a1ad1d0b-2f6b-5631-a256-b143d18b4e2d";
-    pubKey = "BOEOP01bcND1a0zvmOxRHPB/ObgjgPIzBJE5wbm7B0M=";
-    endpoint = "103.75.11.50";
-  }
-  {
-    id = "nz-akl-wg-302";
-    uuid = "65dff237-ae76-549f-82c4-df4c7159f671";
-    pubKey = "80WGWgFP9q3eU16MuLJISB1fzAu2LM2heschmokVSVU=";
-    endpoint = "103.75.11.66";
-  }
-  {
-    id = "pl-waw-wg-101";
-    uuid = "895a6421-aef8-5498-9839-ac4b98736537";
-    pubKey = "fO4beJGkKZxosCZz1qunktieuPyzPnEVKVQNhzanjnA=";
-    endpoint = "45.134.212.66";
-  }
-  {
-    id = "pl-waw-wg-102";
-    uuid = "605f573b-3f7f-5e79-ae67-a252b3b5ef81";
-    pubKey = "nJEWae9GebEY7yJONXQ1j4gbURV4QULjx388woAlbDs=";
-    endpoint = "45.134.212.79";
-  }
-  {
-    id = "pl-waw-wg-103";
-    uuid = "63c4e67b-2a25-5120-ae2e-fb50a3c22bc1";
-    pubKey = "07eUtSNhiJ9dQXBmUqFODj0OqhmbKQGbRikIq9f90jM=";
-    endpoint = "45.134.212.92";
-  }
-  {
-    id = "pl-waw-wg-201";
-    uuid = "6fca05af-6cbc-56d5-86a5-35412ade42fa";
-    pubKey = "XwFAczY5LdogFwE9soDecXWqywSCDGuRyJhr/0psI00=";
-    endpoint = "45.128.38.226";
-  }
-  {
-    id = "pl-waw-wg-202";
-    uuid = "bb2d6aac-4ea7-5f23-9516-8e4a095e1295";
-    pubKey = "nyfOkamv1ryTS62lsmyU96cqI0dtqek84DhyxWgAQGY=";
-    endpoint = "146.70.144.34";
-  }
-  {
-    id = "pt-lis-wg-101";
-    uuid = "a741a216-a2ae-57b9-a54f-381e322e5c58";
-    pubKey = "xL7uaEPI7KV3aNPELKpGjVxBCq0yiAc376iS/MRDo3Y=";
-    endpoint = "94.46.24.33";
-  }
-  {
-    id = "pt-lis-wg-102";
-    uuid = "f33a98e4-1ec4-5e7e-bbfa-99664b811d7c";
-    pubKey = "ZOa0Yjuak3i8PEfYTwB4UoZtVGnN6+U55vaIw7W7hwA=";
-    endpoint = "94.46.24.49";
-  }
-  {
-    id = "pt-lis-wg-201";
-    uuid = "6e0e6c7d-7e94-5893-b617-44995dbdd8ca";
-    pubKey = "JCAe7D/owe11Ii2rhpIKhGZvP/V1P1cVZwZAjpSRqmc=";
-    endpoint = "149.88.20.206";
-  }
-  {
-    id = "pt-lis-wg-202";
-    uuid = "c00bd34f-1d4a-5322-aa88-dc131151cde0";
-    pubKey = "5P4CQYQeSozk/3KQZh/kl7tUMFGgRB60Ttx6x2nh+F8=";
-    endpoint = "149.88.20.193";
-  }
-  {
-    id = "ro-buh-wg-001";
-    uuid = "2fbd6885-5b56-5ada-8d7e-28f24f479b3e";
-    pubKey = "xpKhRTf9JI269S2PujLbrJm1TwIe67HD5CLe+sP4tUU=";
-    endpoint = "146.70.124.130";
-  }
-  {
-    id = "ro-buh-wg-002";
-    uuid = "f34d3ecd-9b3b-5fce-a510-d628e46367c0";
-    pubKey = "Ekc3+qU88FuMfkEMyLlgRqDYv+WHJvUsfOMI/C0ydE4=";
-    endpoint = "146.70.124.194";
-  }
-  {
-    id = "rs-beg-wg-101";
-    uuid = "51aabeda-3c18-571f-9e02-c7ebcc7a331a";
-    pubKey = "Orrce1127WpljZa+xKbF21zJkJ9wM1M3VJ5GJ/UsIDU=";
-    endpoint = "146.70.193.2";
-  }
-  {
-    id = "rs-beg-wg-102";
-    uuid = "0b30ede0-0c5e-59f9-9af8-31f1b1346e72";
-    pubKey = "35lawt+YUx10ELTFhZhg4/xzXRmjxCl/j1O4RK5d60M=";
-    endpoint = "146.70.193.66";
-  }
-  {
-    id = "se-got-wg-001";
-    uuid = "bede8fd3-48a4-5def-bf6b-035bba767ceb";
-    pubKey = "5JMPeO7gXIbR5CnUa/NPNK4L5GqUnreF0/Bozai4pl4=";
-    endpoint = "185.213.154.66";
-  }
-  {
-    id = "se-got-wg-002";
-    uuid = "f2e9ae3a-2bca-5e82-97ce-116ae755f2b5";
-    pubKey = "AtvE5KdPeQtOcE2QyXaPt9eQoBV3GBxzimQ2FIuGQ2U=";
-    endpoint = "185.213.154.67";
-  }
-  {
-    id = "se-got-wg-003";
-    uuid = "15286adb-acd9-5968-be3a-e5d955f2c8dd";
-    pubKey = "BLNHNoGO88LjV/wDBa7CUUwUzPq/fO2UwcGLy56hKy4=";
-    endpoint = "185.213.154.68";
-  }
-  {
-    id = "se-got-wg-004";
-    uuid = "969a2c35-a480-57b4-a6bf-efc94a6d291a";
-    pubKey = "veGD6/aEY6sMfN3Ls7YWPmNgu3AheO7nQqsFT47YSws=";
-    endpoint = "185.213.154.69";
-  }
-  {
-    id = "se-got-wg-101";
-    uuid = "de04232e-27ea-51b7-bcc9-5ccf96b75819";
-    pubKey = "B8UVAeNkAW4NiGHd1lpl933Drh4y7pMqpXJpH0SrGjQ=";
-    endpoint = "185.213.154.70";
-  }
-  {
-    id = "se-mma-wg-001";
-    uuid = "e7b001a2-567d-5c26-bb3d-0ad25953cf67";
-    pubKey = "Qn1QaXYTJJSmJSMw18CGdnFiVM0/Gj/15OdkxbXCSG0=";
-    endpoint = "193.138.218.220";
-  }
-  {
-    id = "se-mma-wg-002";
-    uuid = "717dfb5c-ace0-533e-8c2a-9360c9d74f87";
-    pubKey = "5y66WShsFXqM5K7/4CPEGCWfk7PQyNhVBT2ILjbGm2I=";
-    endpoint = "193.138.218.80";
-  }
-  {
-    id = "se-mma-wg-003";
-    uuid = "7a67def4-de59-5827-9060-fe32aac03e74";
-    pubKey = "fZFAcd8vqWOBpRqlXifsjzGf16gMTg2GuwKyZtkG6UU=";
-    endpoint = "193.138.218.83";
-  }
-  {
-    id = "se-mma-wg-004";
-    uuid = "0cd272aa-ddbf-5de6-8308-10a9223ac5a3";
-    pubKey = "m4jnogFbACz7LByjo++8z5+1WV0BuR1T7E1OWA+n8h0=";
-    endpoint = "193.138.218.130";
-  }
-  {
-    id = "se-mma-wg-005";
-    uuid = "23931215-5732-5f7b-8ea5-a5138e00295b";
-    pubKey = "qnJrQEf2JiDHMnMWFFxWz8I9NREockylVgYVE95s72s=";
-    endpoint = "193.138.218.82";
-  }
-  {
-    id = "se-mma-wg-101";
-    uuid = "81d9c6e5-aa4f-5e2a-908c-7099d76a2a8a";
-    pubKey = "7ncbaCb+9za3jnXlR95I6dJBkwL1ABB5i4ndFUesYxE=";
-    endpoint = "45.83.220.68";
-  }
-  {
-    id = "se-mma-wg-102";
-    uuid = "bfde97b0-ceba-5566-a1a3-45065b3988da";
-    pubKey = "cwglRdgLQ4gMG36TIYlc5OIemLNrYs4UM1KTc8mnzxk=";
-    endpoint = "45.83.220.69";
-  }
-  {
-    id = "se-mma-wg-103";
-    uuid = "8296525f-1948-5d54-ae05-5acf29f558a5";
-    pubKey = "XscA5gebj51nmhAr6o+aUCnMHWGjbS1Gvvd0tuLRiFE=";
-    endpoint = "45.83.220.70";
-  }
-  {
-    id = "se-sto-wg-001";
-    uuid = "17410814-2c78-5356-bbd4-fed2c025fce7";
-    pubKey = "MkP/Jytkg51/Y/EostONjIN6YaFRpsAYiNKMX27/CAY=";
-    endpoint = "185.195.233.76";
-  }
-  {
-    id = "se-sto-wg-002";
-    uuid = "d0889303-d079-580b-9e51-5bb79dac9f24";
-    pubKey = "q2ZZPfumPaRVl4DJfzNdQF/GHfe6BYAzQ2GZZHb6rmI=";
-    endpoint = "185.65.135.67";
-  }
-  {
-    id = "se-sto-wg-003";
-    uuid = "55fe0f10-96de-5dcb-8fe6-29c4db404c7f";
-    pubKey = "qZbwfoY4LHhDPzUROFbG+LqOjB0+Odwjg/Nv3kGolWc=";
-    endpoint = "185.65.135.68";
-  }
-  {
-    id = "se-sto-wg-004";
-    uuid = "5490e63f-b0e6-5e16-bac9-c6bc3ea3d86e";
-    pubKey = "94qIvXgF0OXZ4IcquoS7AO57OV6JswUFgdONgGiq+jo=";
-    endpoint = "185.65.135.69";
-  }
-  {
-    id = "se-sto-wg-005";
-    uuid = "273bb216-2d17-531a-874e-682985d8384c";
-    pubKey = "5rVa0M13oMNobMY7ToAMU1L/Mox7AYACvV+nfsE7zF0=";
-    endpoint = "185.65.135.72";
-  }
-  {
-    id = "se-sto-wg-006";
-    uuid = "5657362b-199e-5cf4-99f9-b2fc4cc0e4f5";
-    pubKey = "5WNG/KKCtgF4+49e/4iqvHVY/i+6dzUmVKXcJj7zi3I=";
-    endpoint = "185.65.135.73";
-  }
-  {
-    id = "se-sto-wg-007";
-    uuid = "68ba9917-aaaa-5df3-8d2f-4cd7944a11d5";
-    pubKey = "YD4k8xaiw2kcRhfLRf2UiRNcDmvvu5NV0xT4d5xOFzU=";
-    endpoint = "185.65.135.70";
-  }
-  {
-    id = "se-sto-wg-008";
-    uuid = "ab6dcd66-6fd5-5347-9c91-ce5fbf9408c7";
-    pubKey = "4nOXEaCDYBV//nsVXk7MrnHpxLV9MbGjt+IGQY//p3k=";
-    endpoint = "185.65.135.71";
-  }
-  {
-    id = "se-sto-wg-009";
-    uuid = "eb60da7b-f59f-5973-a38a-18abd94a45be";
-    pubKey = "t1XlQD7rER0JUPrmh3R5IpxjUP9YOqodJAwfRorNxl4=";
-    endpoint = "185.195.233.69";
-  }
-  {
-    id = "se-sto-wg-010";
-    uuid = "6b5ca11c-a478-5201-842d-916aab234db5";
-    pubKey = "zWh5JzqxNhaJ7tMFDRkj9etq6rqRZrUhv156lG6H+Vc=";
-    endpoint = "185.195.233.70";
-  }
-  {
-    id = "se-sto-wg-011";
-    uuid = "3c54ce27-d947-53d8-83c1-a075b8c095e0";
-    pubKey = "GqKpm8VwKJQLQEQ0PXbkRueY9hDqiMibr+EpW3n9syk=";
-    endpoint = "185.195.233.71";
-  }
-  {
-    id = "se-sto-wg-012";
-    uuid = "2080256a-fd43-596e-b281-159d13eb8bf3";
-    pubKey = "1493vtFUbIfSpQKRBki/1d0YgWIQwMV4AQAvGxjCNVM=";
-    endpoint = "185.195.233.66";
-  }
-  {
-    id = "se-sto-wg-014";
-    uuid = "7a99f339-10c2-5b4e-bc0f-882397bbe4b4";
-    pubKey = "V6RHmYEXDDXvCPZENmhwk5VEn6KgSseTFHw/IkXFzGg=";
-    endpoint = "185.195.233.68";
-  }
-  {
-    id = "sg-sin-wg-001";
-    uuid = "bc173bb4-e0d0-5a61-9140-d99bdd3259ef";
-    pubKey = "sFHv/qzG7b6ds5pow+oAR3G5Wqp9eFbBD3BmEGBuUWU=";
-    endpoint = "138.199.60.2";
-  }
-  {
-    id = "sg-sin-wg-002";
-    uuid = "c2b1d89f-b582-5881-a452-859e259ae03b";
-    pubKey = "WM5I4IFwQcVysM4fF4NXZtQXNrSkqVWkQxNPPygOiF0=";
-    endpoint = "138.199.60.15";
-  }
-  {
-    id = "sg-sin-wg-003";
-    uuid = "68343973-7283-5ef7-a90f-a49943ddd8a5";
-    pubKey = "3HtGdhEXUPKQIDRW49wCUoTK2ZXfq+QfzjfYoldNchg=";
-    endpoint = "138.199.60.28";
-  }
-  {
-    id = "sg-sin-wg-101";
-    uuid = "7a51803a-b044-570c-b80d-c888f218b21b";
-    pubKey = "KB6ZA1PAixd74c+mO0VBY4j7LaitK8B4L1APbFIQyQ0=";
-    endpoint = "146.70.199.194";
-  }
-  {
-    id = "sg-sin-wg-102";
-    uuid = "36f0de6c-d3b3-58e9-9603-cb425a17aaa4";
-    pubKey = "qrhHOwk0ree+LFxW6htvGEfVFuhM2efQ/M+4p0sx/gA=";
-    endpoint = "146.70.199.130";
-  }
-  {
-    id = "sk-bts-wg-001";
-    uuid = "59d53809-0c70-5a80-b907-243f7416396e";
-    pubKey = "QEVIaIycN8p5twXCuZeQTEj9utozakw/MU8H6+/whls=";
-    endpoint = "138.199.34.129";
-  }
-  {
-    id = "sk-bts-wg-002";
-    uuid = "95d1bbc7-d513-5b85-a9bf-61ff2fa9ba00";
-    pubKey = "JeEuObwimNmoVtPn4kpMI1y1UM+IChGVBLtmP3CNNVQ=";
-    endpoint = "138.199.34.143";
-  }
-  {
-    id = "ua-iev-wg-001";
-    uuid = "ee3c4c92-8361-513b-bcab-eafd5483359e";
-    pubKey = "PO2o3ewguPP24wLy8bbDqx1xuAnTOIVzdzVGVT0d8kU=";
-    endpoint = "149.102.240.79";
-  }
-  {
-    id = "ua-iev-wg-002";
-    uuid = "218b702a-7693-5a81-b425-a8b07f6ba19c";
-    pubKey = "HUj/J8Rxx7QVGh3kJsFgPZoqtm2BQIX03vKJSIyTOSo=";
-    endpoint = "149.102.240.66";
-  }
-  {
-    id = "us-atl-wg-001";
-    uuid = "6683c4ce-f15f-515e-bcde-be32c8b90690";
-    pubKey = "nvyBkaEXHwyPBAm8spGB0TFzf2W5wPAl8EEuJ0t+bzs=";
-    endpoint = "45.134.140.130";
-  }
-  {
-    id = "us-atl-wg-002";
-    uuid = "1c08b188-aa8b-53a6-ab66-042a0f8756c8";
-    pubKey = "ECeGYeh8CfPJO3v56ucCDdl+PlKcj2bBszUGkT+hVWQ=";
-    endpoint = "45.134.140.143";
-  }
-  {
-    id = "us-atl-wg-101";
-    uuid = "2b719836-bc6b-5f6a-8ba6-36fd59a85a26";
-    pubKey = "MNUf9CYsmf72git8MGzui3kplclyPP6xAS6sz3JT2F8=";
-    endpoint = "66.115.180.231";
-  }
-  {
-    id = "us-atl-wg-102";
-    uuid = "da955674-7798-5fbe-bd5c-331882fe7a45";
-    pubKey = "RFHvvrw6/3qnwsH89GMYm7xdJA72MPSpXI+WPk7sNwk=";
-    endpoint = "66.115.180.232";
-  }
-  {
-    id = "us-atl-wg-103";
-    uuid = "4ee82d79-d41e-5b89-a57a-e6d944f49f30";
-    pubKey = "u3X1bahP8G2MNUJ57ImYx5pvADVhI9YmCsWlTULAQnw=";
-    endpoint = "66.115.180.233";
-  }
-  {
-    id = "us-atl-wg-104";
-    uuid = "4248b136-8341-5032-b65a-94cd14556b1f";
-    pubKey = "bY+7UNjd1zhZ4GSV9YlarYxB7fl5dhKEyJHaJ3iZg3g=";
-    endpoint = "66.115.180.234";
-  }
-  {
-    id = "us-atl-wg-105";
-    uuid = "a4b808c4-3907-53ff-aba8-0b530f727388";
-    pubKey = "QEz7T4HN99SCFuWRJA3MJL8B7WnmbdVcM2t5CDe0BQw=";
-    endpoint = "66.115.180.235";
-  }
-  {
-    id = "us-atl-wg-106";
-    uuid = "84be06f0-596f-5f7d-8939-8bc9560e3c47";
-    pubKey = "s60zDaHwztfLhcrcQXIMhXgTAI1KAUT2osA7k3LSHDE=";
-    endpoint = "66.115.180.236";
-  }
-  {
-    id = "us-atl-wg-107";
-    uuid = "cd659348-ff45-5566-a356-fe10fc5d383a";
-    pubKey = "IbkH8hULcFgUEt/OBXamWI2IotlbYJMyAcAhSTbtD1o=";
-    endpoint = "66.115.180.237";
-  }
-  {
-    id = "us-atl-wg-108";
-    uuid = "f9fff742-8ed6-5f59-814a-09a55f08b8b1";
-    pubKey = "/38SXpa6r80z/CHrPHDW5uTaXa3Xj0U8hIztCEV4q3I=";
-    endpoint = "66.115.180.238";
-  }
-  {
-    id = "us-atl-wg-110";
-    uuid = "ecc33e1b-55a1-5d12-a85f-0a56312df306";
-    pubKey = "bjy5pU9WbGfAfnwjI+IajrgYwbbGlTk4xHimTpDQ/HY=";
-    endpoint = "66.115.180.240";
-  }
-  {
-    id = "us-atl-wg-201";
-    uuid = "4d597982-3825-57df-a861-6a9ede3fe6f5";
-    pubKey = "BbW2Gm4IZEW8CrEIg71jZC9pztA/J4h1PK9lwq57ewE=";
-    endpoint = "107.150.22.2";
-  }
-  {
-    id = "us-atl-wg-202";
-    uuid = "37d9c92d-d9b7-514b-af91-dcb481681a9f";
-    pubKey = "Qnb6TdDA7IkTIISJ40W+6rZA81pb0v4D0jRZRTYNQnQ=";
-    endpoint = "104.129.24.98";
-  }
-  {
-    id = "us-atl-wg-203";
-    uuid = "1ea19f2f-09b6-5680-8c58-2edd60346796";
-    pubKey = "nZQvI+2ZzDC2titokjWcojbjvn4bxHrhUzg1UK/K0nc=";
-    endpoint = "104.129.24.114";
-  }
-  {
-    id = "us-atl-wg-204";
-    uuid = "d489d94e-9d9c-57f2-89f2-26e62666b333";
-    pubKey = "rlZyrKRSLfvjUBpYD2jUkWhdWkB1RnRr+Q4bv9+nvD8=";
-    endpoint = "104.223.91.18";
-  }
-  {
-    id = "us-bos-wg-001";
-    uuid = "857fee94-aff6-5aaf-aafd-d0211a17eff8";
-    pubKey = "CsysTnZ0HvyYRjsKMPx60JIgy777JhD0h9WpbHbV83o=";
-    endpoint = "43.225.189.131";
-  }
-  {
-    id = "us-bos-wg-002";
-    uuid = "61ffca17-29d1-5392-8873-eaffe9c4e4a6";
-    pubKey = "LLkA2XSBvfUeXgLdMKP+OTQeKhtGB03kKskJEwlzAE8=";
-    endpoint = "43.225.189.162";
-  }
-  {
-    id = "us-bos-wg-101";
-    uuid = "ad82088c-e662-5dce-85f5-aa63475db79c";
-    pubKey = "oxJ2PIqrQOmS0uiyXvnxT64E1uZnjZDWPbP/+APToAE=";
-    endpoint = "149.40.50.98";
-  }
-  {
-    id = "us-bos-wg-102";
-    uuid = "52b9648c-6bb8-5801-a344-5991ab54e080";
-    pubKey = "wcmmadJObux2/62ES+QbIO21BkU7p2I0s6n4WNZZgW0=";
-    endpoint = "149.40.50.112";
-  }
-  {
-    id = "us-chi-wg-001";
-    uuid = "614fddec-e3bf-539d-b1de-4b8ba79838f8";
-    pubKey = "T5aabskeYCd5dn81c3jOKVxGWQSLwpqHSHf6wButSgw=";
-    endpoint = "68.235.44.2";
-  }
-  {
-    id = "us-chi-wg-002";
-    uuid = "0cc6d57d-a60b-5561-bd40-1ceea24f0bce";
-    pubKey = "dr0ORuPoV9TYY6G5cM00cOoO72wfUC7Lmni7+Az9m0Y=";
-    endpoint = "68.235.43.130";
-  }
-  {
-    id = "us-chi-wg-003";
-    uuid = "4e34624f-156a-53b6-bee7-f2e964a2ad1d";
-    pubKey = "VY5Dos3WeCyI1Jb8Z+KhB4YlEKZmrQeSNcP0WCrzk2I=";
-    endpoint = "68.235.44.34";
-  }
-  {
-    id = "us-chi-wg-004";
-    uuid = "9b4c2bbb-77f5-5eae-99a9-988329cf4008";
-    pubKey = "Na8m5Z3O6kwtLFPsign+JPlLoFm/Q3eBdIMI08psSzg=";
-    endpoint = "68.235.43.162";
-  }
-  {
-    id = "us-chi-wg-005";
-    uuid = "4e35f421-52ea-5087-998f-aff9477b1fd2";
-    pubKey = "X50kEMmdPc50SYWFaDFNOAMzUYnCZv3rxzw2Y6BqOyk=";
-    endpoint = "68.235.44.66";
-  }
-  {
-    id = "us-chi-wg-006";
-    uuid = "0fe6cd77-896c-5841-860d-eda957ecb690";
-    pubKey = "01KgzQY+pT7Q+GPUa1ijj0YgdN5owMaK9ViRZO4dIWo=";
-    endpoint = "68.235.44.98";
-  }
-  {
-    id = "us-chi-wg-101";
-    uuid = "c804fb24-5f88-5392-8041-406ac529cecd";
-    pubKey = "P1Y04kVMViwZrMhjcX8fDmuVWoKl3xm2Hv/aQOmPWH0=";
-    endpoint = "66.63.167.114";
-  }
-  {
-    id = "us-chi-wg-102";
-    uuid = "64c77136-d510-5a9a-a4da-f4d803648bcd";
-    pubKey = "6CwMg2aoKNSFFcIsW3R3SY5T6fBYwoRFifl8ZVlw+Vg=";
-    endpoint = "66.63.167.194";
-  }
-  {
-    id = "us-chi-wg-104";
-    uuid = "29344327-e81c-5db9-926c-dad466281b35";
-    pubKey = "/WirOQ8FNF9tD1+/MYgIAWpjFKiJYhJJ7/w2QmKBrVo=";
-    endpoint = "66.63.167.146";
-  }
-  {
-    id = "us-chi-wg-201";
-    uuid = "6de1943b-f5b1-579a-9a8e-57a015866aa6";
-    pubKey = "+Xx2mJnoJ+JS11Z6g8mp6aUZV7p6DAN9ZTAzPaHakhM=";
-    endpoint = "87.249.134.1";
-  }
-  {
-    id = "us-chi-wg-202";
-    uuid = "b4892d7f-51f1-5b98-8ec9-44438a59e2cd";
-    pubKey = "rmN4IM0I0gF7V9503/xnQMOLsu9txl8GTqci9dgUO18=";
-    endpoint = "87.249.134.14";
-  }
-  {
-    id = "us-chi-wg-203";
-    uuid = "c0989fe2-6000-5bb8-a2c8-682050c8f4e2";
-    pubKey = "V0ilKm3bVqt0rmJ80sP0zSVK4m6O3nADi88IQAL5kjw=";
-    endpoint = "87.249.134.27";
-  }
-  {
-    id = "us-dal-wg-001";
-    uuid = "0011fea1-6d7d-579f-8587-2bdc8640f077";
-    pubKey = "EAzbWMQXxJGsd8j2brhYerGB3t5cPOXqdIDFspDGSng=";
-    endpoint = "146.70.211.66";
-  }
-  {
-    id = "us-dal-wg-002";
-    uuid = "fd202777-786b-5694-8061-0e51d6c72265";
-    pubKey = "OYG1hxzz3kUGpVeGjx9DcCYreMO3S6tZN17iHUK+zDE=";
-    endpoint = "146.70.211.2";
-  }
-  {
-    id = "us-dal-wg-003";
-    uuid = "c055e36f-b045-5be0-9dd1-08be84543c0c";
-    pubKey = "jn/i/ekJOkkRUdMj2I4ViUKd3d/LAdTQ+ICKmBy1tkM=";
-    endpoint = "146.70.211.130";
-  }
-  {
-    id = "us-dal-wg-101";
-    uuid = "d38127d7-93b9-5499-9659-af586f3fa2cc";
-    pubKey = "fZXw+9I+tAxRaiYB1tbPYa9EFulu3TJ10SAZoHrS/0U=";
-    endpoint = "174.127.113.8";
-  }
-  {
-    id = "us-dal-wg-102";
-    uuid = "2af88f34-45c1-54c3-9b17-7f31b436ce0d";
-    pubKey = "C6fRMWc8NehE1Nsn4VTI5RQ1vkAf+nG+IN+jbC1MgSo=";
-    endpoint = "174.127.113.9";
-  }
-  {
-    id = "us-dal-wg-103";
-    uuid = "951d6720-2e11-5833-bd4c-b93b2b847f57";
-    pubKey = "WqCOcFoOHUS5w/7W+psWusNWNLQAQItMHwgBn+zU3V0=";
-    endpoint = "174.127.113.10";
-  }
-  {
-    id = "us-dal-wg-104";
-    uuid = "9ef22074-db98-5ef3-9e9c-aba7adf2726c";
-    pubKey = "c3OgLZw8kh5k3lqACXIiShPGr8xcIfdrUs+qRW9zmk4=";
-    endpoint = "174.127.113.11";
-  }
-  {
-    id = "us-dal-wg-105";
-    uuid = "aab4f910-528b-59b6-888f-dbdc874ad2a5";
-    pubKey = "REvzY8yCTggZmODs3FOjUc4uqwh4w4PCnNr7BV/7ZFw=";
-    endpoint = "174.127.113.12";
-  }
-  {
-    id = "us-dal-wg-106";
-    uuid = "0299dbb4-a1e4-5254-a6c0-fe1a14b77f76";
-    pubKey = "k+h3AKF7Lkw5Z2RaCQ7PJzW1zhHZ127XY2YZgKg4mAQ=";
-    endpoint = "174.127.113.13";
-  }
-  {
-    id = "us-dal-wg-107";
-    uuid = "c448a5bb-bff7-576a-9d57-e58a770804c4";
-    pubKey = "Zmv3KbVF3ZSGvkWrFsNx2qGXpaNg0AC2duEwoAVZrRI=";
-    endpoint = "174.127.113.14";
-  }
-  {
-    id = "us-dal-wg-108";
-    uuid = "a143e6e5-42ed-55bc-9d84-96dfa9b8f274";
-    pubKey = "fYuciekV90AUxyJPw2SLOy0Vo73XFS30jBBGIfhvtn4=";
-    endpoint = "174.127.113.15";
-  }
-  {
-    id = "us-dal-wg-109";
-    uuid = "719775d2-e384-5ec7-9ce7-eff3506d559e";
-    pubKey = "ICC/pGgEuhgJ8SZykkKBeXyqNtjHPwSTOo6xXGgMq20=";
-    endpoint = "174.127.113.16";
-  }
-  {
-    id = "us-dal-wg-110";
-    uuid = "d1ecb752-00d7-5d3d-8096-f129ceda484a";
-    pubKey = "USDvnCyWR5ka523xnxy9KG4rnw/3i9mBprjjp0FQ1QE=";
-    endpoint = "174.127.113.17";
-  }
-  {
-    id = "us-dal-wg-301";
-    uuid = "d09a27b0-c07c-5bdd-be8f-30a1c8a58fc7";
-    pubKey = "qWBfuOXxbsSk8Pgi9lqAzpebZtCSKHvwL7ifF5iw3lc=";
-    endpoint = "96.44.191.130";
-  }
-  {
-    id = "us-dal-wg-302";
-    uuid = "2d4fb90e-fe19-5b45-9d8a-d4819b92cf1c";
-    pubKey = "8M6a88xIRG1d7pRD1qTJKKJVAYjkX6/ls8D8M1A2Zxo=";
-    endpoint = "96.44.191.146";
-  }
-  {
-    id = "us-dal-wg-303";
-    uuid = "8c97d02a-f52d-5c6c-8645-b7cd2c122dcf";
-    pubKey = "9sg8LrGRk5XzHfMeAhgp9IbbqD1NKepHQ5FpBDZWOn0=";
-    endpoint = "96.44.189.98";
-  }
-  {
-    id = "us-dal-wg-401";
-    uuid = "630504cf-ffb7-579f-a1fe-eada386aebce";
-    pubKey = "xZsnCxFN7pOvx6YlTbi92copdsY5xgekTCp//VUMyhE=";
-    endpoint = "37.19.200.156";
-  }
-  {
-    id = "us-dal-wg-402";
-    uuid = "0abc1113-7a6c-550f-a8f1-bac7270755ca";
-    pubKey = "sPQEji8BhxuM/Za0Q0/9aWYxyACtQF0qRpzaBLumEzo=";
-    endpoint = "37.19.200.143";
-  }
-  {
-    id = "us-dal-wg-403";
-    uuid = "3cce6ec0-2ea9-5554-a7f9-4d2a9652f78c";
-    pubKey = "4s9JIhxC/D02tosXYYcgrD+pHI+C7oTAFsXzVisKjRs=";
-    endpoint = "37.19.200.130";
-  }
-  {
-    id = "us-den-wg-001";
-    uuid = "d7137b86-a481-59f0-b95a-c097f1e7645a";
-    pubKey = "3clcc9092sgEsFGrUfcCBUzT9tN6uy12t77uTmSLqwc=";
-    endpoint = "198.44.128.194";
-  }
-  {
-    id = "us-den-wg-002";
-    uuid = "a01f7633-0e3f-52cf-bfd5-a53b82e947ed";
-    pubKey = "jh3kAesaULbfC0h7VHwNPiTrz04vPC0Aa4kwRjy2+2Q=";
-    endpoint = "198.44.128.162";
-  }
-  {
-    id = "us-den-wg-003";
-    uuid = "f8a50795-9d69-5e78-8455-160cd30a8532";
-    pubKey = "v7CG+wctmTw9LxuWBp3tGARithgbDU7nZZduSefkqzg=";
-    endpoint = "198.44.128.130";
-  }
-  {
-    id = "us-den-wg-101";
-    uuid = "9e14f712-e3de-561d-a83e-5d448509d23d";
-    pubKey = "74U+9EQrMwVOafgXuSp8eaKG0+p4zjSsDe3J7+ojhx0=";
-    endpoint = "37.19.210.1";
-  }
-  {
-    id = "us-den-wg-102";
-    uuid = "9dc7bcb2-24f2-5c37-88d3-b706c06ecc77";
-    pubKey = "T44stCRbQXFCBCcpdDbZPlNHp2eZEi91ooyk0JDC21E=";
-    endpoint = "37.19.210.14";
-  }
-  {
-    id = "us-den-wg-103";
-    uuid = "a618c485-0d65-5954-b46f-349d5abf2759";
-    pubKey = "Az+PGHQ0xFElmRBv+PKZuRnEzKPrPtUpRD3vpxb4si4=";
-    endpoint = "37.19.210.27";
-  }
-  {
-    id = "us-hou-wg-001";
-    uuid = "3fb41b72-02a4-5143-82c9-0410dfa2ad3d";
-    pubKey = "NKscQ4mm24nsYWfpL85Cve+BKIExR0JaysldUtVSlzg=";
-    endpoint = "37.19.221.130";
-  }
-  {
-    id = "us-hou-wg-002";
-    uuid = "d291b4fe-0d53-59d4-858c-6fdc242d68b9";
-    pubKey = "tzSfoiq9ZbCcE5I0Xz9kCrsWksDn0wgvaz9TiHYTmnU=";
-    endpoint = "37.19.221.143";
-  }
-  {
-    id = "us-hou-wg-003";
-    uuid = "426b4862-6b54-5fda-bf4e-87348d717e55";
-    pubKey = "fNSu30TCgbADxNKACx+5qWY6XGJOga4COmTZZE0k0R4=";
-    endpoint = "37.19.221.156";
-  }
-  {
-    id = "us-hou-wg-004";
-    uuid = "c41a6413-3cd9-52a6-944d-644cca2a427a";
-    pubKey = "NkZMYUEcHykPkAFdm3dE8l2U9P2mt58Dw6j6BWhzaCc=";
-    endpoint = "37.19.221.169";
-  }
-  {
-    id = "us-lax-wg-101";
-    uuid = "d201e19d-e4c5-5b32-b029-e6db26d879e3";
-    pubKey = "IDXrg8s0qYFAWcMcXFb6P/EHOESkTyotZCSlerQfyCQ=";
-    endpoint = "198.44.129.98";
-  }
-  {
-    id = "us-lax-wg-102";
-    uuid = "b9309daa-c30b-59c2-98b3-58a6eef4b323";
-    pubKey = "Ldwvbs6mOxEbpXLRA3Z/qmEyJo2wVTdQ94+v3UFsbBw=";
-    endpoint = "198.44.129.66";
-  }
-  {
-    id = "us-lax-wg-103";
-    uuid = "653248d2-1a46-54ea-be0d-37d56f9610f9";
-    pubKey = "gabX4D/Yhut0IMl/9jRK+kMoHbkL38qaUm7r/dH5rWg=";
-    endpoint = "198.44.129.34";
-  }
-  {
-    id = "us-lax-wg-201";
-    uuid = "bf333172-fad9-573b-b1fd-bb2f9aba1c9a";
-    pubKey = "xWobY7DWTL+vL1yD4NWwbQ3V4e8qz10Yz+EFdkIjq0Y=";
-    endpoint = "169.150.203.2";
-  }
-  {
-    id = "us-lax-wg-202";
-    uuid = "fe2d01b3-de0f-5589-8d20-4c850c0dcefa";
-    pubKey = "SDnciTlujuy2APFTkhzfq5X+LDi+lhfU38wI2HBCxxs=";
-    endpoint = "169.150.203.15";
-  }
-  {
-    id = "us-lax-wg-203";
-    uuid = "5cf1df38-f60d-5409-bf5e-fbac1cac5d95";
-    pubKey = "W6/Yamxmfx3geWTwwtBbJe/J8UdEzOfa6M+cEpNPIwg=";
-    endpoint = "169.150.203.28";
-  }
-  {
-    id = "us-lax-wg-301";
-    uuid = "d7f51633-c06f-5ea4-8f23-84d13c211ac0";
-    pubKey = "U4uhpKZm/G1i/qU6s0puSuI+UL4bNCWTuiZBJ8Hdi1Y=";
-    endpoint = "198.96.89.194";
-  }
-  {
-    id = "us-lax-wg-302";
-    uuid = "18ceec3c-9505-5763-9bf9-c09f7a62f9ce";
-    pubKey = "Ey0LihLvJ0YnkMLXK+Kcb4SniJiqoavQuASdRRFASXw=";
-    endpoint = "204.152.216.98";
-  }
-  {
-    id = "us-lax-wg-303";
-    uuid = "8e1e1f92-0fa5-52f4-87cb-68b81e5b0b52";
-    pubKey = "AcExK2CiCHYWU6Sft49uYnLUhIZiId1M+ISzupOJznI=";
-    endpoint = "204.152.216.114";
-  }
-  {
-    id = "us-lax-wg-401";
-    uuid = "316582d0-a87d-5f2a-9a01-2c3c3fcd964a";
-    pubKey = "KX+59wAvZwSKv/MVHsFVQS1j9Loaol0c8oOI/BGf3Bk=";
-    endpoint = "146.70.173.2";
-  }
-  {
-    id = "us-lax-wg-402";
-    uuid = "63093ee5-c6f4-5ee5-a227-d14167409a0b";
-    pubKey = "EKZXvHlSDeqAjfC/m9aQR0oXfQ6Idgffa9L0DH5yaCo=";
-    endpoint = "146.70.173.66";
-  }
-  {
-    id = "us-lax-wg-403";
-    uuid = "d2dae0a6-2c68-5122-9113-ece4aa0ef5e7";
-    pubKey = "mBqaWs6pti93U+1feyj6LRzzveNmeklancn3XuKoPWI=";
-    endpoint = "146.70.173.130";
-  }
-  {
-    id = "us-lax-wg-404";
-    uuid = "1db38cd6-a14a-5979-b2ae-2ba6e675b9c4";
-    pubKey = "YGl+lj1tk08U9x9Z73zowUW3rk8i0nPmYkxGzNdE4VM=";
-    endpoint = "146.70.173.194";
-  }
-  {
-    id = "us-lax-wg-405";
-    uuid = "81c29e16-6ad2-5d65-9dd0-6753d00566f4";
-    pubKey = "Pe86fNGUd+AIeaabsn7Hk4clQf1kJvxOXPykfVGjeho=";
-    endpoint = "146.70.172.2";
-  }
-  {
-    id = "us-mia-wg-001";
-    uuid = "6bee0f42-8934-5d14-9a4f-2d1db47297b1";
-    pubKey = "FVEKAMJqaJU2AwWn5Mg9TK9IAfJc4XDUmSzEeC/VXGs=";
-    endpoint = "45.134.142.219";
-  }
-  {
-    id = "us-mia-wg-002";
-    uuid = "02b919b3-e6dc-5ce5-9e8a-96886de6dd1a";
-    pubKey = "H5t7PsMDnUAHrR8D2Jt3Mh6N6w43WmCzrOHShlEU+zw=";
-    endpoint = "45.134.142.206";
-  }
-  {
-    id = "us-mia-wg-003";
-    uuid = "39eac436-f2be-59d3-a13a-929d2484ff6f";
-    pubKey = "N/3F0QvCuiWWzCwaJmnPZO53LZrKn6sr7rItecrQSQY=";
-    endpoint = "45.134.142.193";
-  }
-  {
-    id = "us-mia-wg-101";
-    uuid = "f0f790eb-a273-5a7a-98fb-1a577dff4d48";
-    pubKey = "50/sEK7t3on/H2sunx+gzIjJI6E9/Y6gHOHQrvzsij4=";
-    endpoint = "146.70.187.2";
-  }
-  {
-    id = "us-mia-wg-102";
-    uuid = "aa755948-04cb-5c16-9ebe-9dcd21cc022f";
-    pubKey = "sJw9LzH2sunqRes2FNi8l6+bd8jqFAiYFfUGTbCXlA4=";
-    endpoint = "146.70.187.66";
-  }
-  {
-    id = "us-mia-wg-103";
-    uuid = "86c85b13-6c85-5836-a984-9dc107ef86cb";
-    pubKey = "TpPDIhObMTeoMVx0MvSstQaIH1EfRYqW2vzGTB+ETVk=";
-    endpoint = "146.70.187.130";
-  }
-  {
-    id = "us-mia-wg-301";
-    uuid = "e425eaaa-bf24-5f43-b44b-33eed804e6e9";
-    pubKey = "nCr87vBNEwrERnkcDhWENNVIMaLF+C0p3h9nqwguO2g=";
-    endpoint = "173.44.63.66";
-  }
-  {
-    id = "us-mia-wg-302";
-    uuid = "7e3fd4ba-6062-5473-9473-323b6cf984eb";
-    pubKey = "voRd3Wi8W4kaEMIJMy7IBkpkAVxQkYF0VubbK1+zgR8=";
-    endpoint = "104.129.41.194";
-  }
-  {
-    id = "us-nyc-wg-301";
-    uuid = "d785a4a6-bc10-58a7-b3a3-c915434ca15d";
-    pubKey = "IzqkjVCdJYC1AShILfzebchTlKCqVCt/SMEXolaS3Uc=";
-    endpoint = "143.244.47.65";
-  }
-  {
-    id = "us-nyc-wg-302";
-    uuid = "9d770d81-ee2f-5051-ac08-942c41e2c4ac";
-    pubKey = "gH/fZJwc9iLv9fazk09J/DUWT2X7/LFXijRS15e2n34=";
-    endpoint = "143.244.47.78";
-  }
-  {
-    id = "us-nyc-wg-303";
-    uuid = "d55656e2-134b-5b72-90a9-87a85f593446";
-    pubKey = "KRO+RzrFV92Ah+qpHgAMKZH2jtjRlmJ4ayl0gletY3c=";
-    endpoint = "143.244.47.91";
-  }
-  {
-    id = "us-nyc-wg-401";
-    uuid = "76e4cb60-993a-5786-a9b1-704edfe274e1";
-    pubKey = "4oR0oc3cyktCoQ1eygZ/EZeCNeI6eQnQJNRuBmRne2Q=";
-    endpoint = "198.44.136.34";
-  }
-  {
-    id = "us-nyc-wg-402";
-    uuid = "459745b1-aa1e-5183-9d4b-3f504bfb780e";
-    pubKey = "/o79urfCcNSCTD4OCPNxn6qoWMchQ5Za6p6hf5cxmwE=";
-    endpoint = "198.44.136.66";
-  }
-  {
-    id = "us-nyc-wg-403";
-    uuid = "715ff89d-8750-5116-91eb-0d4a4ae618d7";
-    pubKey = "pFM95uwAFj62uYDkJXcAPYaPmy+nl+dd92ZLV9bWbHQ=";
-    endpoint = "198.44.136.98";
-  }
-  {
-    id = "us-nyc-wg-501";
-    uuid = "dc3824f0-3b11-5d13-9235-63b510882cc9";
-    pubKey = "FMNXnFgDHNTrT9o49U8bb3Z8J90LZzVJPpRzKtJM9W8=";
-    endpoint = "146.70.165.2";
-  }
-  {
-    id = "us-nyc-wg-502";
-    uuid = "c64912ab-d102-5df1-9016-2697ca783c1d";
-    pubKey = "cmUR4g9aIFDa5Xnp4B6Zjyp20jwgTTMgBdhcdvDV0FM=";
-    endpoint = "146.70.165.130";
-  }
-  {
-    id = "us-nyc-wg-503";
-    uuid = "97e59666-89c6-5181-99bd-dff741d333f0";
-    pubKey = "czE6NJ8CccA5jnJkKoZGDpMXFqSudeVTzxU5scLP/H8=";
-    endpoint = "146.70.165.194";
-  }
-  {
-    id = "us-nyc-wg-504";
-    uuid = "1243ca38-7a4f-58c2-beab-454237acde38";
-    pubKey = "MVa5yuoYnjXJtSCeBsyvaemuaK4KFN1p78+37Nvm2m0=";
-    endpoint = "146.70.166.130";
-  }
-  {
-    id = "us-nyc-wg-505";
-    uuid = "f75d69a2-2f64-58bc-96ac-620ac32a13a3";
-    pubKey = "jrjogHbVDuPxyloBldvtB51TmebNJo+4rW2JFrN33iM=";
-    endpoint = "146.70.166.194";
-  }
-  {
-    id = "us-nyc-wg-601";
-    uuid = "906900b9-4014-59c5-9d6f-6c0f3afcc79c";
-    pubKey = "OKyEPafS1lnUTWqtVeWElkTzcmkvLi9dncBHbSyFrH8=";
-    endpoint = "146.70.185.2";
-  }
-  {
-    id = "us-nyc-wg-602";
-    uuid = "eabdb54e-9146-5b20-b6db-af32ac9b7be9";
-    pubKey = "4Lg7yQlukAMp6EX+2Ap+q4O+QIV/OEZyybtFJmN9umw=";
-    endpoint = "146.70.168.130";
-  }
-  {
-    id = "us-nyc-wg-603";
-    uuid = "ee72a1b3-564b-5070-8654-e4317bc3e2b3";
-    pubKey = "s3N8Xeh6khECbgRYPk9pp5slw2uE0deOxa9rSJ6bzwE=";
-    endpoint = "146.70.168.66";
-  }
-  {
-    id = "us-nyc-wg-604";
-    uuid = "484416cb-bbf6-50ae-8225-aca73fa1d9c7";
-    pubKey = "FIcFPDjxfF24xBrv+W7Bcqb2wADSWd+HAWPKYo6xZEk=";
-    endpoint = "146.70.171.66";
-  }
-  {
-    id = "us-nyc-wg-605";
-    uuid = "31a81483-b659-5103-b7ec-dc1afccbefd5";
-    pubKey = "78nFhfPEjrfOxBkUf2ylM7w6upYBEcHXm93sr8CMTE4=";
-    endpoint = "146.70.171.130";
-  }
-  {
-    id = "us-phx-wg-101";
-    uuid = "6c4e1452-e364-532a-a668-16ef4a9663b5";
-    pubKey = "Tg5LXnudnxEjf6pp7+T0QKCU9K3jzwdA1/l0negOHBk=";
-    endpoint = "198.54.133.98";
-  }
-  {
-    id = "us-phx-wg-102";
-    uuid = "8de198a5-981c-5fec-9541-af7171dfe0f7";
-    pubKey = "1BbuYcr+WcmgcUhZTJ48GxOjQW0k4iEYBnn1Axhm1yA=";
-    endpoint = "198.54.133.130";
-  }
-  {
-    id = "us-phx-wg-103";
-    uuid = "2a6f538d-e503-5553-a305-c4fb1524fc87";
-    pubKey = "aEJhNzQJYMH9VzB7bxhimyUFz3uo4mp1RD9VY3KAEWs=";
-    endpoint = "198.54.133.162";
-  }
-  {
-    id = "us-qas-wg-001";
-    uuid = "93ee9215-4f73-519e-9348-aa4cf39371bd";
-    pubKey = "UKNLCimke54RqRdj6UFyIuBO6nv2VVpDT3vM9N25VyI=";
-    endpoint = "198.54.135.34";
-  }
-  {
-    id = "us-qas-wg-002";
-    uuid = "ea31bd15-0f26-5b9f-aa0f-647cbe99c668";
-    pubKey = "UUCBSYnGq+zEDqA6Wyse3JXv8fZuqKEgavRZTnCXlBg=";
-    endpoint = "198.54.135.66";
-  }
-  {
-    id = "us-qas-wg-003";
-    uuid = "bf1a9f47-33db-55a7-b761-c54889a874c0";
-    pubKey = "0s0NdIzo+pq0OiHstZHqapYsdevGQGopQ5NM54g/9jo=";
-    endpoint = "198.54.135.98";
-  }
-  {
-    id = "us-qas-wg-004";
-    uuid = "1c08aeee-1406-5700-ac1a-7c4b94c2c3dd";
-    pubKey = "TvqnL6VkJbz0KrjtHnUYWvA7zRt9ysI64LjTOx2vmm4=";
-    endpoint = "198.54.135.130";
-  }
-  {
-    id = "us-qas-wg-102";
-    uuid = "4b3e8d73-5b68-5afe-ac9e-d3097ceb8edf";
-    pubKey = "5hlEb3AjTzVIJyYWCYvJvbgA4p25Ltfp2cYnys90LQ0=";
-    endpoint = "185.156.46.143";
-  }
-  {
-    id = "us-qas-wg-103";
-    uuid = "2610c2c6-e8c9-5c8a-af67-0c47f58e42c5";
-    pubKey = "oD9IFZsA5sync37K/sekVXaww76MwA3IvDRpR/irZWQ=";
-    endpoint = "185.156.46.156";
-  }
-  {
-    id = "us-rag-wg-101";
-    uuid = "9c261dd4-b7f2-56c8-9bba-be52d9f5b705";
-    pubKey = "tKUaUnY6dJhRx3zCMAFMa1I7baVt5QrpnmdRsW99MWk=";
-    endpoint = "198.54.130.82";
-  }
-  {
-    id = "us-rag-wg-102";
-    uuid = "b0f476cc-bde1-584b-82a9-ab2a80fe260c";
-    pubKey = "XT06PnP77El1DOWfg5Kq6GiPzzfvQbTFfWlHPws/TQ0=";
-    endpoint = "198.54.130.98";
-  }
-  {
-    id = "us-rag-wg-103";
-    uuid = "07d35c66-9c50-5322-b1d2-fdfe8b210319";
-    pubKey = "4xCeK68I0TXZoy1e8VeQDCea/6Qeu57IAtCi8Lnllik=";
-    endpoint = "198.54.130.114";
-  }
-  {
-    id = "us-rag-wg-104";
-    uuid = "effe5a95-f4f4-545b-88b9-9f373ca3a6ca";
-    pubKey = "zSuNvGa8Zk+jc2niP1s75CLTFD/1U1Fqc6ypfzO9mB0=";
-    endpoint = "198.54.130.130";
-  }
-  {
-    id = "us-rag-wg-105";
-    uuid = "b612aa89-38e3-5b35-b30f-734fc0d3b0f3";
-    pubKey = "XJDcYZ6peY1cfErhLQ0AqzGTxKuKXz5M//sFvEX8dAI=";
-    endpoint = "198.54.130.146";
-  }
-  {
-    id = "us-sea-wg-001";
-    uuid = "dbcc9a19-1c32-5dee-9d32-5e49b69ac83f";
-    pubKey = "bZQF7VRDRK/JUJ8L6EFzF/zRw2tsqMRk6FesGtTgsC0=";
-    endpoint = "138.199.43.91";
-  }
-  {
-    id = "us-sea-wg-002";
-    uuid = "968a54cd-fd2c-5489-a0bc-da1dab3cb636";
-    pubKey = "Xt80FGN9eLy1vX3F29huj6oW2MnQt7ne3DMBpo525Qw=";
-    endpoint = "138.199.43.78";
-  }
-  {
-    id = "us-sea-wg-003";
-    uuid = "9332317b-64a4-5bc1-9365-f3499db4bb5a";
-    pubKey = "4ke8ZSsroiI6Sp23OBbMAU6yQmdF3xU2N8CyzQXE/Qw=";
-    endpoint = "138.199.43.65";
-  }
-  {
-    id = "us-sea-wg-101";
-    uuid = "8785ab8d-e338-5790-8e0e-b0436017db2b";
-    pubKey = "200em73iD9942d9hlHonAfNXGWwFQcicBVGHeHbdxVM=";
-    endpoint = "198.54.131.130";
-  }
-  {
-    id = "us-sea-wg-103";
-    uuid = "af35c8dd-096c-5693-b644-c73b6e49df05";
-    pubKey = "fU4oTJhFtwvmk0odRe9Jatc+DMh9gKz49WSzO0psCmU=";
-    endpoint = "198.54.131.98";
-  }
-  {
-    id = "us-sea-wg-201";
-    uuid = "17f22834-062e-5463-85bd-8c2036f515fc";
-    pubKey = "K+Xt/lYTSTavIW8RoQjzWI7tExy6sp1FqBi3n5pH5SI=";
-    endpoint = "199.229.250.52";
-  }
-  {
-    id = "us-sea-wg-202";
-    uuid = "ecd61c1d-8153-5989-9713-f82c62b698fa";
-    pubKey = "t2x4A+F04hKfxIHMcY2RswaVyj3XHelTT8Q1FAwBIj4=";
-    endpoint = "199.229.250.53";
-  }
-  {
-    id = "us-sea-wg-203";
-    uuid = "e96d62c4-1b3e-5daa-8f25-1c98b42a99a4";
-    pubKey = "eS44Rs1j3BotLKH8AV78KGZQtsMQKpjdYS9chXdxPnw=";
-    endpoint = "199.229.250.54";
-  }
-  {
-    id = "us-sea-wg-204";
-    uuid = "8ef7516a-25c3-5e90-a0da-68e3aec513ff";
-    pubKey = "WyzaVvsFivIx7iC+bYbEV5OhtjSw3aqjU5sB3DltQxI=";
-    endpoint = "199.229.250.55";
-  }
-  {
-    id = "us-sea-wg-205";
-    uuid = "2f519da6-0b33-5ce6-be82-4e58d62bf2df";
-    pubKey = "vnD/2bCGqH4b6zZSRuLGSw9oN4NhQdTW9jlMaa2N1AU=";
-    endpoint = "199.229.250.56";
-  }
-  {
-    id = "us-sea-wg-206";
-    uuid = "874cb764-714a-5b67-807f-d6b6aa2c7d68";
-    pubKey = "1TYUyuvJi+RQETmW3aKJDS5p9K7kutK+Qp4ooy92CBQ=";
-    endpoint = "199.229.250.57";
-  }
-  {
-    id = "us-sea-wg-207";
-    uuid = "1d5eedb9-31ef-56c4-9d13-8d4f0c993116";
-    pubKey = "mdYjW/giLeamWPUuHxLAIcornNrH/2HQrixhBpQZmHA=";
-    endpoint = "199.229.250.58";
-  }
-  {
-    id = "us-sea-wg-208";
-    uuid = "3cd83617-acb4-55e3-99d7-e19361665fcb";
-    pubKey = "k4ah0qvHgn5IsalvehE7GPiDC4BOE9botvd+KITdtyg=";
-    endpoint = "199.229.250.59";
-  }
-  {
-    id = "us-sea-wg-301";
-    uuid = "95a50e87-c66d-520c-9ecb-3c92c467d3be";
-    pubKey = "ekaodfDtCmMmHBPWT04FObtHi9uxCn9mI2NB6WAsS0U=";
-    endpoint = "104.129.57.66";
-  }
-  {
-    id = "us-sea-wg-302";
-    uuid = "b9e0af37-d08a-5c19-9fa8-08c0ad245e60";
-    pubKey = "Plbre6XhYWgXzdAUD94/gqSy6C9z/nD40U2gIt+MAGQ=";
-    endpoint = "173.205.93.2";
-  }
-  {
-    id = "us-sjc-wg-001";
-    uuid = "da0d661e-d8f0-5e46-9652-f038c280d0b9";
-    pubKey = "Ow25Pdtyqbv/Y0I0myNixjJ2iljsKcH04PWvtJqbmCk=";
-    endpoint = "198.54.134.98";
-  }
-  {
-    id = "us-sjc-wg-002";
-    uuid = "3b6db49f-5206-5080-9da3-c11e3af17c81";
-    pubKey = "aOt3gFGc0a0UMAdcxhBWX9TCnEabe2s66MHzjXU50Tc=";
-    endpoint = "198.54.134.130";
-  }
-  {
-    id = "us-sjc-wg-003";
-    uuid = "6600b57a-61d0-5c1c-9428-5e14a04feccc";
-    pubKey = "Vim/OUBT3Bogv+FF623pAHXc/vmRwur2JKcNsLHQH1o=";
-    endpoint = "198.54.134.162";
-  }
-  {
-    id = "us-sjc-wg-101";
-    uuid = "6ccfc3ff-8582-5f31-824c-3a024708de58";
-    pubKey = "yohC6MIq62U+BmTdBjTFBQbj5jTaxRHtVdCp5AdDgAs=";
-    endpoint = "66.115.165.211";
-  }
-  {
-    id = "us-sjc-wg-102";
-    uuid = "ef1d52e6-9609-53f9-937f-e229f2987a96";
-    pubKey = "wfFi5sBBThR9EK1US0dbwaOiuNMIBpBBhEif9EnUeCM=";
-    endpoint = "66.115.165.212";
-  }
-  {
-    id = "us-sjc-wg-103";
-    uuid = "218871e3-7ac8-5e47-ae68-86f4c6fa4ded";
-    pubKey = "5AsmDtBqLureV4JcG+dwFq35hUaAff4NzLCkJDkoWQQ=";
-    endpoint = "66.115.165.213";
-  }
-  {
-    id = "us-sjc-wg-104";
-    uuid = "1af6de93-fe82-5c1d-8b18-d3f753edb8f1";
-    pubKey = "fUjjvrtnbokobdzudzXPzCM6Fli28Tsg5kArztU0YnU=";
-    endpoint = "66.115.165.214";
-  }
-  {
-    id = "us-sjc-wg-105";
-    uuid = "d26710d9-379e-5407-886e-8e50e3aacaa6";
-    pubKey = "m0PSpvahFXuYOtGZ9hFAMErzKW7vhwqyd82rw+yBHz0=";
-    endpoint = "66.115.165.215";
-  }
-  {
-    id = "us-sjc-wg-106";
-    uuid = "7d8de2a7-a835-5ceb-a593-4d19c70bb056";
-    pubKey = "9xV2ZXE1dVChbxu/ca4jfXoCnYFv8fbP/OCFySD6RjA=";
-    endpoint = "66.115.165.216";
-  }
-  {
-    id = "us-sjc-wg-107";
-    uuid = "5e5db238-b3ae-54db-b32a-0b46c5cc984c";
-    pubKey = "2p37fAPhw+2uPJ5pP5Iy8hgs7506k+8ITqPIzbaa4zQ=";
-    endpoint = "66.115.165.217";
-  }
-  {
-    id = "us-sjc-wg-108";
-    uuid = "9dec5e45-f97c-5381-bbe9-d3edc16dddc4";
-    pubKey = "x9/CJ28JOHah+HPRKQpVuCLL3v3eMWj7Xa7dotpPX2c=";
-    endpoint = "66.115.165.218";
-  }
-  {
-    id = "us-sjc-wg-301";
-    uuid = "93fc4793-69c3-5ac5-a308-5c182e6fd9e3";
-    pubKey = "f3bMFNG3xcXRN/i0jHxo68CXFcNNlennuf1jdkPMEVM=";
-    endpoint = "142.147.89.195";
-  }
-  {
-    id = "us-sjc-wg-302";
-    uuid = "d8440d55-ce09-5420-b73f-e0590a3b89b2";
-    pubKey = "8wVb4HUgmpQEa5a1Q8Ff1hTDTJVaHts487bksJVugEo=";
-    endpoint = "142.147.89.210";
-  }
-  {
-    id = "us-sjc-wg-303";
-    uuid = "241577ce-fbe2-5ebd-a377-3c06b888484e";
-    pubKey = "2ZQTRk/3jT+ccfG3G/QoJV3NFC4CFHQwGBCSokOvBnA=";
-    endpoint = "142.147.89.225";
-  }
-  {
-    id = "us-slc-wg-101";
-    uuid = "0dde6505-be59-5b28-8e41-fb857e77827a";
-    pubKey = "dbsApGxL4oNd6CyjPrtiV6ep+C1HaFuYGd0DPCHMF2o=";
-    endpoint = "69.4.234.147";
-  }
-  {
-    id = "us-slc-wg-102";
-    uuid = "beaee097-0881-5d67-93de-61c1897242d1";
-    pubKey = "g6yfZKBIS6BtXdTb5yXXVmOkkQ1OBxxJS3H67mebclw=";
-    endpoint = "69.4.234.138";
-  }
-  {
-    id = "us-slc-wg-103";
-    uuid = "9dd4fe1d-2391-575a-b5ff-24d976a957ae";
-    pubKey = "ioipHdOYhc4nVsQKghmJy/vvnMI38VLLFNZXWgxxOx8=";
-    endpoint = "69.4.234.139";
-  }
-  {
-    id = "us-slc-wg-104";
-    uuid = "e3e6f2ac-0b40-5b8e-b41d-f48e5c2633f3";
-    pubKey = "8gcGDG4XVifgKgjpkiRSxI4QA0lhU1LGX7v7ZL4AXxE=";
-    endpoint = "69.4.234.140";
-  }
-  {
-    id = "us-slc-wg-105";
-    uuid = "6e787fbe-8b7a-5d1c-a7f1-6075bd46768c";
-    pubKey = "vkbSMnaddVm4YWkuuf8rOSc45XTfpVLJEom0FaJWq2g=";
-    endpoint = "69.4.234.141";
-  }
-  {
-    id = "us-slc-wg-106";
-    uuid = "e78fbe74-ed56-57d1-8d59-4a9c16d9b7c8";
-    pubKey = "abx3jjkKD+7abroGzeELm4Esa4bESJV72Fm9Tp+YqAE=";
-    endpoint = "69.4.234.142";
-  }
-  {
-    id = "us-slc-wg-107";
-    uuid = "9d0626d8-66b7-5803-a263-fee59e71163d";
-    pubKey = "dJX3V47dAZWGc7BeJCvDfwSqdKRsfPUT9Lm7LzPs2CU=";
-    endpoint = "69.4.234.143";
-  }
-  {
-    id = "us-slc-wg-108";
-    uuid = "fdc85ff9-a6ef-5dad-8459-4dbfb97c71a7";
-    pubKey = "/fbfBjrhWKRTgOPy+esHuoeFCJWGX+nCYgTo8uKTMCE=";
-    endpoint = "69.4.234.144";
-  }
-  {
-    id = "us-slc-wg-109";
-    uuid = "6068d0e8-c4af-56d7-acdd-548f116a57fa";
-    pubKey = "dClWdBHZT7dwqXzIRzit6CIaJYAFtTL/yYZ8Knj8Cjk=";
-    endpoint = "69.4.234.145";
-  }
-  {
-    id = "us-uyk-wg-101";
-    uuid = "825e5fe3-25f2-5d3f-a075-309cd0b678fd";
-    pubKey = "25c8tyAhFiHXwp71beltk/KmAn0fsXGEl6nnNQQjmHI=";
-    endpoint = "209.54.101.130";
-  }
-  {
-    id = "us-uyk-wg-102";
-    uuid = "93916985-e198-55a5-8a20-7cc9e0bfa280";
-    pubKey = "fD/JDsMLFxEZ7awcJJB9h0mjfRlcEvwF8e7arB2fHhU=";
-    endpoint = "104.223.118.34";
-  }
-  {
-    id = "us-uyk-wg-103";
-    uuid = "c117eb09-2a42-5ce6-baa2-453dd5e9bc00";
-    pubKey = "Tysz0Ii2m+DsyhcWoQWxsXUdJxu1lKln4F7ML+nWPXA=";
-    endpoint = "173.205.85.34";
-  }
-  {
-    id = "za-jnb-wg-001";
-    uuid = "2dfe3645-9eab-54f5-b831-858fc8fa8492";
-    pubKey = "5dOGXJ9JK/Bul0q57jsuvjNnc15gRpSO1rMbxkf4J2M=";
-    endpoint = "154.47.30.130";
-  }
-  {
-    id = "za-jnb-wg-002";
-    uuid = "7de0ea15-658f-5f76-b012-6094440ad92c";
-    pubKey = "lTq6+yUYfYsXwBpj/u3LnYqpLhW8ZJXQQ19N/ybP2B8=";
-    endpoint = "154.47.30.143";
-  }
-]